A relayer between cosmos and evm chains on Axelar testnet.
The relayer is currently deployed on the heroku server, so you don't have to run it. But here's how you can also run it in your local machine.
Make sure docker engine is running. We use docker for spin up local postgres db.
- Copy
.env.exampleto.envand fill all values. - Run
yarn - Run
make upto run postgres db container. - Wait until the db is ready to accept connection, then run
make prisma-pushto create database and tables. - Run
prisma-generateto generate db types. - Run
yarn start:devto start the relayer
The relayer has stored the cross-chain events in the database. It exposes an API for developers for the debugging purpose.
The API documentation in available here.
Work in progress