├── .env ├── .env.goerli ├── .env.mainnet ├── .env.sepolia ├── .github └── workflows │ ├── docker.yml │ └── pr.yml ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── docker-compose.yml ├── geth-entrypoint ├── goerli ├── genesis-l2.json └── rollup.json ├── logo.webp ├── mainnet ├── genesis-l2.json └── rollup.json ├── op-node-entrypoint ├── sepolia ├── genesis-l2.json └── rollup.json └── supervisord.conf /.env: -------------------------------------------------------------------------------- 1 | GETH_HOST_DATA_DIR=./geth-data -------------------------------------------------------------------------------- /.env.goerli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saradeutsche/node/HEAD/.env.goerli -------------------------------------------------------------------------------- /.env.mainnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saradeutsche/node/HEAD/.env.mainnet -------------------------------------------------------------------------------- /.env.sepolia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saradeutsche/node/HEAD/.env.sepolia -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saradeutsche/node/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saradeutsche/node/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | /geth-data/ -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saradeutsche/node/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saradeutsche/node/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saradeutsche/node/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saradeutsche/node/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saradeutsche/node/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saradeutsche/node/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /geth-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saradeutsche/node/HEAD/geth-entrypoint -------------------------------------------------------------------------------- /goerli/genesis-l2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saradeutsche/node/HEAD/goerli/genesis-l2.json -------------------------------------------------------------------------------- /goerli/rollup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saradeutsche/node/HEAD/goerli/rollup.json -------------------------------------------------------------------------------- /logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saradeutsche/node/HEAD/logo.webp -------------------------------------------------------------------------------- /mainnet/genesis-l2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saradeutsche/node/HEAD/mainnet/genesis-l2.json -------------------------------------------------------------------------------- /mainnet/rollup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saradeutsche/node/HEAD/mainnet/rollup.json -------------------------------------------------------------------------------- /op-node-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saradeutsche/node/HEAD/op-node-entrypoint -------------------------------------------------------------------------------- /sepolia/genesis-l2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saradeutsche/node/HEAD/sepolia/genesis-l2.json -------------------------------------------------------------------------------- /sepolia/rollup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saradeutsche/node/HEAD/sepolia/rollup.json -------------------------------------------------------------------------------- /supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saradeutsche/node/HEAD/supervisord.conf --------------------------------------------------------------------------------