Skip to content

Commit

Permalink
Add USDT and USDC to block-limit per currency defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
ezdac committed May 16, 2024
1 parent 1f2b47f commit c47a7b8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions miner/celo_defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ var (
cUSD_TOKEN = common.HexToAddress("0x765DE816845861e75A25fCA122bb6898B8B1282a")
cEUR_TOKEN = common.HexToAddress("0xD8763CBa276a3738E6DE85b4b3bF5FDed6D6cA73")
cREAL_TOKEN = common.HexToAddress("0xe8537a3d056DA446677B9E9d6c5dB704EaAb4787")
USDC_TOKEN = common.HexToAddress("0xcebA9300f2b948710d2653dD7B07f33A8B32118C")
USDT_TOKEN = common.HexToAddress("0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e")
)

// default limits default fraction
Expand All @@ -19,6 +21,8 @@ const DefaultFeeCurrencyLimit = 0.5
var DefaultFeeCurrencyLimits = map[uint64]map[common.Address]float64{
params.CeloMainnetChainID: {
cUSD_TOKEN: 0.9,
USDT_TOKEN: 0.9,
USDC_TOKEN: 0.9,
cEUR_TOKEN: 0.5,
cREAL_TOKEN: 0.5,
},
Expand Down

0 comments on commit c47a7b8

Please sign in to comment.