ParsedWithdrawWithheldTokensFromMintForConfidentialTransferFeeInstruction
type ParsedWithdrawWithheldTokensFromMintForConfidentialTransferFeeInstruction<TProgram, TAccountMetas> = {
accounts: {
authority: TAccountMetas[4];
destination: TAccountMetas[1];
instructionsSysvarOrContextState: TAccountMetas[2];
mint: TAccountMetas[0];
record?: TAccountMetas[3];
};
data: WithdrawWithheldTokensFromMintForConfidentialTransferFeeInstructionData;
programAddress: Address<TProgram>;
};Type Parameters
| Type Parameter | Default type |
|---|---|
TProgram extends string | typeof TOKEN_2022_PROGRAM_ADDRESS |
TAccountMetas extends readonly AccountMeta[] | readonly AccountMeta[] |
Properties
accounts
accounts: {
authority: TAccountMetas[4];
destination: TAccountMetas[1];
instructionsSysvarOrContextState: TAccountMetas[2];
mint: TAccountMetas[0];
record?: TAccountMetas[3];
};| Name | Type | Description |
|---|---|---|
authority | TAccountMetas[4] | The mint's withdraw_withheld_authority |
destination | TAccountMetas[1] | The fee receiver account. |
instructionsSysvarOrContextState | TAccountMetas[2] | Instructions sysvar or context state account |
mint | TAccountMetas[0] | The token mint. |
record? | TAccountMetas[3] | Optional record account if proof is read from record |
data
data: WithdrawWithheldTokensFromMintForConfidentialTransferFeeInstructionData;programAddress
programAddress: Address<TProgram>;