Table of Contents

Class ArkadeCashClaimResult

Namespace
NArk.Core.Services
Assembly
NArk.Core.dll

The outcome of claiming an ArkadeCash note: what moved, and what did not.

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

Constructors

ArkadeCashClaimResult(ulong, IReadOnlyList<ArkadeCashUnclaimedVtxo>)

The outcome of claiming an ArkadeCash note: what moved, and what did not.

public ArkadeCashClaimResult(ulong Swept, IReadOnlyList<ArkadeCashUnclaimedVtxo> Unclaimed)

Parameters

Swept ulong

Total satoshis swept to the destination.

Unclaimed IReadOnlyList<ArkadeCashUnclaimedVtxo>

Every VTXO left behind, with a per-VTXO reason.

Properties

Swept

Total satoshis swept to the destination.

public ulong Swept { get; init; }

Property Value

ulong

Unclaimed

Every VTXO left behind, with a per-VTXO reason.

public IReadOnlyList<ArkadeCashUnclaimedVtxo> Unclaimed { get; init; }

Property Value

IReadOnlyList<ArkadeCashUnclaimedVtxo>

UnclaimedAmount

Total satoshis left behind at the note's address.

public ulong UnclaimedAmount { get; }

Property Value

ulong