/** * 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'; import { UpdateMintManagerIx } from '../types/UpdateMintManagerIx'; /** * @category Instructions * @category UpdateMintManager * @category generated */ export declare type UpdateMintManagerInstructionArgs = { updateMintManagerIx: UpdateMintManagerIx; }; /** * @category Instructions * @category UpdateMintManager * @category generated */ export declare const UpdateMintManagerStruct: beet.BeetArgsStruct; /** * Accounts required by the _UpdateMintManager_ instruction * * @property [_writable_] mintManager * @property [] ruleset * @property [**signer**] authority * @property [_writable_, **signer**] payer * @category Instructions * @category UpdateMintManager * @category generated */ export declare type UpdateMintManagerInstructionAccounts = { mintManager: web3.PublicKey; ruleset: web3.PublicKey; authority: web3.PublicKey; payer: web3.PublicKey; systemProgram?: web3.PublicKey; }; export declare const updateMintManagerInstructionDiscriminator = 4; /** * Creates a _UpdateMintManager_ instruction. * * @param accounts that will be accessed while the instruction is processed * @param args to provide as instruction data to the program * * @category Instructions * @category UpdateMintManager * @category generated */ export declare function createUpdateMintManagerInstruction(accounts: UpdateMintManagerInstructionAccounts, args: UpdateMintManagerInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction; //# sourceMappingURL=UpdateMintManager.d.ts.map