Example IBC enabled contracts along with full stack integration tests
This package demos how to write a simple pair of IBC-enabled contracts that speak to each other. It includes unit tests on each contract in Rust, as well as full stack integration tests on two live blockchains using CosmJS and the TS-Relayer.
This is a simple set of Interchain Account (ICA)-like contracts.
simple-ica-host
will receive messages from a remote connection
and execute them on it's chain. simple-ica-controller
will
send messages from the original chain and get the results.
The main difference between this and ICA is the use of one unordered channel rather than multiple ordered channels. We also use a different payload with a CosmWasm/JSON focus.
This could be the basis of writing full ICA compatible contracts, but the main focus here is the ability to showcase how to write and test IBC contracts in general.
The package simple-ica
holds common types and functionality
used in both contracts. The concrete logic is stored
in simple-ica-host
and simple-ica-controller
.
To ensure they are proper, run the following in the repo root:
cargo build
cargo fmt
cargo clippy --tests
All unit tests are in Rust and assume a mocked out environment. They don't actually send packets between contracts in any way, but return a fully mocked response. This can run through many code paths and get a reasonable level of confidence in the basic logic. However, you will need to run through full-stack integration tests to actually have any confidence it will work as expected in production.
To ensure they are proper, run the following in the repo root:
cargo test
TODO