Table of Contents

Class OnchainRefundOutcome

Namespace
NArk.ArkadeIntents.Onchain
Assembly
NArk.ArkadeIntents.dll

What a pass over an on-board's L1 refund found.

public sealed record OnchainRefundOutcome : IEquatable<OnchainRefundOutcome>
Inheritance
OnchainRefundOutcome
Implements
Inherited Members

Constructors

OnchainRefundOutcome(bool, string?, string?)

What a pass over an on-board's L1 refund found.

public OnchainRefundOutcome(bool Refunded, string? Detail = null, string? Txid = null)

Parameters

Refunded bool

True when this pass broadcast the refund.

Detail string

Why not, when it did not.

Txid string

The refund transaction, when one was broadcast.

Properties

Detail

Why not, when it did not.

public string? Detail { get; init; }

Property Value

string

Refunded

True when this pass broadcast the refund.

public bool Refunded { get; init; }

Property Value

bool

Txid

The refund transaction, when one was broadcast.

public string? Txid { get; init; }

Property Value

string