Обновить contract.go
This commit is contained in:
parent
89fb93fb89
commit
ef8a947a04
1 changed files with 12 additions and 11 deletions
23
contract.go
23
contract.go
|
@ -24,20 +24,21 @@ func (w Wallet) getTokenBalance(token string) int {
|
|||
|
||||
var prices map[string]int
|
||||
|
||||
// All prices are multiplied by 1e10 and rounded to be represented as fixed point int
|
||||
// Prices are multiplied by 1e14 and rounded to be represented as fixed point int
|
||||
func init() {
|
||||
prices = map[string]int{
|
||||
"XMR": 1521000000000,
|
||||
"XRP": 6035000000,
|
||||
"ADA": 5793000000,
|
||||
"AVAX": 396900000000,
|
||||
"BNB": 3083000000000,
|
||||
"BTC": 466489200000000,
|
||||
"ETH": 26230000000000,
|
||||
"SOL": 1011800000000,
|
||||
}
|
||||
prices = map[string]int{
|
||||
"XMR": 152100000,
|
||||
"XRP": 603500,
|
||||
"ADA": 579300,
|
||||
"AVAX": 39690000,
|
||||
"BNB": 308300000,
|
||||
"BTC": 46648920000,
|
||||
"ETH": 2623000000,
|
||||
"SOL": 101180000,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
func TopUp(address interop.Hash160, token string, amount int) bool {
|
||||
if !isKnownToken(token) {
|
||||
runtime.Log("Token " + token + " is unkown")
|
||||
|
|
Loading…
Reference in a new issue