Class NftMintReceipt
A transaction receipt containing information regarding the newly minted NFTs, typically returned from methods that can affect a change on the total NFT circulation supply.
Inherited Members
Namespace: Hiero
Assembly: Hiero.dll
Syntax
public sealed record NftMintReceipt : TransactionReceipt, IEquatable<TransactionReceipt>, IEquatable<NftMintReceipt>
Properties
| Edit this page View SourceCirculation
The current (new) total number of NFTs.
Declaration
public ulong Circulation { get; }
Property Value
| Type | Description |
|---|---|
| ulong |
SerialNumbers
The serial numbers of the newly created NFTs, related in order to the list of metadata sent to the mint method.
Declaration
public IReadOnlyList<long> SerialNumbers { get; }
Property Value
| Type | Description |
|---|---|
| IReadOnlyList<long> |
Remarks
The value will be empty if the update was scheduled as a pending transaction.