ZeroEkkusu / genesis-contracts

Bor genesis contracts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

genesis-contracts

Setup genesis

Setup genesis whenever contracts get changed

1. Install dependencies and submodules

$ npm install
$ git submodule init
$ git submodule update

2. Compile Matic contracts

$ cd matic-contracts
$ npm install
$ node scripts/process-templates.js --bor-chain-id <bor-chain-id>
$ npm run truffle:compile
$ cd ..

3. Generate Bor validator set sol file

Following command will generate BorValidatorSet.sol file from BorValidatorSet.template file.

# Generate bor validator set using stake and balance
# Modify validators.json before as per your need
$ node generate-borvalidatorset.js --bor-chain-id <bor-chain-id> --heimdall-chain-id <heimdall-chain-id>

4. Compile contracts

$ npm run truffle:compile

5. Configure Block times

To add custom block time and associated block no.s in genesis, edit the blocks.js file

6. Generate genesis file

Following command will generate genesis.json file from genesis-template.json file.

# Generate genesis file
$ node generate-genesis.js --bor-chain-id <bor-chain-id> --heimdall-chain-id <heimdall-chain-id>

7. Run Tests

$ npm run testrpc
$ npm test

About

Bor genesis contracts


Languages

Language:JavaScript 66.7%Language:Solidity 29.7%Language:Shell 3.6%