Module 1 - Choose your Chain ID & Download the Repos
Choose Chain ID for your L2
Section titled “Choose Chain ID for your L2”Choose a Chain ID that uniquely identifies your chain. It will be used to set up MetaMask later.
98989897
Download Rome repos and Docker images
Section titled “Download Rome repos and Docker images”Clone Rome Setup Repository.
git clone --branch v1.0.0 git@github.com:rome-labs/rome-setup.git
Now pull the docker images, so that you won’t need to rebuild them.
docker pull romelabs/rollup-op-geth:v1.0.0docker pull romelabs/rome-apps:v1.0.0docker pull romelabs/rome-evm:v1.0.0
Alternatively, build these Docker images locally.
git clone --branch v1.0.0 git@github.com:rome-labs/rome-apps.gitgit clone --branch v1.0.0 git@github.com:rome-labs/rome-sdk.gitgit clone --branch v1.0.0 git@github.com:rome-labs/rome-evm.git
docker buildx build -t romelabs/rome-apps:v1.0.0 -f rome-apps/docker/Dockerfile --build-arg FEATURE=ci .
git clone --branch v1.0.0 git@github.com:rome-labs/rome-rollup-clients.gitgit clone --branch v1.0.0 git@github.com:rome-labs/op-geth.git
docker buildx build -t romelabs/rollup-op-geth:v1.0.0 -f ./rome-rollup-clients/op-geth/Dockerfile .