Network Parameters

term network

Core constants and identifiers that define the Maroo network, including chain IDs, denominations, and address prefixes.

Maroo's network parameters are the predefined constants that wallets, explorers, and dApp code need to interact correctly with the chain — Chain ID for replay protection on transaction signatures, token denominations, and the Bech32 prefixes used for validator / governance addresses. The numeric values here are stable across the V1 testnet; resolve any chain-specific overrides through the JSON-RPC eth_chainId and module params.

Chain ID

Maroo uses a different Chain ID per environment to prevent transaction replay across networks.

  • Mainnet: 815
  • Testnet: 450815


Verify at runtime via the eth_chainId JSON-RPC method — clients should never hard-code a single value.

Token Denominations

The network operates with several denominations for different purposes:
  • okrw (Display Denom): The user-facing representation of the Korean Won stablecoin. 1 okrw = 1 KRW.
  • aokrw (Chain Denom): The base unit used for calculations on-chain, similar to 'wei' in Ethereum. a stands for 'atto'. 1 okrw = 10¹⁸ aokrw. This is the native gas token.
  • amaroo (Bond Denom): The staking token used for securing the network through Proof-of-Stake. Validators and delegators bond amaroo.

Address Prefixes (Bech32)

Maroo uses the Bech32 address format for non-EVM identifiers (validators, governance), providing checksums to prevent typos. The base prefix is maroo.
  • Account Address: maroo1...
  • Validator Operator Address: maroovaloper1...
  • Consensus Node Address: maroovalcons1...


Most dApp code uses the EVM 0x… form throughout — Bech32 only matters when interfacing with validator-query / governance endpoints.

HD Wallet Path

For Hierarchical Deterministic (HD) wallets like MetaMask, Maroo uses the standard BIP-44 coin type for Ethereum-compatible chains.
  • Coin Type: 60


This means existing Ethereum derivation paths (m/44'/60'/0'/0/i) work unchanged — no Maroo-specific wallet integration required.
Source: maroo
ESC
Type to search