Show / Hide Table of Contents

Class TokenSummaryData

Lightweight token summary returned by the /api/v1/tokens list endpoint. Intentionally a reduced-field type — the mirror node omits the full HAPI TokenInfo configuration when listing, and modeling it as a smaller class avoids the common trap of callers expecting full-info fields (supply/pause/wipe keys, auto-renew settings, fees, etc.) to be present.

Inheritance
object
TokenSummaryData
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Hiero.Mirror
Assembly: Hiero.dll
Syntax
public class TokenSummaryData
Remarks

When full configuration is required for a single token, use TokenData via the GetTokenAsync(MirrorRestClient, EntityId, params IMirrorQueryParameter[]) method instead.

Properties

| Edit this page View Source

Administrator

The admin key granting operational authority over the token. Null when the token has no admin key (immutable token).

Declaration
[JsonPropertyName("admin_key")]
public Endorsement? Administrator { get; set; }
Property Value
Type Description
Endorsement
| Edit this page View Source

Decimals

Number of decimal places for fungible tokens; zero for non-fungible tokens.

Declaration
[JsonPropertyName("decimals")]
[JsonConverter(typeof(IntMirrorConverter))]
public int Decimals { get; set; }
Property Value
Type Description
int
| Edit this page View Source

Metadata

Arbitrary binary metadata attached to the token class (per HIP-657). Empty when the token carries no metadata.

Declaration
[JsonPropertyName("metadata")]
[JsonConverter(typeof(Base64StringToBytesConverter))]
public ReadOnlyMemory<byte> Metadata { get; set; }
Property Value
Type Description
ReadOnlyMemory<byte>
| Edit this page View Source

Name

Human-readable token name.

Declaration
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
Type Description
string
| Edit this page View Source

Symbol

Short token symbol.

Declaration
[JsonPropertyName("symbol")]
public string Symbol { get; set; }
Property Value
Type Description
string
| Edit this page View Source

Token

The Hiero token entity id.

Declaration
[JsonPropertyName("token_id")]
public EntityId Token { get; set; }
Property Value
Type Description
EntityId
| Edit this page View Source

Type

Token type classification: fungible or non-fungible.

Declaration
[JsonPropertyName("type")]
public TokenType Type { get; set; }
Property Value
Type Description
TokenType
  • Edit this page
  • View Source
In this article
Back to top .NET Client Library for Hiero Network and Hedera Hashgraph