chains_rs/
types.rs

1pub type AssetType = &'static str;
2
3pub const COIN: AssetType = "coin";
4pub const TOKEN: AssetType = "token";
5
6#[derive(Debug, Clone)]
7pub struct Link {
8    pub name: String,
9    pub url: String,
10}