usealloc::string::String;useserde::{Deserialize, Serialize};#[allow(unused)]usecrate::Chain;/// A [Chain]'s native currency.
#[derive(Clone, Debug, Deserialize, Serialize)]pubstructNativeCurrency{/// Name of the native currency.
pubname: String,
/// Symbol of the native currency.
pubsymbol: String,
/// Decimals of the native currency.
pubdecimals:u8,
}