gitextract_h6bn2w4t/ ├── .github/ │ └── workflows/ │ └── securesdlc.yml ├── .gitignore ├── LICENSE ├── README.md ├── docker/ │ ├── dockerfiles/ │ │ └── Dockerfile.bedrock-init │ ├── grafana/ │ │ ├── dashboards/ │ │ │ └── simple_node_dashboard.json │ │ └── provisioning/ │ │ ├── dashboards/ │ │ │ └── all.yml │ │ └── datasources/ │ │ └── all.yml │ ├── influxdb/ │ │ └── influx_init.iql │ └── prometheus/ │ └── prometheus.yml ├── docker-compose.yml ├── envs/ │ ├── common/ │ │ ├── grafana.env │ │ ├── healthcheck.env │ │ └── influxdb.env │ ├── ink-mainnet/ │ │ ├── healthcheck.env │ │ ├── op-geth.env │ │ └── op-node.env │ └── ink-sepolia/ │ ├── healthcheck.env │ ├── op-geth.env │ └── op-node.env ├── progress.sh └── scripts/ ├── init-bedrock.sh ├── start-op-geth.sh ├── start-op-node.sh └── utils.sh