Interface DecodedWithdrawWithheldTokensFromMintInstruction

A decoded, valid WithdrawWithheldTokensFromMint instruction

interface DecodedWithdrawWithheldTokensFromMintInstruction {
    data: {
        instruction: TransferFeeExtension;
        transferFeeInstruction: WithdrawWithheldTokensFromMint;
    };
    keys: {
        authority: AccountMeta;
        destination: AccountMeta;
        mint: AccountMeta;
        signers: null | AccountMeta[];
    };
    programId: PublicKey;
}

Properties

Properties

data: {
    instruction: TransferFeeExtension;
    transferFeeInstruction: WithdrawWithheldTokensFromMint;
}

Type declaration

keys: {
    authority: AccountMeta;
    destination: AccountMeta;
    mint: AccountMeta;
    signers: null | AccountMeta[];
}

Type declaration

  • authority: AccountMeta
  • destination: AccountMeta
  • mint: AccountMeta
  • signers: null | AccountMeta[]
programId: PublicKey

Generated using TypeDoc