Interface DecodedRevokeInstructionUnchecked

A decoded, non-validated Revoke instruction

interface DecodedRevokeInstructionUnchecked {
    data: {
        instruction: number;
    };
    keys: {
        account: undefined | AccountMeta;
        multiSigners: AccountMeta[];
        owner: undefined | AccountMeta;
    };
    programId: PublicKey;
}

Properties

Properties

data: {
    instruction: number;
}

Type declaration

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

Type declaration

  • account: undefined | AccountMeta
  • multiSigners: AccountMeta[]
  • owner: undefined | AccountMeta
programId: PublicKey

Generated using TypeDoc