CELO_VALIDATOR_GROUP_ADDRESS=cd5ce9ed6f8881c8850c199196ac200c5f566865 CELO_VALIDATOR_ADDRESS=012bcfc73f2dacb6daff9f0f6710b8d85b758acf
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
| 0x20461d2f32e2cf08087a6addaadb727d188494e4 |
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
| ### Keybase proof | |
| I hereby claim: | |
| * I am ansonla3 on github. | |
| * I am ansonlau (https://keybase.io/ansonlau) on keybase. | |
| * I have a public key ASAQJIPjA73_-1GACCFbvE2YrzxmmX6jZIb28EPq9-G67Qo | |
| To claim this, I am signing this object: |
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
| sdvsdvsd |
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
| 5DksmagXvWEYW26HGUkbpgEcWdtXKqRTiFkNzWcm8dEi56Sh |
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
| git clone https://github.com/substrate-developer-hub/substrate-package.git | |
| cd substrate-package | |
| curl https://getsubstrate.io -sSf | bash -s -- --fast | |
| cd substrate-node-template | |
| ./scripts/init.sh |
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
| yarn verify | |
| yarn run v1.22.4 | |
| $ ts-node src/index verify | |
| Verifying the new chain state against the Ethereum contracts. | |
| Connected to Polkadot CC1 using Parity Polkadot v0.7.34-dev-27b201ac-x86_64-macos. | |
| Fetching data from Ethereum. | |
| Vested Warning: 0x000003D6D3c1ae7baFDadaBD6BB77B42f7406559 not picked up with a balance. | |
| Vested Warning: 0x000003E22520c8D17156CD72ad0ce8d34BC97195 not picked up with a balance. | |
| VestedIncreased Warning: 0x000003D6D3c1ae7baFDadaBD6BB77B42f7406559 not picked up with balances. | |
| VestedIncreased Warning: 0x000003E22520c8D17156CD72ad0ce8d34BC97195 not picked up with balances. |
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
| const { ApiPromise, WsProvider } = require('@polkadot/api'); | |
| let api; | |
| async function main () { | |
| const provider = new WsProvider('wss://rpc.polkadot.io'); | |
| api = await ApiPromise.create({ provider }); | |
| // const [totalIssuance] = await Promise.all([ | |
| // api.query.balances.totalIssuance() | |
| // ]); |