const PointsReferrerBonus, PointsRefereeBonus, PointsCheckIn, CheckInIntervalH, PointsCreateBonus, PointsBuyBase, PointsSellBase, PointsPerGnotBuy, PointsPerGnotSell, MaxTradePtsPerHeight, UgnotPerGnot, LeaderboardMax, MaxLeaderboardReturn, MaxPadPathLen
1const (
2 PointsReferrerBonus int64 = 50
3 PointsRefereeBonus int64 = 25
4 PointsCheckIn int64 = 5
5 CheckInIntervalH int64 = 100
6 // Trade / create (v2)
7 PointsCreateBonus int64 = 30 // creator on successful Create
8 PointsBuyBase int64 = 2 // base points per buy
9 PointsSellBase int64 = 1 // base points per sell
10 PointsPerGnotBuy int64 = 10 // extra pts per full GNOT bought (volume)
11 PointsPerGnotSell int64 = 3 // extra pts per full GNOT sold
12 MaxTradePtsPerHeight int64 = 200 // per-user per-height cap (anti-spam)
13 UgnotPerGnot int64 = 1_000_000
14 LeaderboardMax int = 50
15 MaxLeaderboardReturn int = 20
16 MaxPadPathLen int = 200
17)