package gnomic_airdrop // GENERATED by scripts/render.sh from config.env. Do not edit by hand. const ( defaultTokenKey = "gno.land/r/nym-thegnomic001/gnomic.GNOMIC" campaignName = "Gnomic Airdrop" // immediateBps is the share paid out at once on claim, in hundredths of a // percent: 1000 = 10%. immediateBps = 1000 // instantBps: share paid at once by ClaimInstant, the rest is burned. instantBps = 3000 // vestingSeconds is how long the remaining 90% takes to // vest linearly: 365 days. vestingSeconds = int64(31536000) // claimWindowSeconds: claims close this long after opening; the unclaimed // residue is then settled, half burned and half to the team fund. defaultClaimWindowSeconds = int64(31536000) // withdrawCooldownSeconds: minimum interval between two payouts of the // same grant, the claim counting as the first. defaultWithdrawCooldownSeconds = int64(86400) // ecosystemFundAddress receives the non-burned half of every forfeit, // voluntary or automatic. ecosystemFundAddress = "g14slrjauvzpx578ker2wtt2jzs0c4mzslcpjcqf" ) const adminAddress = "g1z0c0wrmwpzpd0gq4q67hl9508dtgv4epr0z5ml"