Interface DecodedApproveCheckedInstruction

A decoded, valid ApproveChecked instruction

interface DecodedApproveCheckedInstruction {
    data: {
        amount: bigint;
        decimals: number;
        instruction: ApproveChecked;
    };
    keys: {
        account: AccountMeta;
        delegate: AccountMeta;
        mint: AccountMeta;
        multiSigners: AccountMeta[];
        owner: AccountMeta;
    };
    programId: PublicKey;
}

Properties

Properties

data: {
    amount: bigint;
    decimals: number;
    instruction: ApproveChecked;
}

Type declaration

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

Type declaration

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

Generated using TypeDoc