Files
arbiter/server/crates/arbiter-tokens-registry/src/evm/nonfungible.rs
2026-03-11 14:08:33 +01:00

14 lines
319 B
Rust

use alloy::primitives::{Address, ChainId, address};
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct TokenInfo {
pub name: &'static str,
pub symbol: &'static str,
pub decimals: u32,
pub contract: Address,
pub chain: ChainId,
pub logo_uri: Option<&'static str>,
}
include!("tokens.rs");