The struct that contains the public key used for authenticating a MultiSig.

interface MultiSigPublicKey {
    pk_map: [PublicKey, number][];
    threshold: number;
}

Properties

Properties

pk_map: [PublicKey, number][]

A list of public key and its corresponding weight.

threshold: number

If the total weight of the public keys corresponding to verified signatures is larger than threshold, the MultiSig is verified.