somm_gorc 0.1.1

This crate contains gorc, the cosmos-ethereum bridge
1
2
3
4
5
6
7
8
9
10
11
12
13
mod erc20;
use erc20::Erc20;

use abscissa_core::{Command, Options, Runnable};

#[derive(Command, Debug, Options, Runnable)]
pub enum DeployCmd {
    #[options(
        name = "erc20",
        help = "deploy an ERC20 representation of a cosmos denom"
    )]
    Erc20(Erc20),
}