Class TokenData
Represents a token in a step, including metadata like chain ID, address, and pricing.
public class TokenData
- Inheritance
-
TokenData
- Inherited Members
Properties
Address
[JsonProperty("address")]
public string Address { get; set; }
Property Value
ChainId
[JsonProperty("chainId")]
public BigInteger ChainId { get; set; }
Property Value
Decimals
[JsonProperty("decimals")]
public int Decimals { get; set; }
Property Value
IconUri
[JsonProperty("iconUri")]
public string IconUri { get; set; }
Property Value
Name
[JsonProperty("name")]
public string Name { get; set; }
Property Value
PriceUsd
[JsonProperty("priceUsd")]
public decimal PriceUsd { get; set; }
Property Value
Symbol
[JsonProperty("symbol")]
public string Symbol { get; set; }