Skip to main content

Running an Etherlink Smart Rollup node

Etherlink uses Smart Rollup nodes as a bridge between the EVM transactions on the EVM nodes and Tezos layer 1. Public Smart Rollup nodes for Etherlink are not yet available, so you must run your own if you want to participate in the Etherlink network.

The Smart Rollup node runs the kernel, which is a Rust program compiled in WASM implementing the semantics of Etherlink blocks and transactions.

To start, the node uses the installer kernel, which is a compressed version of the kernel that provides only enough information to install the original kernel. The data for the original kernel is stored in separate files called preimages.

You can run the Smart Rollup node starting from Etherlink genesis or from a snapshot of a recent Etherlink state.

System requirements

Running an Etherlink Smart Rollup node on Etherlink Mainnet requires a computer with 500GB of disk space and at least 16GB RAM.

Modes

Running the Smart Rollup node in operator or maintenance mode is the best way to participate in Etherlink because in these modes the node posts commitments about Etherlink's state to layer 1. These commitments validate Etherlink's state and ensure that Etherlink is processing blocks and transactions honestly according to its kernel. As described in Smart Rollups on docs.tezos.com, one honest node is enough to ensure that Etherlink is running correctly, but adding more nodes strengthens its security and allows users to verify for themselves that Etherlink is running as intended.

The best way to run a node that can post commitments is to start with a node in observer mode, verify that it works, and convert it to maintenance mode. Maintenance mode is similar to operator mode but it does not require settings for batching operations, which are required only for sequencer nodes.

For more information on modes, see Smart Rollup node in the Octez documentation.

References

Make sure that you understand the interaction between different nodes as described in Etherlink architecture.

For more information about Smart Rollup nodes in general, see Smart Rollups on docs.tezos.com and Smart Rollup Node in the Octez documentation.

Starting the Smart Rollup node in observer mode

You can start the Smart Rollup node in observer mode to bootstrap it and make sure that it works before you change to maintenance mode.

To bootstrap a Smart Rollup node from a snapshot, you need a node that has the full history from the time the snapshot was taken to the current level. Usually this means connecting to an archive node, but if the snapshot is recent, it can work with a rolling node that keeps enough history. After the node has started, you can switch to a rolling node.

Follow these steps to start the node in observer mode:

  1. Get a built version of the Smart Rollup node binary, named octez-smart-rollup-node. The best place to get the most recent binary files to use with Etherlink is https://gitlab.com/tezos/tezos/-/releases.

  2. Initialize the local context of the node, which is where it stores local data:

    1. Set the environment variable SR_DATA_DIR to the directory where the node should store its local data. The default value is $HOME/.tezos-smart-rollup-node.

    2. Initialize the local context by running this command and passing the address of the Etherlink Smart Rollup and the preimages endpoint. You can get this information on the Network information page.

      For example, this command initializes the context for Etherlink Mainnet:

      octez-smart-rollup-node init observer config for sr1Ghq66tYK9y3r8CC1Tf8i8m5nxh8nTvZEf \
      with operators --data-dir $SR_DATA_DIR \
      --pre-images-endpoint https://snapshots.eu.tzinit.org/etherlink-mainnet/wasm_2_0_0

      For Etherlink testnet, use this command:

      octez-smart-rollup-node init observer config for sr18wx6ezkeRjt1SZSeZ2UQzQN3Uc3YLMLqg \
      with operators --data-dir $SR_DATA_DIR \
      --pre-images-endpoint https://snapshots.eu.tzinit.org/etherlink-ghostnet/wasm_2_0_0

      This command generates a minimal configuration file (config.json) in the local data folder:

      { "smart-rollup-address": "sr1Ghq66tYK9y3r8CC1Tf8i8m5nxh8nTvZEf",
      "smart-rollup-node-operator": {}, "fee-parameters": {}, "mode": "observer",
      "pre-images-endpoint":
      "https://snapshots.eu.tzinit.org/etherlink-mainnet/wasm_2_0_0" }

      This configuration uses the preimages that the Tezos Foundation hosts on a file server on a so-called "preimages endpoint". It's safe to use these preimages because the node verifies them. If you don't want to use third-party preimages, you can build the kernel yourself and move the contents of the wasm_2_0_0/ directory to the local data directory; see Building the Etherlink kernel. However, in this case, you must manually update this directory with the preimages of every kernel voted by the community and deployed on Etherlink after that.

  3. To speed up the setup process by loading a snapshot, follow these steps:

    1. Download the latest snapshot. Mainnet snapshots are available at https://snapshots.eu.tzinit.org/etherlink-mainnet and Testnet snapshots are available at https://snapshots.eu.tzinit.org/etherlink-ghostnet.

      For example, this command downloads the latest snapshot for Etherlink mainnet:

      wget https://snapshots.eu.tzinit.org/etherlink-mainnet/eth-mainnet.full
    2. Load the snapshot by running the snapshot import command:

      octez-smart-rollup-node --endpoint https://rpc.tzkt.io/mainnet \
      snapshot import eth-mainnet.full \
      --data-dir $SR_DATA_DIR
  4. Start the Smart Rollup node in observer mode with the run command:

    octez-smart-rollup-node --endpoint https://rpc.tzkt.io/mainnet run \
    --data-dir $SR_DATA_DIR

    If you did not load a snapshot, the process of starting the node from genesis can take a long time because it must process every block.

    If you loaded a snapshot, the node must process every block that has been created since the snapshot was taken, which takes time depending on the age of the snapshot.

  5. Verify that the Smart Rollup node is running by querying it. For example, this query gets the health of the node:

    curl -s http://localhost:8932/health

Now the Smart Rollup node is running and tracking the state of Etherlink by receiving information from layer 1.

Converting the Smart Rollup node to maintenance mode

Converting the observer node to maintenance mode requires these prerequisites:

  • Your own Tezos layer 1 node running in any mode.

    To run the Smart Rollup node in a mode that posts commitments, including maintenance mode and operator mode, you must connect it to a layer 1 node that you control. Using a public layer 1 node as the basis for a Smart Rollup node in maintenance or operator mode exposes the Smart Rollup node to security risks. For example, a malicious layer 1 node can expose the Smart Rollup node to an incorrect branch, which can cause the Smart Rollup node to post invalid commitments and lose tez when other node operators computing from the correct branch refute them.

    As these steps describe, it is safe to bootstrap a node in observer mode by connecting it to a public node, switch to maintenance or operator mode, and then promptly connect it to a layer 1 node that you control.

  • An account with at least 10,000 liquid (unstaked) tez, referred to as the operator account. You can use the same account that you use for a layer 1 baker, but for better security, you can use a different account and delegate its tez to the layer 1 account.

  • An account with a small amount of liquid tez for cementing and outbox operations.

Follow these steps to convert a Smart Rollup node from observer mode to maintenance mode:

  1. Set up the two accounts in the Octez client.

  2. Stop the Smart Rollup node.

  3. Restart the node with the layer 1 node that you control, represented in this example by the variable $MY_LAYER_1_NODE:

    octez-smart-rollup-node --endpoint $MY_LAYER_1_NODE run \
    --data-dir $SR_DATA_DIR
  4. Verify that the node continues to run as expected in observer mode.

  5. Stop the node.

  6. Re-initialize the node for maintenance mode by running the init maintenance config command and passing the addresses or Octez aliases of the accounts. This example uses $OPERATOR_ACCOUNT for the account with 10,000 liquid tez and $SECONDARY_ACCOUNT for the other account:

    octez-smart-rollup-node init maintenance config for sr1Ghq66tYK9y3r8CC1Tf8i8m5nxh8nTvZEf \
    with operators \
    operating:$OPERATOR_ACCOUNT \
    cementing:$SECONDARY_ACCOUNT \
    executing_outbox:$SECONDARY_ACCOUNT \
    --history-mode archive \
    --rpc-addr 0.0.0.0 \
    --data-dir $SR_DATA_DIR \
    --pre-images-endpoint https://snapshots.eu.tzinit.org/etherlink-mainnet/wasm_2_0_0

    This command generates updates the configuration file to contain the addresses of the accounts that post operations to layer 1, including the node's commitments.

  7. Restart the node, again with the layer 1 node that you control:

    octez-smart-rollup-node --endpoint $MY_LAYER_1_NODE run \
    --data-dir $SR_DATA_DIR
  8. Verify that the Smart Rollup node is running by querying it. For example, this query gets the health of the node:

    curl -s http://localhost:8932/health

Now that you have a Smart Rollup node configured for Etherlink, you can run an Etherlink EVM node, as described in Running an Etherlink EVM node.

arrow icon

Prev

Fee structure

Next

arrow icon
Running an Etherlink EVM node