Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Merkle distribution for Nov 1st 24 #159

Merged
merged 2 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
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
4,402 changes: 4,402 additions & 0 deletions distributions/2024-11-01/MerkleDist.json

Large diffs are not rendered by default.

746 changes: 746 additions & 0 deletions distributions/2024-11-01/MerkleInputBonusRewards.json

Large diffs are not rendered by default.

1,166 changes: 1,166 additions & 0 deletions distributions/2024-11-01/MerkleInputTACoRewards.json

Large diffs are not rendered by default.

742 changes: 742 additions & 0 deletions distributions/2024-11-01/MerkleInputTbtcv2Rewards.json

Large diffs are not rendered by default.

1,202 changes: 1,202 additions & 0 deletions distributions/2024-11-01/MerkleInputTotalRewards.json

Large diffs are not rendered by default.

3,160 changes: 3,160 additions & 0 deletions distributions/2024-11-01/tBTCv2-rewards-details/1727740800-1730419200.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions distributions/distributions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"LatestCumulativeAmount": "964512905772714654137142104",
"LatestCumulativeAmount": "994564971388897696198897601",
"CumulativeAmountByDistribution": {
"2022-07-15": "124734992091552235627767774",
"2022-09-01": "183365680150625789032093616",
Expand Down Expand Up @@ -30,6 +30,7 @@
"2024-07-01": "865483306654136779543783768",
"2024-08-01": "898815353758438805333519149",
"2024-09-01": "931834344775667962782954083",
"2024-10-01": "964512905772714654137142104"
"2024-10-01": "964512905772714654137142104",
"2024-11-01": "994564971388897696198897601"
}
}
6 changes: 3 additions & 3 deletions src/scripts/gen_rewards_dist.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ const { getTACoRewards } = require("./utils/taco-rewards.js")
// The following parameters must be modified for each distribution
const tacoWeight = 0.25
const tbtcv2Weight = 0.75
const startTime = new Date("2024-09-01T00:00:00+00:00").getTime() / 1000
const endTime = new Date("2024-10-01T00:00:00+00:00").getTime() / 1000
const lastDistribution = "2024-09-01"
const startTime = new Date("2024-10-01T00:00:00+00:00").getTime() / 1000
const endTime = new Date("2024-11-01T00:00:00+00:00").getTime() / 1000
const lastDistribution = "2024-10-01"
// tBTC valid versions and deadlines (if any) sorted from latests to oldest.
// Example: v2.1.x is the current version, v2.0.x is valid until 2024-06-01:
// v2.1.0|v2.0.0_1717200000
Expand Down