Skip to main content

Operator FAQ

What is the Omni software stack?

  • The Omni architecture is similar to Ethereum PoS in that it consists of two chains: an execution chain and a consensus chain.
  • The execution chain is implemented by running the latest version of geth . Note that Omni doesn’t fork geth, we use the stock standard version, just with a custom Omni execution genesis.
  • The consensus chain is implemented by running halo which is a CosmosSDK application chain. Halo connects to geth via the EngineAPI.
  • Running a Omni full node therefore consists of running both halo and geth.

Does Omni provide official docker images?

  • Yes, see omniops/halovisor and ethereum/client-go
  • Note that the omni operator init-nodes CLI command generates all the required config files, genesis files, keys and a docker compose file required to run halo and geth using docker compose. It also calls geth init with the Omni execution genesis file.

What is the difference between the omniops/halovisor and omniops/halo docker containers?

  • The omniops/halovisor container combines cosmovisor with all halo binaries required for network upgrades.
  • The omniops/halo container only contains a specific halo binary.
  • It is strongly advised to run the latest omniops/halovisor version since this ensures your validator will automatically perform required network upgrades if and when they occur. The omni team will also communicate details of any planned network upgrades.
  • Cosmos network upgrades require switching binary versions at the specific chain heights that network upgrades occur. The halovisor container handles this automatically.
  • Both omniops/halovisor:latest and omniops/halo:latest point to the latest stable omni release as per the Omni monorepo Github release page.

Can raw binaries be used instead of docker containers?

  • Yes, the halo and geth binaries are available on their respective Github release pages.
  • Note that setting up cosmovisor is strongly advised to support smooth network upgrades. See our halovisor build scripts for inspiration.
  • Note that before starting geth, it must first be initialised with the Omni Omega execution-genesis.json file via geth init.

What is the XChain RPC request rate per validator?

  • Each validator needs to attest to each source chain block twice, once for latest confirmation level, and once for finalized confirmation level.
  • The validator does maximum 4 queries per block; once for the block header, once for xmsg event logs, once for xreceipt event logs plus some additional polling.
  • So RPC request rate primarily depends on the block period per chain:
    1. arb_sepolia : 4 blocks/s * 4 req/vote * 2 votes/block ~= 32 req/s
    2. op_sepolia : 0.5 blocks/s * … ~= 4 req/s
    3. base_sepolia : 0.5 blocks/s * … ~= 4 req/s
    4. holesky : 0.08 blocks/s ~= 1 req/s (due to additional polling of slow chains)
  • Note that the above are average rates. Bursts of much higher rates must be supported since chains finalize blocks in large batches instead of continuously, e.g. +-2000 blocks every 8mins for arb_sepolia. The whole batch of finalized blocks need to be voted on as fast as possible, this results in very high query bursts (up to 200 req/s).
  • Rate limiting of XChain RPC requests should therefore not be applied for best xchain validator performance.

How to “unjail” a validator?

  • The Cosmos staking module can “jail” a validator for inactivity which removes it from the active validator set. See more details here.

  • Note that Omni validators have two types of duties to perform:

    1. CometBFT consensus blocks (can be jailed for inactivity)
    2. XChain votes (cannot be jailed for inactivity yet).
  • To “unjail” a validator, submit the following unjail transaction from the operator address to the Omni execution chain by using the omni CLI similar to create-validator above :

    ❯ omni operator unjail \
    --network=omega \
    --private-key-file=./operator-private-key-0x6e9C5F0Ad4739C746f4398faAf773A3503476b90

What is the difference between L and F on the dashboard?

  • Each validator votes for each support chain twice: once for latest blocks (L) and once for finalized blocks (F). This allows users of our xchain protocol to decide if they want to wait for chain finalization (strong security and exactly once guarantees) or if they want fast xchain messages with latest (strong security but no delivery guarantees due to risk of reorg).

What are the validation duties of a validator?

  • Omni validators have two duty types to perform:
    1. Normal cosmos/cometBFT consensus : UptimeC on dashboard
    2. XChain votes and attestations: UptimeX on dashboard

How do validators vote?

  • Validators vote in the Omni consensus chain, using a new feature of CosmosSDK/CometBFT called “vote extensions”

When will ETH delegation be available?

$ETH delegation counting for validator power is not available initially on Mainnet and will only be enabled after a staking upgrade. The full Eigenlayer integration is pending $ETH slashing being available as a feature in Eigenlayer (if $ETH isn't slashable, it can't count for economic security yet).

Operators can still register with Omni's Eigenlayer AVS contract following Eigenlayer's instructions here to register operator key with their contracts and then run the following command to register within the Omni AVS contract:

omni operator register --config-file ~/path/to/operator.yaml

Which tokens can be staked?

Validators must stake native $OMNI. Validators can also opt into receiving $ETH delegations once the Eigenlayer integration is complete.

What is the validator whitelist?

Omni currently has a validator whitelist. The whitelist applies to both native $OMNI staking and $ETH staking via the Omni AVS. A future network upgrade will enable permissionless validator registration.

What are the planned staking upgrades?

There will be several network upgrades to enable various validator / staking features. Some of these features include:

  • Withdrawals: similar to the Beacon Chain launch, validators will not initially be able to withdrawal their $OMNI stake.
  • Delegations: validators can receive $OMNI delegations.
  • X-chain rewards and penalties
  • $ETH Restaking: validators can opt into receiving restaked $ETH delegations, pending Eigenlayer slashing.
  • Permissionless validator registration: anyone can register, and collect delegations to be included in the active set.