├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── bytecode_l1_depositfeed.txt ├── bytecode_l2_l1block.txt ├── cast-env ├── clean.sh ├── gen_confs.py ├── get-genesis-hashes.sh ├── install.sh ├── killall.sh ├── requirements.txt ├── rollup.yaml ├── setup.sh ├── start-l1-geth-killable.sh ├── start-l1-geth.sh ├── start-l2-geth-killable.sh ├── start-l2-geth.sh ├── start-rollup-node-killable.sh ├── start-rollup-node.sh └── test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/rollup-node-experiments/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/rollup-node-experiments/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/rollup-node-experiments/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/rollup-node-experiments/HEAD/README.md -------------------------------------------------------------------------------- /bytecode_l1_depositfeed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/rollup-node-experiments/HEAD/bytecode_l1_depositfeed.txt -------------------------------------------------------------------------------- /bytecode_l2_l1block.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/rollup-node-experiments/HEAD/bytecode_l2_l1block.txt -------------------------------------------------------------------------------- /cast-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/rollup-node-experiments/HEAD/cast-env -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/rollup-node-experiments/HEAD/clean.sh -------------------------------------------------------------------------------- /gen_confs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/rollup-node-experiments/HEAD/gen_confs.py -------------------------------------------------------------------------------- /get-genesis-hashes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/rollup-node-experiments/HEAD/get-genesis-hashes.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/rollup-node-experiments/HEAD/install.sh -------------------------------------------------------------------------------- /killall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/rollup-node-experiments/HEAD/killall.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | web3 2 | ruamel.yaml -------------------------------------------------------------------------------- /rollup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/rollup-node-experiments/HEAD/rollup.yaml -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/rollup-node-experiments/HEAD/setup.sh -------------------------------------------------------------------------------- /start-l1-geth-killable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/rollup-node-experiments/HEAD/start-l1-geth-killable.sh -------------------------------------------------------------------------------- /start-l1-geth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/rollup-node-experiments/HEAD/start-l1-geth.sh -------------------------------------------------------------------------------- /start-l2-geth-killable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/rollup-node-experiments/HEAD/start-l2-geth-killable.sh -------------------------------------------------------------------------------- /start-l2-geth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/rollup-node-experiments/HEAD/start-l2-geth.sh -------------------------------------------------------------------------------- /start-rollup-node-killable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/rollup-node-experiments/HEAD/start-rollup-node-killable.sh -------------------------------------------------------------------------------- /start-rollup-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/rollup-node-experiments/HEAD/start-rollup-node.sh -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protolambda/rollup-node-experiments/HEAD/test.sh --------------------------------------------------------------------------------