Class ArkadeCashClaimResult
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
SweptulongTotal satoshis swept to the destination.
UnclaimedIReadOnlyList<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
Unclaimed
Every VTXO left behind, with a per-VTXO reason.
public IReadOnlyList<ArkadeCashUnclaimedVtxo> Unclaimed { get; init; }
Property Value
UnclaimedAmount
Total satoshis left behind at the note's address.
public ulong UnclaimedAmount { get; }