micw/common/burning.go

10 lines
149 B
Go
Raw Normal View History

2024-11-17 21:24:19 +00:00
package common
import "math"
const BurningRate = 0.001
func CalcBurning(trxAmount float64) float64 {
return BurningRate * math.Sqrt(trxAmount)
}