Linux CLI

Hardware Requirements

Minimum:

  • CPU with 1+ cores

  • 2GB RAM

  • 4 MBit/sec download Internet service

  • Fast CPU with 2+ cores

  • 4GB+ RAM

  • 8+ MBit/sec download Internet service

System Requirements

We recommend running the node on a modern version of Ubuntu, although it is compatible with many modern Linux distributions.

Preparation of Private Key and Gas Fees

You need to create an EVM-compatible private key to operate the Verifier Node. Safeguard this private key carefully, as it is crucial for running the Verifier Node. If others delegate their Node Licenses to your Verifier Node, you will earn Delegation Fees (currently set at 1%). The address corresponding to this private key will also be used to withdraw these Delegation Fees.

Additionally, since the Verifier Node operates on the Base Chain and periodically performs on-chain verification tasks, it requires gas fees to process these transactions. Initially, you recommended to prepare 0.0005 ETH as gas fees for the Verifier Node's address, ensuring the funds are on the Base Chain.

Node License

Running a Verifier Node does not necessarily require owning a Node License, as the Verifier Node can accept Node Licenses delegated by others. However, we strongly encourage Node Runners to own a Node License and delegate it to their own Verifier Node for better control and benefits.

You can purchase a Node License at https://node.glacier.io/ and delegate it to your Verifier Node.

Run A Node

  1. Download Node binary from Github, download the right arch for your OS

  2. Setup Network to mainnet

  3. Setup your PrivateKey

Http:
  Listen: "127.0.0.1:10801"
Network: "mainnet"
RemoteBootstrap: "https://glacier-labs.github.io/node-bootstrap/"
Keystore:
  PrivateKey: "YourPrivateKey"
TEE:
  IpfsURL: "https://mainnet.glaciernode.com/ipfs/"
  1. Run node

Make sure your config file is in the same directory as the binary

.
├── config.yaml
└── verifier_linux_amd64

0 directories, 2 files

Run

chmod +x ./verifier_linux_amd64
./verifier_linux_amd64

Your node should be ready to go!

Run in screen

screen allows you to run verifier node continuously, even if you disconnect from the server or terminal.

sudo apt-get install screen # install screen if it's not already installed
screen -S glacier-node
./verifier_linux_amd64
# Ctrl-a followed by d. 
# This will detach your screen session but leave your processes running 
# in the background.

For more uses of the screen command, you can check out this tutorial.

Visit Node Explorer

The online status of the verifier nodes on the mainnet can be checked here: https://node.glacier.io/

Contract Addresses(Mainnet)

Last updated