Table of Contents

Class TxStatus

Namespace
NArk.Abstractions.Blockchain
Assembly
NArk.Abstractions.dll

On-chain transaction status returned by GetTxStatusAsync(uint256, CancellationToken).

public record TxStatus : IEquatable<TxStatus>
Inheritance
TxStatus
Implements
Inherited Members

Constructors

TxStatus(bool, uint?, bool)

On-chain transaction status returned by GetTxStatusAsync(uint256, CancellationToken).

public TxStatus(bool Confirmed, uint? BlockHeight, bool InMempool)

Parameters

Confirmed bool
BlockHeight uint?
InMempool bool

Properties

BlockHeight

public uint? BlockHeight { get; init; }

Property Value

uint?

Confirmed

public bool Confirmed { get; init; }

Property Value

bool

InMempool

public bool InMempool { get; init; }

Property Value

bool