Skip to main content
Version: v0.4.x

How it works?

info

ICS-27 is an interchain standard that specifies packet data structure, state machine handling logic, and encoding details for the account management system over an IBC channel between separate chains.

CosmWasm provides native entry points for IBC channel and packet semantics (known as ICS-4). This allows CosmWasm contracts to implement interchain specifications for IBC applications. Some notable examples are:

  • cw20-ics20 contract which implements the ICS-20 fungible token transfer standard.
  • cw-ics721 contract which implements the ICS-721 non-fungible token transfer standard.

CosmWasm ICA Controller is a contract that implements the ICS-27 interchain accounts standard. It allows this contract to manage accounts an another chain. This means that this contract doesn't rely on the golang implementation of the ICS-27, but rather implements it in Rust and provides a CosmWasm native API for managing accounts on another chain.

It is important to note that this contract is not a full implementation of the ICS-27 standard. It only implements the controller contract, which is responsible for creating and managing accounts on another chain. The contract does not implement the ICA host module, which is responsible for executing the ICA transactions sent by the controller contract.

Most IBC enabled chains do have the golang implementation of the ICS-27 standard, so you can use the CosmWasm ICA Controller contract to manage accounts on those chains, the Cosmos Hub, Osmosis, etc.

In this section, we will go over the following topics: