Search Apps Documentation Source Content File Folder Download Copy Actions Download State String Boolean Number Struct Map Slice Pointer Function Closure Reference Nil Package Type Interface Unknown

config.gno

1.11 Kb · 33 lines
 1package gnomic_airdrop
 2
 3// GENERATED by scripts/render.sh from config.env. Do not edit by hand.
 4
 5const (
 6	defaultTokenKey = "gno.land/r/nym-thegnomic001/gnomic.GNOMIC"
 7	campaignName    = "Gnomic Airdrop"
 8
 9	// immediateBps is the share paid out at once on claim, in hundredths of a
10	// percent: 1000 = 10%.
11	immediateBps = 1000
12
13	// instantBps: share paid at once by ClaimInstant, the rest is burned.
14	instantBps = 3000
15
16	// vestingSeconds is how long the remaining 90% takes to
17	// vest linearly: 365 days.
18	vestingSeconds = int64(31536000)
19
20	// claimWindowSeconds: claims close this long after opening; the unclaimed
21	// residue is then settled, half burned and half to the team fund.
22	defaultClaimWindowSeconds = int64(31536000)
23
24	// withdrawCooldownSeconds: minimum interval between two payouts of the
25	// same grant, the claim counting as the first.
26	defaultWithdrawCooldownSeconds = int64(86400)
27
28	// ecosystemFundAddress receives the non-burned half of every forfeit,
29	// voluntary or automatic.
30	ecosystemFundAddress = "g14slrjauvzpx578ker2wtt2jzs0c4mzslcpjcqf"
31)
32
33const adminAddress = "g1z0c0wrmwpzpd0gq4q67hl9508dtgv4epr0z5ml"