1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use anychain_core::Format;

use core::fmt;

/// Represents the format of a Ethereum address
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum EthereumFormat {
    Standard,
}

impl Format for EthereumFormat {}

impl fmt::Display for EthereumFormat {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "Standard")
    }
}