Skip to main content
The Kotlin SDK uses finite network registries. EVM methods accept Network; Solana-specific methods accept SolanaNetwork. There is no arbitrary custom-chain constructor.

Look up a network

Use a constant when the chain is known at compile time:
Use the registry for runtime lookup:
findByName trims the input and compares the registry name without case sensitivity. Both lookup methods return null for an unsupported network. Each Network exposes id, routing name, displayName, nativeTokenSymbol, and explorerUrl.

Supported registry

The registry describes chains accepted by this SDK build. For who pays transaction fees, see Gas Sponsorship.

Solana networks

Solana methods accept Mainnet or Devnet:
EVM OMSWalletNetworks lookup helpers do not look up Solana clusters.

Public API reference

Use the Kotlin API reference for exhaustive signatures, public models, and error contracts. The workflow pages in this section cover normal usage and the decisions that affect behavior.