revert Обновить contract.go
This commit is contained in:
yaaarslv 2024-01-15 22:05:54 +00:00
parent ef8a947a04
commit 3aa80361bd

View file

@ -24,21 +24,20 @@ func (w Wallet) getTokenBalance(token string) int {
var prices map[string]int
// Prices are multiplied by 1e14 and rounded to be represented as fixed point int
// All prices are multiplied by 1e10 and rounded to be represented as fixed point int
func init() {
  prices = map[string]int{
    "XMR":  152100000,
    "XRP":  603500,
    "ADA":  579300,
    "AVAX": 39690000,
    "BNB":  308300000,
    "BTC":  46648920000,
    "ETH":  2623000000,
    "SOL":  101180000,
  }
prices = map[string]int{
"XMR": 1521000000000,
"XRP": 6035000000,
"ADA": 5793000000,
"AVAX": 396900000000,
"BNB": 3083000000000,
"BTC": 466489200000000,
"ETH": 26230000000000,
"SOL": 1011800000000,
}
}
func TopUp(address interop.Hash160, token string, amount int) bool {
if !isKnownToken(token) {
runtime.Log("Token " + token + " is unkown")