Interface AtomicTxn.ISigning<T>
Namespace: Algorand.Unity
Assembly: cs.temp.dll.dll
Syntax
public interface ISigning<T>
where T : AtomicTxn.ISigning<T>
Type Parameters
| Name | Description |
|---|---|
| T |
Properties
SignedTxnIndices
Indices of the transactions that have already been signed.
Declaration
TxnIndices SignedTxnIndices { get; set; }
Property Value
| Type | Description |
|---|---|
| TxnIndices |
Sigs
Signatures associated with each transaction.
Declaration
TransactionSignature[] Sigs { get; }
Property Value
| Type | Description |
|---|---|
| TransactionSignature[] |
Txns
Transactions in this group.
Declaration
Transaction[] Txns { get; }
Property Value
| Type | Description |
|---|---|
| Transaction[] |
Methods
AsAsync()
Represent this signing atomic txn group as an async signing group.
Declaration
AtomicTxn.AsyncSigning AsAsync()
Returns
| Type | Description |
|---|---|
| AtomicTxn.AsyncSigning |
Remarks
Async signing groups will require waiting for signatures signing is finished.