ibc-relayer 0.32.2

Implementation of an IBC Relayer in Rust, as a library
1
2
3
4
5
6
7
8
9
use strum::Display;

#[derive(Clone, Copy, Debug, Display, Eq, PartialEq)]
pub enum KeyType {
    #[strum(serialize = "secp256k1")]
    Secp256k1,
    #[strum(serialize = "ed25519")]
    Ed25519,
}