Accounts on c8ntinuum are compatible with both Ethereum and Cosmos SDK tooling. Every account has dual representation for cross-ecosystem compatibility.

Address Formats

Hex (Ethereum)

0x91defC7fE5603DFA8CC9B655cF5772459BF10c6f

Bech32 (Cosmos)

c81z3t55m0l9h0eupuz3dp5t5cypyv674jj...
Both formats reference the same underlying account. Use whichever is appropriate for your context — 0x for EVM interactions, c8 for Cosmos SDK operations.

Key Derivation

c8ntinuum uses Ethereum-compatible HD key derivation:
PropertyValue
CurveECDSA secp256k1
SDK Default HD Pathm/44'/118'/0'/0/0
Ledger Ethereum HD Pathm/44'/60'/0'/0
SDK Default Coin Type118 (Cosmos)
Ledger Ethereum Coin Type60 (Ethereum)
Key Typeeth_secp256k1
c8ntinuum supports eth_secp256k1 account keys. Ledger coin type 60 uses the Ethereum app and creates an eth_secp256k1 public key; Ledger coin type 118 uses the Cosmos app and creates a Cosmos secp256k1 public key.

Account Types

TypePrefixKey
User accountsc8 / 0xeth_secp256k1
Validator operatorsc8valopereth_secp256k1
Consensus nodesc8valconsed25519

EIP-7702 Status

EIP-7702 Set Code is fully supported for EOA code delegation on c8ntinuum.

Querying Accounts

JSON-RPC (standard Ethereum):
curl -X POST https://public-evm-rpc.c8ntinuum.com \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"eth_getBalance","params":["0x...","latest"],"id":1}'
Cosmos REST API:
# Mainnet REST/LCD endpoint:
curl "https://public-comet-grpc-web.c8ntinuum.io/cosmos/auth/v1beta1/accounts/{address}"

# On local nodes, REST uses tcp://127.0.0.1:1317 when enabled:
curl "http://127.0.0.1:1317/cosmos/auth/v1beta1/accounts/{address}"