├── .gitignore ├── Dockerfile ├── README.md ├── example_transaction.py ├── from_docker.md ├── from_source.md ├── generate_eth1_conf.py ├── generate_eth1_nethermind_conf.py ├── generate_eth2_conf.py ├── generate_eth2_validator_data.sh ├── genesis_validators.yaml ├── mergenet.yaml ├── requirements.txt ├── rpc_examples ├── README.md ├── consensus_assembleBlock.sh ├── consensus_newBlock.sh ├── consensus_setHead.sh └── get_genesis_hash.sh └── run_multiclient_docker.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/mergenet-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/mergenet-tutorial/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/mergenet-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /example_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/mergenet-tutorial/HEAD/example_transaction.py -------------------------------------------------------------------------------- /from_docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/mergenet-tutorial/HEAD/from_docker.md -------------------------------------------------------------------------------- /from_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/mergenet-tutorial/HEAD/from_source.md -------------------------------------------------------------------------------- /generate_eth1_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/mergenet-tutorial/HEAD/generate_eth1_conf.py -------------------------------------------------------------------------------- /generate_eth1_nethermind_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/mergenet-tutorial/HEAD/generate_eth1_nethermind_conf.py -------------------------------------------------------------------------------- /generate_eth2_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/mergenet-tutorial/HEAD/generate_eth2_conf.py -------------------------------------------------------------------------------- /generate_eth2_validator_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/mergenet-tutorial/HEAD/generate_eth2_validator_data.sh -------------------------------------------------------------------------------- /genesis_validators.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/mergenet-tutorial/HEAD/genesis_validators.yaml -------------------------------------------------------------------------------- /mergenet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/mergenet-tutorial/HEAD/mergenet.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | web3 2 | ruamel.yaml 3 | -------------------------------------------------------------------------------- /rpc_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/mergenet-tutorial/HEAD/rpc_examples/README.md -------------------------------------------------------------------------------- /rpc_examples/consensus_assembleBlock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/mergenet-tutorial/HEAD/rpc_examples/consensus_assembleBlock.sh -------------------------------------------------------------------------------- /rpc_examples/consensus_newBlock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/mergenet-tutorial/HEAD/rpc_examples/consensus_newBlock.sh -------------------------------------------------------------------------------- /rpc_examples/consensus_setHead.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/mergenet-tutorial/HEAD/rpc_examples/consensus_setHead.sh -------------------------------------------------------------------------------- /rpc_examples/get_genesis_hash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/mergenet-tutorial/HEAD/rpc_examples/get_genesis_hash.sh -------------------------------------------------------------------------------- /run_multiclient_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/mergenet-tutorial/HEAD/run_multiclient_docker.sh --------------------------------------------------------------------------------