const TotalSupply, CurveSupply, PoolSeed, VirtualUgnot0, VirtualToken0, GraduationThreshold, FeeBPS, CreatorFeeShareBPS, ProtocolFeeShareBPS, CreateBondUgnot, BondRefundBuyers, BondRefundMaxHeights, AntiSnipeHeights, AntiSnipeMaxBuyBPS, StatusCurve, StatusGraduated, MaxTradeHistory, TradeSideBuy, TradeSideSell, TradeSideOpen, DenomUgnot
1const (
2 // Token economics
3 TotalSupply int64 = 1_000_000_000
4 CurveSupply int64 = 800_000_000 // sold on bonding curve
5 PoolSeed int64 = 200_000_000 // locked into CPMM at graduation
6
7 // Virtual constant-product seed (Pump-style)
8 VirtualUgnot0 int64 = 30_000_000 // 30 GNOT virtual
9 VirtualToken0 int64 = 1_073_000_191 // virtual token side
10
11 // Graduation when net ugnot raised into the curve reaches this.
12 // 50 GNOT — testnet-friendly; raise for production.
13 // Keep below the ugnot needed to exhaust CurveSupply on the virtual CPMM.
14 GraduationThreshold int64 = 50_000_000
15
16 // Fees: 1.20% total. Of the fee: 40% creator, 40% protocol, 20% LP/k remainder.
17 FeeBPS int64 = 120
18 CreatorFeeShareBPS int64 = 4000
19 ProtocolFeeShareBPS int64 = 4000
20
21 // Anti-spam create bond (1 GNOT). Refunded if min unique buyers hit before expire.
22 CreateBondUgnot int64 = 1_000_000
23 BondRefundBuyers int = 5
24 BondRefundMaxHeights int64 = 100_000 // ~ loosely long window; chain-dependent
25
26 // Anti-snipe: first N heights after create, max buy as % of total supply (BPS of TotalSupply).
27 AntiSnipeHeights int64 = 20
28 AntiSnipeMaxBuyBPS int64 = 500 // 5% of total supply per tx in first windows
29
30 // Status
31 StatusCurve = 0
32 StatusGraduated = 1
33
34 // Trade history cap for per-token price charts (ring buffer).
35 MaxTradeHistory = 128
36 // Trade sides stored in history
37 TradeSideBuy = 0
38 TradeSideSell = 1
39 TradeSideOpen = 2 // initial listing mark
40
41 DenomUgnot = "ugnot"
42)