Supported blockchains
Kima supports a variety of EVM-compatible Layer 1 and Layer 2 chains, as well as Solana, and will ultimately allow the swift and secure transfer of value between the following blockchains:
The short names are used in various API queries. Most are shared across mainnet and testnet, while some can be environment-specific. For a full environment-wide chain inventory, use get_chains. For route-specific destinations from a given origin chain, use get_available_chains/{originChain}. Click on the chain ID link to visit Chainlist.org and add the chain to your wallet.
ℹ️ Credit Cards and Bank Accounts are currently supported as the origin network- off ramping to come in a future release. ℹ️ In backend request payloads, FIAT rails may be represented as
CCandBANK, then normalized toFIATbefore submission. ℹ️ Documentation usesBerachainandBerachain Bepoliaas display names. API responses may useBeraorBerachain, while the stable short name remainsBERA.
Testnet support
Kima is currently available on the following testnets, which can be used for development and/or testing in the Kima Demo App:
Querying for Supported Chains
Full environment chain inventory
Use get_chains if you want the full list of chains available in a given environment:
Mainnet:
https://api.kima.network/kima-finance/kima-blockchain/chains/get_chainsTestnet:
https://api.sardis.kima.network/kima-finance/kima-blockchain/chains/get_chains
Response:
Chains: string[]: the list of supported chain short names for that environment
Route-specific destinations
Use get_available_chains/{originChain} if you want the set of destination chains available from a specific origin chain:
Mainnet:
https://api.kima.network/kima-finance/kima-blockchain/chains/get_available_chains/{originChain}Testnet:
https://api.sardis.kima.network/kima-finance/kima-blockchain/chains/get_available_chains/{originChain}
Params
originChain(string): the starting chain short name (see above)
Response
Chains: string[]: the list of chain short names which can be bridged to from the origin chain
The example above reflects a mainnet query using originChain=ETH on March 10, 2026.
Last updated