Table of Contents

Class result

Namespace
Thirdweb.Api
Assembly
Thirdweb.dll
public class result
Inheritance
result
Inherited Members

Properties

AdditionalProperties

[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }

Property Value

IDictionary<string, object>

ChainId

The blockchain network ID

[JsonProperty("chainId", Required = Required.Always)]
public double ChainId { get; set; }

Property Value

double

Decimals

Number of decimal places for the token

[JsonProperty("decimals", Required = Required.Always)]
public double Decimals { get; set; }

Property Value

double

DisplayValue

Human-readable balance formatted with appropriate decimal places

[JsonProperty("displayValue", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string DisplayValue { get; set; }

Property Value

string

Name

The token name (e.g., 'Ether', 'USD Coin')

[JsonProperty("name", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Name { get; set; }

Property Value

string

Symbol

The token symbol (e.g., 'ETH', 'USDC')

[JsonProperty("symbol", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Symbol { get; set; }

Property Value

string

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

string

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; }

Property Value

string