Interface DecodedFreezeAccountInstructionUnchecked

A decoded, non-validated FreezeAccount instruction

interface DecodedFreezeAccountInstructionUnchecked {
    data: {
        instruction: number;
    };
    keys: {
        account: undefined | AccountMeta;
        authority: undefined | AccountMeta;
        mint: undefined | AccountMeta;
        multiSigners: AccountMeta[];
    };
    programId: PublicKey;
}

Properties

Properties

data: {
    instruction: number;
}

Type declaration

  • instruction: number
keys: {
    account: undefined | AccountMeta;
    authority: undefined | AccountMeta;
    mint: undefined | AccountMeta;
    multiSigners: AccountMeta[];
}

Type declaration

  • account: undefined | AccountMeta
  • authority: undefined | AccountMeta
  • mint: undefined | AccountMeta
  • multiSigners: AccountMeta[]
programId: PublicKey

Generated using TypeDoc