Class NetworkSupplyData
Network-wide HBAR supply totals as reported by the mirror node. Values are tinybars.
Inherited Members
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 SourceReleasedSupply
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 |
Timestamp
The consensus timestamp at which these supply values were valid.
Declaration
[JsonPropertyName("timestamp")]
public ConsensusTimeStamp Timestamp { get; set; }
Property Value
| Type | Description |
|---|---|
| ConsensusTimeStamp |
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 |