Skip to content

Commit

Permalink
Merge pull request #210 from algorandfoundation/multisig-type-fix
Browse files Browse the repository at this point in the history
fix: Fixing incorrect indexer response type for multisig signatures
  • Loading branch information
robdmoore authored Jan 21, 2024
2 parents 664dd0b + 7b0d70e commit 4d7a198
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

### subsignature

**subsignature**: [`MultisigTransactionSubSignature`](types_indexer.MultisigTransactionSubSignature.md)
**subsignature**: [`MultisigTransactionSubSignature`](types_indexer.MultisigTransactionSubSignature.md)[]

[subsig] Holds pairs of public key and signatures.

Expand Down
2 changes: 1 addition & 1 deletion src/types/indexer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ export interface LogicTransactionSignature {
/** [msig] structure holding multiple subsignatures. https://developer.algorand.org/docs/rest-apis/indexer/#transactionsignaturemultisig */
export interface MultisigTransactionSignature {
/** [subsig] Holds pairs of public key and signatures. */
subsignature: MultisigTransactionSubSignature
subsignature: MultisigTransactionSubSignature[]
/** [thr] The threshold of signatures required for the multisig */
threshold: number
/** [v] The version of the multisig */
Expand Down

0 comments on commit 4d7a198

Please sign in to comment.