Skip to content

Commit cdecaf3

Browse files
Merge pull request #106 from ReynardoEW/gunznft
add nft validator staking to gunz
2 parents 11d5b07 + 42bdfc4 commit cdecaf3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

protocols/gunz.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ const gunzFoundation = totalSupply * 0.09;
2121

2222
const gunz: Protocol = {
2323
"Community Incentives": manualCliff(start, communityIncentives),
24-
24+
"NFT Validator Staking":
25+
manualCliff(start, nftValidatorStaking), // Not circulating
2526
"Liquidity Pool":
2627
manualCliff(start, liquidityPool),
2728

@@ -39,7 +40,6 @@ const gunz: Protocol = {
3940
privateB
4041
),
4142

42-
4343
"Strategic Round":
4444
manualLinear(
4545
start + periodToSeconds.months(12),
@@ -97,7 +97,7 @@ const gunz: Protocol = {
9797
sources: ["https://storage.gunbygunz.com/GUNZ__Whitepaper.pdf"],
9898
protocolIds: ["6030"],
9999
notes: [
100-
"NFT Validator Staking allocation is not circulating and excluded from vesting schedules",
100+
"NFT Validator Staking allocation is not circulating, but it is included in the total supply.",
101101
"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",
102102
]
103103
},
@@ -114,6 +114,7 @@ const gunz: Protocol = {
114114
noncirculating: [
115115
"Treasury",
116116
"GUNZ Foundation",
117+
"NFT Validator Staking",
117118
],
118119
liquidity: [
119120
"Liquidity Pool",

0 commit comments

Comments
 (0)