Table of Contents

Class SubmitTreeNoncesRequest

Namespace
NArk.Abstractions.Batches
Assembly
NArk.Abstractions.dll

Submits the client's MuSig2 public nonces for each batch tree transaction.

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

Constructors

SubmitTreeNoncesRequest(string, string, Dictionary<string, string>)

Submits the client's MuSig2 public nonces for each batch tree transaction.

public SubmitTreeNoncesRequest(string BatchId, string PubKey, Dictionary<string, string> Nonces)

Parameters

BatchId string

Batch the nonces belong to.

PubKey string

Client's compressed public key (hex).

Nonces Dictionary<string, string>

Map of txid → public nonce (hex).

Properties

BatchId

Batch the nonces belong to.

public string BatchId { get; init; }

Property Value

string

Nonces

Map of txid → public nonce (hex).

public Dictionary<string, string> Nonces { get; init; }

Property Value

Dictionary<string, string>

PubKey

Client's compressed public key (hex).

public string PubKey { get; init; }

Property Value

string