Endless Coin(EDS)
Digital Assets
struct Metadata has key {
/// Token name, e.g., "US Dollar Tether"
name: String,
/// More commonly used token symbol, e.g., "USDT"
symbol: String,
/// Token precision, e.g., EDS or Ether
decimals: u8,
/// Token icon URI
icon_uri: String,
/// Project URI
project_uri: String,
}struct FungibleStore has key {
/// Address of the metadata object
metadata: Object<Metadata>,
/// Token balance
balance: Aggregator<u128>,
/// Freeze option
frozen: bool,
}EDS Native Token
1
2
3
System Function Calls Related
Last updated