Class result
public class result
- Inheritance
-
result
- Inherited Members
Properties
AdditionalProperties
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
ChainId
The blockchain network ID
[JsonProperty("chainId", Required = Required.Always)]
public double ChainId { get; set; }
Property Value
Decimals
Number of decimal places for the token
[JsonProperty("decimals", Required = Required.Always)]
public double Decimals { get; set; }
Property Value
DisplayValue
Human-readable balance formatted with appropriate decimal places
[JsonProperty("displayValue", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string DisplayValue { get; set; }
Property Value
Name
The token name (e.g., 'Ether', 'USD Coin')
[JsonProperty("name", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Name { get; set; }
Property Value
Symbol
The token symbol (e.g., 'ETH', 'USDC')
[JsonProperty("symbol", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Symbol { get; set; }
Property Value
TokenAddress
The token contract address. Returns zero address (0x0...0) for native tokens.
[JsonProperty("tokenAddress", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string TokenAddress { get; set; }
Property Value
Value
Raw balance value as string in smallest unit (wei for ETH, etc.)
[JsonProperty("value", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Value { get; set; }