Class SubmitSignedForfeitTxsRequest
- Namespace
- NArk.Abstractions.Batches
- Assembly
- NArk.Abstractions.dll
Submits signed forfeit transactions to the server, optionally alongside the signed commitment tx.
public record SubmitSignedForfeitTxsRequest : IEquatable<SubmitSignedForfeitTxsRequest>
- Inheritance
-
SubmitSignedForfeitTxsRequest
- Implements
- Inherited Members
Constructors
SubmitSignedForfeitTxsRequest(string[], string?)
Submits signed forfeit transactions to the server, optionally alongside the signed commitment tx.
public SubmitSignedForfeitTxsRequest(string[] SignedForfeitTxs, string? SignedCommitmentTx = null)
Parameters
SignedForfeitTxsstring[]Fully signed forfeit transactions (hex).
SignedCommitmentTxstringSigned commitment tx (hex), required when the client is a cosigner.
Properties
SignedCommitmentTx
Signed commitment tx (hex), required when the client is a cosigner.
public string? SignedCommitmentTx { get; init; }
Property Value
SignedForfeitTxs
Fully signed forfeit transactions (hex).
public string[] SignedForfeitTxs { get; init; }
Property Value
- string[]