gill
gill/programs/token/Type aliases

Multisig

type Multisig = {
  isInitialized: boolean;
  m: number;
  n: number;
  signers: Address[];
};

Properties

isInitialized

isInitialized: boolean;

Is true if this structure has been initialized.


m

m: number;

Number of signers required.


n

n: number;

Number of valid signers.


signers

signers: Address[];

Signer public keys.

On this page