Interface MultisigMetadata

Required options for creating a multisignature

Documentation available at: https://developer.algorand.org/docs/get-details/transactions/signatures/#multisignatures

interface MultisigMetadata {
    addrs: (string | Address)[];
    threshold: number;
    version: number;
}

Properties

addrs: (string | Address)[]

A list of Algorand addresses representing possible signers for this multisig. Order is important.

threshold: number

Multisig threshold value. Authorization requires a subset of signatures, equal to or greater than the threshold value.

version: number

Multisig version

Generated using TypeDoc