run-morph-node
is a repository designed to facilitate the deployment and management of Morph nodes using Docker. Morph is an innovative platform that enhances Ethereum Layer 2 scalability by combining optimistic rollups and zk technology, aiming to revolutionize consumer blockchain applications.
- Dockerized Deployment: Simplifies the process of setting up Morph validator nodes using Docker containers.
- Network Support: Provides configurations for both Mainnet and Holesky testnet environments.
- Snapshot Synchronization: Supports synchronizing node data from snapshots to expedite the setup process.
Before setting up a Morph node, ensure you have the following installed:
- Docker: Containerization platform to run the node.
- Docker Compose: Tool for defining and running multi-container Docker applications.
-
Clone the Repository:
git clone https://github.com/morph-l2/run-morph-node.git
-
Navigate to the Project Directory:
cd run-morph-node
-
Configure Environment Variables:
Edit the
.env
file to set the appropriate values for your setup if needed. For instance, specify theMORPH_HOME
if you plan to user your specified directory as your node data home. By default, it takes./mainnet
as the node data home for mainnet network. -
Download and Decompress Snapshot (Optional but Recommended):
-
To expedite synchronization, download the latest snapshot:
make download-and-decompress-mainnet-snapshot
-
For Holesky testnet, use the corresponding command:
make download-and-decompress-holesky-snapshot
-
After downloading the snapshot, you need to manually place the decompressed data files in the appropriate node data directories.
-
For example, if the snapshot folder is named
snapshot-20241230-1
, move the directorysnapshot-20241230-1/geth
to theMORPH_HOME/geth-data
directory and the contents fromsnapshot-20241230-1/data
to the${NODE_DATA_DIR}/data directory
.mv ./morph-node/snapshot-20241230-1/geth ${MORPH_HOME}/geth-data mv ./morph-node/snapshot-20241230-1/data/* ${MORPH_HOME}/node-data/data
-
The folder structure will be like
└── ${MORPH_HOME} ├── geth-data // data directory for geth │ └── static-nodes.json │ └── geth // directory from snapshot/geth └── node-data // data directory for node ├── config │ ├── config.toml │ └── genesis.json └── data // data directory from snapshot/node
-
- Run the Node:
-
Start the node using Docker Compose:
make run-node
For testnet, run
make run-holesky-node
-
This command will set up and run the node based on the configurations specified in your .env file.
The table below provides the node snapshot data and corresponding download URLs. When starting the validator, ensure the DERIVATION_START_HEIGHT
and L1_MSG_START_HEIGHT
variables defined in the .env
(or .env_holesky
if testnet)match the selected snapshot.
For mainnet:
Snapshot Name | Derivation Start Height | L1 Msg Start Height |
---|---|---|
snapshot-20241230-1 | 21512271 | 21511271 |
For testnet:
Snapshot Name | Derivation Start Height | L1 Msg Start Height |
---|---|---|
snapshot-20241218-1 | 2960695 | 2960530 |
For detailed information on Morph and its ecosystem, refer to the official documentation:
By following these steps, you can set up and run a Morph node efficiently using Docker. For any questions or support, please refer to the official Morph community channels.