package common import "math" const BurningRate = 0.001 func CalcBurning(trxAmount float64) float64 { return BurningRate * math.Sqrt(trxAmount) }