-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Valentin Rodygin
committed
Nov 2, 2023
1 parent
287af1c
commit b2430f7
Showing
2 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package miner | ||
|
||
import ( | ||
"github.com/celo-org/celo-blockchain/common" | ||
"github.com/celo-org/celo-blockchain/params" | ||
) | ||
|
||
// cStables addresses on mainnet | ||
var cUSD_TOKEN = common.HexToAddress("0x765DE816845861e75A25fCA122bb6898B8B1282a") | ||
var cEUR_TOKEN = common.HexToAddress("0xD8763CBa276a3738E6DE85b4b3bF5FDed6D6cA73") | ||
var cREAL_TOKEN = common.HexToAddress("0xe8537a3d056DA446677B9E9d6c5dB704EaAb4787") | ||
|
||
// default limits configuration | ||
var DefaultFeeCurrencyLimits = map[uint64]map[common.Address]float64{ | ||
params.MainnetNetworkId: { | ||
cUSD_TOKEN: 0.9, | ||
cEUR_TOKEN: 0.5, | ||
cREAL_TOKEN: 0.1, | ||
}, | ||
} |