/** * 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 SetInUseBy * @category generated */ export declare const SetInUseByStruct: beet.BeetArgsStruct<{ instructionDiscriminator: number; }>; /** * Accounts required by the _SetInUseBy_ instruction * * @property [_writable_] mintManager * @property [] ruleset * @property [] inUseByAddress * @property [**signer**] holder * @property [] holderTokenAccount * @category Instructions * @category SetInUseBy * @category generated */ export declare type SetInUseByInstructionAccounts = { mintManager: web3.PublicKey; ruleset: web3.PublicKey; inUseByAddress: web3.PublicKey; holder: web3.PublicKey; holderTokenAccount: web3.PublicKey; }; export declare const setInUseByInstructionDiscriminator = 5; /** * Creates a _SetInUseBy_ instruction. * * @param accounts that will be accessed while the instruction is processed * @category Instructions * @category SetInUseBy * @category generated */ export declare function createSetInUseByInstruction(accounts: SetInUseByInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction; //# sourceMappingURL=SetInUseBy.d.ts.map