Interface DecodedApproveInstruction

A decoded, valid Approve instruction

interface DecodedApproveInstruction {
    data: {
        amount: bigint;
        instruction: Approve;
    };
    keys: {
        account: AccountMeta;
        delegate: AccountMeta;
        multiSigners: AccountMeta[];
        owner: AccountMeta;
    };
    programId: PublicKey;
}

Properties

Properties

data: {
    amount: bigint;
    instruction: Approve;
}

Type declaration

keys: {
    account: AccountMeta;
    delegate: AccountMeta;
    multiSigners: AccountMeta[];
    owner: AccountMeta;
}

Type declaration

  • account: AccountMeta
  • delegate: AccountMeta
  • multiSigners: AccountMeta[]
  • owner: AccountMeta
programId: PublicKey

Generated using TypeDoc