TypeScript implementation of an IBC Relayer.
To get a good overview of what it can do, please check our feature matrix
You can also read our specification page, which explains how the relayer works, but the Quick Start probably gives a better intro.
This repo is mainly used as a node binary to perform IBC relaying. However, all logic is available in the library, which can be run equally well in the browser or in Node. You can see an example of embedding the relayer in a webapp below.
Versions until v0.1.6
support Cosmos SDK v0.41.1+
.
From v0.2.0
on we require Tendermint v0.34.9+
(which is used in SDK v0.42.4+
).
If you are connecting to a v0.41 chain, please use the v0.1.x
relayer.
With v0.2.0
we add support for relaying packets in BeginBlock and EndBlock. However, this requires
an extra rpc endpoint in Tendermint that is not available in v0.41.1
. We therefore increase the
minimum compatible version of the SDK.
Install the latest release.
npm i -g @confio/relayer
Alternatively, install from the main
branch.
npm i -g @confio/relayer@main
NOTE: We do a manual release after completing a predefined milestone or when it feels right. No release schedule is in place yet. To utilize the latest changes, use the
main
tag during the installation.
After installation, ibc-setup
and ibc-relayer
executables are available.
Collection of commands to quickly setup a relayer and query IBC/chain data.
ibc-setup --help
to print usageReads the configuration and starts relaying packets.
ibc-relayer --help
to print usageInit the configuration
ibc-setup init --src malaga --dest uni
~/.ibc-setup
app.yaml
inside relayer's home with src
, dest
and newly generated mnemonic
registry.yaml
to relayer's homemalaga
so relayer can pay the fee while relaying packetsNOTE: Both testnets are running in the public. You do not need to start any blockchain locally to complete the quick start guide.
NOTE: Run
ibc-setup balances
to see the amount of tokens on each address.
Get testnet tokens for uni
ibc-setup keys list | grep uni
faucet
channel$request iaa1fxmqew9dgg44jdf3l34zwa8rx7tcf42wz8ehjk
ibc-setup balances
Create ics20
channel
ibc-setup ics20 -v
app.yaml
fileStart the relayer in the verbose mode and 10s frequency polling
ibc-relayer start -v --poll 15
Make sure wasmd
binary is installed on your system
$PATH
includes Go binaries (you may need to restart your terminal session)wasmd
:
git clone https://github.com/CosmWasm/wasmd.git
cd wasmd
git checkout v0.27.0
make install
Make sure juno
binary is installed on your system
$PATH
includes Go binaries (you may need to restart your terminal session)juno
:
git clone https://github.com/CosmosContracts/juno
cd juno
git checkout v6.0.0
make install
Create a new account and fund it
wasmd keys add sender
JSON=$(jq -n --arg addr $(wasmd keys show -a sender) '{"denom":"usponge","address":$addr}')
curl -X POST --header "Content-Type: application/json" --data "$JSON" https://faucet.malaga.cosmwasm.com/credit
Create a valid IRISnet address to send tokens to
junod keys add receiver
Get testnet tokens if you want to send tokens to malaga
.
Send tokens
wasmd tx ibc-transfer transfer transfer <channel-id> $(junod keys show -a receiver) 200usponge --from $(wasmd keys show -a sender) --node http://rpc.malaga.cosmwasm.com:80 --chain-id malaga-1 --fees 2000usponge --packet-timeout-height 0-0
<channel-id>
with the channel id obtained while configuring the relayer (2nd point)ibc-setup channels --chain malaga
Observe the relayer output
The relayer configuration is stored under relayer's home directory. By default, it's located at $HOME/.ibc-setup
, however, can be customized with home
option, e.g.:
# initialize the configuration at /home/user/relayer_custom_home
ibc-setup init --home /home/user/relayer_custom_home
# read the configuration from /home/user/relayer_custom_home
ibc-relayer start --home /home/user/relayer_custom_home
There are 3 files that live in the relayer's home.
registry.yaml (required)
Contains a list of available chains with corresponding information. The chains from the registry can be referenced by ibc-setup
binary or within the app.yaml
file. View an example of registry.yaml file.
app.yaml (optional)
Holds the relayer-specific options such as source or destination chains. These options can be overridden with CLI flags or environment variables.
last-queried-heights.json (optional)
Stores last queried heights for better performance on relayer startup. It's constantly overwritten with new heights when relayer is running. Simply delete this file to scan the events since forever.
Learn more about configuration.
The relayer collects various metrics that a Prometheus instance can consume.
To enable metrics collection, pass the --enable-metrics
flag when starting the relayer:
ibc-relayer start --enable-metrics
NOTE: Metrics can also be enabled via an environment variable
RELAYER_ENABLE_METRICS=true
, or with anenableMetrics: true
entry in theapp.yaml
file, as explained in the config specification.
The GET /metrics
endpoint will be exposed by default on port 8080
, which you can override with --metrics-port
flag, RELAYER_METRICS_PORT
env variable, or metricsPort
entry in app.yaml
.
docker run -it -v $(pwd):/prometheus -p9090:9090 prom/prometheus --config.file=demo/prometheus.yaml
NOTE: Ensure that
the --config.file=<path>
flag points at the existing configuration file. If you wish to use the example config, just run the command above in the root of this repository. Otherwise, you must adjust the volume (-v
) and config file path to your setup.
docker run -d --name=grafana -p 3000:3000 grafana/grafana
admin
/admin
)NOTE: Use
http://host.docker.internal:9090
as the server URL andServer
as the Access method.
NOTE: Useful guides:
Refer to the development page.
ts-relayer can be used as a library as well as a binary. This allows us to make powerful node scripts, or to easily test CosmWasm contract IBC flows in CI code. You can look at the following two examples on how to do so:
The blockchain must be based on Cosmos SDK v0.42.4+
. In particular it must have
PR 8458 and PR 9081
merged (if you are using a fork) in order for the relayer to work properly. ibc-setup
should work on v0.40.0+
The chain must have a large value for staking.params.historical_entries
(often set in genesis).
The default is "10000" and this should work with "1000", but no relayer will work if it is set to 0.
Ideally you are in control of the node that the relayer connects to. If not, it should be run by a known and trusted party, whom you can check the configuration with. Note that a malicious node could cause the relayer to send invalid packets and waste tokens on gas (but not create invalid state).
The indexer should be enabled (tx_index.indexer = "kv"
in config.toml
),
and all events should be indexed (index-events = []
in app.toml
).
The node must support historical queries. --pruning=nothing
will definitely work, but will use an
enormous amount of disk space. You can also trim it to 3 weeks of data with
--pruning=custom --pruning-keep-recent=362880 --pruning-keep-every=0 --pruning-interval=100
, which has been
tested. It is likely you could reduce pruning-keep-recent
to as low as, say, 3600, but that would need testing.
This repo can also be imported as a library and used in a web app. @clockworkgr has been so nice to share a sample Vue.js app using the relayer. This includes some nice code samples to send a IbcTransfer message with CosmJS as well as setting up and running the relayer.
The key import is import { IbcClient, Link } from "@confio/relayer/build";