Time Step | Open | Committed | Rewarded |
---|---|---|---|
Week 1 | Draw 1 | ||
Week 2 | Draw 2 | Draw 1 | |
Week 3 | Draw 3 | Draw 2 | Draw 1 |
Week 4 | Draw 4 | Draw 3 | Draw 2 |
Week 5 | Draw 5 | Draw 4 | Draw 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
const fs = require('fs') | |
const shell = require('shelljs') | |
const program = require('commander') | |
const util = require('util') | |
const readFile = util.promisify(fs.readFile) | |
const writeFile = util.promisify(fs.writeFile) | |
program |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Open the multisig wallet. | |
2. Click "Add" for a new Multisig transaction | |
3. Enter the address 0xc0dA01a04C3f3E0be433606045bB7017A7323E38 | |
4. Cut and paste the abi: | |
[{ | |
"constant": false, | |
"inputs": [ |
Pool Pool: https://etherscan.io/address/0x396b4489da692788e327e2e4b2b0459a5ef26791
Token Faucet drip 100 POOL per day Prize is 200 POOL per Week
Initial term for 6 months (open to changing that)
Pool Pool: https://etherscan.io/address/0x396b4489da692788e327e2e4b2b0459a5ef26791
Token Faucet drip 100 POOL per day Prize is 200 POOL per Week
Initial term for 6 months (open to changing that)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
contract PickHistory { | |
// COMP token allows for users to opt-out of delegation for cheap transfers. | |
function updateBalance(address user, uint256 balance, uint256 currentDrawNumber) external onlyPrizeStrategy { | |
// get users current balance: (balance, draw number) | |
// if currentDrawNumber > balance draw number | |
// then push new record onto stack (balance, currentDrawNumber) 20k gas |