Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions protocols/gunz.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ const gunzFoundation = totalSupply * 0.09;

const gunz: Protocol = {
"Community Incentives": manualCliff(start, communityIncentives),

"NFT Validator Staking":
manualCliff(start, nftValidatorStaking), // Not circulating
"Liquidity Pool":
manualCliff(start, liquidityPool),

Expand All @@ -39,7 +40,6 @@ const gunz: Protocol = {
privateB
),


"Strategic Round":
manualLinear(
start + periodToSeconds.months(12),
Expand Down Expand Up @@ -97,7 +97,7 @@ const gunz: Protocol = {
sources: ["https://storage.gunbygunz.com/GUNZ__Whitepaper.pdf"],
protocolIds: ["6030"],
notes: [
"NFT Validator Staking allocation is not circulating and excluded from vesting schedules",
"NFT Validator Staking allocation is not circulating, but it is included in the total supply.",
"Liquidity Pool allocation is supposed to be 66% at TGE and 33% unlocked after 1 day of listing but for simplicity, it is set to 100% at TGE",
]
},
Expand All @@ -114,6 +114,7 @@ const gunz: Protocol = {
noncirculating: [
"Treasury",
"GUNZ Foundation",
"NFT Validator Staking",
],
liquidity: [
"Liquidity Pool",
Expand Down
Loading