Skip to content

Commit

Permalink
Merge pull request #356 from tranchess/dev-terry-schedule
Browse files Browse the repository at this point in the history
Extend Chess schedule to 207 weeks
  • Loading branch information
bill-clippy authored Nov 7, 2024
2 parents 64ed861 + 366a5e8 commit a5ea53f
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 1 deletion.
32 changes: 31 additions & 1 deletion contracts/governance/ChessSchedule.sol
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ contract ChessSchedule is IChessSchedule, OwnableUpgradeable, ChessRoles, CoreUt
/// 95456519 95805537 96154556 96503575 96852593 97201612 97550631 97899649 98248668 98597687
/// 98946705 99295724 99644743 99993761 100342780 100691799 101040817 101389836 101738854 102087873
/// 102436892 102785910 103134929 103483948 103832966 104181985 104531004 104880022 105229041 105578060
/// 105927078 106276097 106625116 106974134 107323153 107672172 108021190 108370209 108719228 109068246
/// 109417265 109766284 110115302 110464321 110813340 111162358 111511377 111860395 112209414 112558433
/// 112907451 113256470 113605489 113954507 114303526 114652545 114973035
/// ```
bytes private constant CUMULATIVE_SUPPLY_SCHEDULE =
hex"000000000000000000000000000000000000000000003f870857a3e0e3800000"
Expand Down Expand Up @@ -223,7 +226,34 @@ contract ChessSchedule is IChessSchedule, OwnableUpgradeable, ChessRoles, CoreUt
hex"00000000000000000000000000000000000000000056774d14d98cc4cb700000"
hex"00000000000000000000000000000000000000000056c13562984c2710980000"
hex"000000000000000000000000000000000000000000570b1dbe37c23cfd240000"
hex"00000000000000000000000000000000000000000057550619d73852e9b00000";
hex"00000000000000000000000000000000000000000057550619d73852e9b00000"
hex"000000000000000000000000000000000000000000579eee6795f7b52ed80000"
hex"00000000000000000000000000000000000000000057e8d6c3356dcb1b640000"
hex"0000000000000000000000000000000000000000005832bf1ed4e3e107f00000"
hex"000000000000000000000000000000000000000000587ca76c93a3434d180000"
hex"00000000000000000000000000000000000000000058c68fc833195939a40000"
hex"00000000000000000000000000000000000000000059107823d28f6f26300000"
hex"000000000000000000000000000000000000000000595a6071914ed16b580000"
hex"00000000000000000000000000000000000000000059a448cd30c4e757e40000"
hex"00000000000000000000000000000000000000000059ee3128d03afd44700000"
hex"0000000000000000000000000000000000000000005a3819768efa5f89980000"
hex"0000000000000000000000000000000000000000005a8201d22e707576240000"
hex"0000000000000000000000000000000000000000005acbea2dcde68b62b00000"
hex"0000000000000000000000000000000000000000005b15d27b8ca5eda7d80000"
hex"0000000000000000000000000000000000000000005b5fbad72c1c0394640000"
hex"0000000000000000000000000000000000000000005ba9a332cb921980f00000"
hex"0000000000000000000000000000000000000000005bf38b808a517bc6180000"
hex"0000000000000000000000000000000000000000005c3d73dc29c791b2a40000"
hex"0000000000000000000000000000000000000000005c875c29e886f3f7cc0000"
hex"0000000000000000000000000000000000000000005cd1448587fd09e4580000"
hex"0000000000000000000000000000000000000000005d1b2ce127731fd0e40000"
hex"0000000000000000000000000000000000000000005d65152ee63282160c0000"
hex"0000000000000000000000000000000000000000005daefd8a85a89802980000"
hex"0000000000000000000000000000000000000000005df8e5e6251eadef240000"
hex"0000000000000000000000000000000000000000005e42ce33e3de10344c0000"
hex"0000000000000000000000000000000000000000005e8cb68f83542620d80000"
hex"0000000000000000000000000000000000000000005ed69eeb22ca3c0d640000"
hex"0000000000000000000000000000000000000000005f1a7cb759b570bacc0000";

IERC20 public immutable chess;
uint256 public immutable startTimestamp;
Expand Down
27 changes: 27 additions & 0 deletions test/chessSchedule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,33 @@ const CUMULATIVE_SUPPLY_SCHEDULE: BigNumber[] = [
parseEther("104880022"),
parseEther("105229041"),
parseEther("105578060"),
parseEther("105927078"),
parseEther("106276097"),
parseEther("106625116"),
parseEther("106974134"),
parseEther("107323153"),
parseEther("107672172"),
parseEther("108021190"),
parseEther("108370209"),
parseEther("108719228"),
parseEther("109068246"),
parseEther("109417265"),
parseEther("109766284"),
parseEther("110115302"),
parseEther("110464321"),
parseEther("110813340"),
parseEther("111162358"),
parseEther("111511377"),
parseEther("111860395"),
parseEther("112209414"),
parseEther("112558433"),
parseEther("112907451"),
parseEther("113256470"),
parseEther("113605489"),
parseEther("113954507"),
parseEther("114303526"),
parseEther("114652545"),
parseEther("114973035"),
];

const WEEKLY_SUPPLY_SCHEDULE: BigNumber[] = [];
Expand Down

0 comments on commit a5ea53f

Please sign in to comment.