Accounts API
Call smart contracts on remote chains
Developers can use the Accounts API to create and control an account on a remote chain from their local chain.
Unlike the Messaging API, which requires recipients to implement a specific interface, the Accounts API allows developers to interact with any remote contract.
The Accounts API assigns every (uint32 origin, address owner, address remoteRouter, address remoteISM)
tuple a unique interchain account (ICA) address. The sender owns that ICA on the destination chain, and can direct it to make arbitrary function calls via the InterchainAccountRouter.callRemote()
endpoint.
On many chains, you are able to use the defaults that are set by the owner of the router contract. See the Overrides section to see how to make calls to any chain or use custom Interchain security modules.
Computing addresses
It may be useful to know the remote address of your ICA before sending a message. For example, you may want to first fund the address with tokens. The getRemoteInterchainAccount
function can be used to get the address of an ICA given the destination chain and owner address.
An example is included below of a contract precomputing its own Interchain Account address.
Interface
Want to use InterchainAccountRouter
? Please refer to Contract addresses and Domain identifiers
Example Usage
Encoding
The callRemote
function takes as arguments an array of Call
structs. Call.data
can be easily encoded with the abi.encodeCall
function.
Computing addresses
There is a bug in address computation in the latest deployment that will result in the wrong address
It may be useful to know the remote address of your ICA before sending a message. For example, you may want to first fund the address with tokens. The getRemoteInterchainAccount
function can be used to get the address of an ICA given the destination chain and owner address.
An example is included below of a contract precomputing its own interchain account address.
If you are using Overrides to specify remote chains or Interchain security modules, pass those overrides when computing the remote ICA address.
Paying for Interchain Gas
Just like all Hyperlane messages that wish to have their messages delivered by a relayer, users must pay for interchain gas.
The various callRemote
functions in the Accounts API each return the message ID as a bytes32
. This message ID can then be used by the caller to pay for interchain gas.
When specifying the amount of gas, the caller must pay for a gas amount high enough to cover:
"Overhead" gas used by the Accounts API contract and ISM on the destination chain. See the below table to understand what this will be.
The gas used by the user-specified arbitrary call(s) that will be performed by the interchain account.
Overhead gas amounts
For the very first message sent by a sender on the origin chain to a new destination domain, a higher overhead destination gas cost is incurred. This is because the interchain account must be created on the destination chain, which involves a new contract being deployed. Subsequent messages to an already-created interchain account have a much cheaper overhead.
Interchain account already exists? | Overhead Gas Amount |
---|---|
No - this is the very first message from a | 150,000 |
Yes | 30,000 |
Gas Payment Example
Overrides
The interchain accounts API allows developers to override the default chains and security models configured in the InterchainAccountRouter
.
This can be useful for developers who wish to:
Call an ICA on a chain that was not explicitly added by the
InterchainAccountRouter
owner, orSecure their ICA(s) using different Interchain security modules than the defaults configured in the
InterchainAccountRouter
Interface
The address of a remote ICA will vary with the _router
and _ism
overrides used
The callRemoteWithOverrides
function looks similar to the callRemote
function, but takes two additional arguments.
First, developers can override _router
, the address of the InterchainAccountRouter
on the remote chain. This allows developers to control an ICA on remote chains that have not been configured on the local InterchainAccountRouter
.
Second, developers can override _ism
, the address of the remote interchain security module (ISM) used to secure their ICA. This ISM will be used to verify the interchain messages passed between the local and remote InterchainAccountRouters
. This allows developers to use a custom security model that best suits their needs.
Read more about Interchain security modules.
Diagram
Last updated