Show / Hide Table of Contents

Class NetworkSupplyData

Network-wide HBAR supply totals as reported by the mirror node. Values are tinybars.

Inheritance
object
NetworkSupplyData
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 NetworkSupplyData
Remarks

On the public Hedera mainnet and testnet the total HBAR supply is fixed (50 billion HBAR = 5×10¹⁸ tinybars), so the interesting field for most callers is ReleasedSupply — the portion of that total already released into circulation. On a custom Hiero network the totals can change over time; querying at a specific timestamp returns the supply state as of that consensus instant.

Properties

| Edit this page View Source

ReleasedSupply

The portion of the network's total supply that is already released into circulation, in tinybars.

Declaration
[JsonPropertyName("released_supply")]
[JsonConverter(typeof(LongMirrorConverter))]
public long ReleasedSupply { get; set; }
Property Value
Type Description
long
| Edit this page View Source

Timestamp

The consensus timestamp at which these supply values were valid.

Declaration
[JsonPropertyName("timestamp")]
public ConsensusTimeStamp Timestamp { get; set; }
Property Value
Type Description
ConsensusTimeStamp
| Edit this page View Source

TotalSupply

The network's total supply of HBAR, in tinybars.

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