abstract-ibc-host 0.13.0

base ibc-host contract implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Abstract IBC host

The Abstract IBC host is a contract designed to be deployed on a remote App chain. It enables any Account to perform cross-chain actions on a proxy account owned by the Account. This contract is offered as a package and should be used as a starting point for implementing stateless execution logic on a remote chain. 

## Supported actions

### Register
Register an Account by creating a CW1 proxy for the Account and assigning a map entry to it. This way incoming IBC requests can be sent to the correct proxy. 

### Dispatch
Proxy a set of execute messages to the Account's proxy on the host chain. 

### App
Provide the app-specific execute messages that resolve into a `Vec<CosmosMsg>` that's then called on the proxy contract.
This endpoint provides client chains with an interface to the application logic available on the app chain.