@emag3m/celogivee

0.0.3 • Public • Published

@uniswap/merkle-distributor

Tests Lint

Local Development

The following assumes the use of node@>=10.

Install Dependencies

yarn

Compile Contracts

yarn compile

Run Tests

yarn test

Use CLI to calculate CELO rewards and distribute rewards

To get complete documentation for each command and its parameters use the --help flag.

  ./bin/run rewards:generatemerkle --help

1) Temporarily allocate more memory to node since aggregating events can take up a lot of space

export NODE_OPTIONS="--max-old-space-size=8192"

2) Fetch transfer and attestation events for rewards calculation

It's best to fetch events until January, then fetch the rest and store in separate files, or else JSON can get too big for nodejs. Begin fetching next batch exactly one block after the previous batch ended using the --fromBlock flag. There will soon be a fix to do this automatically.

./bin/run rewards:fetchevents --toDate 01/01/2021 --env mainnet
  • Outputs two files:
    • Transfer Events: transfer-cusd-events-<fromBlock>-<toBlock>.json
    • Attestation Events: attestation-events-<fromBlock<-<toBlock>.json

3) Use json files from previous command to calculate rewards

./bin/run rewards:generatemerkle \
  --attestationEvents <attestation-events1.json> <attestation-events2.json>\
  --transferEvents <transfer-events1.json> <transfer-events2.json>\
  --balanceFromBlock 2000000 \
  --balanceToBlock 3000000 \
  --celoToUsd 3.08 \
  --env mainnet
  • Outputs three files:
    • Merkle Tree representing rewards: merkleTree.json
    • Mapping of account to reward amount: rewardsByAddress.json
    • JSON with intermediate state to reach these reward amounts: rewardsCalculationState.json

4) Deploy contract with merkle root from previous step

./bin/run rewards:deploydistributor --merkleTree merkleTree.json --env local --from <address>
  • Console logs important distributor information:
Distibutor address:  0xEdCF1a0003f84A97E4a28c904d888C6a2811fe
Merkle root:  0xb0071a0dc946557f936a848dfcdf7d8d06a01edbbadfca5fd034eb48110535af
Token address:  0xF194afDf50B03e69Bd7D057c1Aa9e10c9954E4C9
Total rewards:  849487996068222610

5) Distribute rewards

./bin/run rewards:distribute --merkleTree merkleTree.json --address <distributor address> --env local --from <address> 
  • Outputs a file distribution-<distributor address>.json with a mapping of each account to the transactionHash of their distribution tx.
  • This is an asynchronous script that distibutes all unclaimed rewards.
  • If any of the transactions failed to complete, or returned an error, simply run the script again to retry all incomplete distributions.
  • Rewards are distributed fully when the output json distribution-<distributor-address>.json and rewardsByAddress.json mapping accounts keys match (same number of lines in each json file).

Use CLI to verify merkle root of a deployed Merkle Distribution contract for a rewards round

1) Follow steps 1 and 2 from above so you're ready to compute a merkle root

2) Follow step 3 and use all the parameters given for the rewards round plus the verifyAgainstContract parameter with the contract address used in the rewards round. Parameters can be found in recent discussion on the rewards forum post found here.

   ./bin/run rewards:generatemerkle \
    --verifyAgainstContract <merkle distributor address>
    --attestationEvents <attestation-events1.json> <attestation-events2.json>\
    --transferEvents <transfer-events1.json> <transfer-events2.json>\
    --balanceFromDate 02/01/2021 \
    --balanceToDate 02/08/2021 \
    --celoToUsd 3.08 \
    --env mainnet
  • The console output will verify whether or not the merkle root computed matches the merkle root of the MerkleDistributor contract
  • Use the output files to verify all intermediary data used to calculate the final rewards and merkle root: merkleTree.json rewardsByAccount.json rewardsCalculationState.json

Dependents (0)

Package Sidebar

Install

npm i @emag3m/celogivee

Homepage

celo.org

Weekly Downloads

0

Version

0.0.3

License

none

Unpacked Size

122 kB

Total Files

20

Last publish

Collaborators

  • emag3m