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
BatchIdstringBatch the nonces belong to.
PubKeystringClient's compressed public key (hex).
NoncesDictionary<string, string>Map of txid → public nonce (hex).
Properties
BatchId
Batch the nonces belong to.
public string BatchId { get; init; }
Property Value
Nonces
Map of txid → public nonce (hex).
public Dictionary<string, string> Nonces { get; init; }
Property Value
PubKey
Client's compressed public key (hex).
public string PubKey { get; init; }