/** * This code was GENERATED using the solita package. * Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality. * * See: https://github.com/metaplex-foundation/solita */ import * as beet from '@metaplex-foundation/beet'; import * as web3 from '@solana/web3.js'; /** * @category Instructions * @category FixHolderAccount * @category generated */ export declare const fixHolderAccountStruct: beet.BeetArgsStruct<{ instructionDiscriminator: number[]; }>; /** * Accounts required by the _fixHolderAccount_ instruction * * @property [] currency * @property [_writable_] holderAccount * @property [_writable_] mint * @property [_writable_] tokenAccount * @property [**signer**] authority * @category Instructions * @category FixHolderAccount * @category generated */ export type FixHolderAccountInstructionAccounts = { currency: web3.PublicKey; holderAccount: web3.PublicKey; mint: web3.PublicKey; tokenAccount: web3.PublicKey; authority: web3.PublicKey; tokenProgram?: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const fixHolderAccountInstructionDiscriminator: number[]; /** * Creates a _FixHolderAccount_ instruction. * * @param accounts that will be accessed while the instruction is processed * @category Instructions * @category FixHolderAccount * @category generated */ export declare function createFixHolderAccountInstruction(accounts: FixHolderAccountInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction;