/** * 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 ByteInjection * @category generated */ export type ByteInjectionInstructionArgs = { position: number; bytes: Uint8Array; }; /** * @category Instructions * @category ByteInjection * @category generated */ export declare const byteInjectionStruct: beet.FixableBeetArgsStruct; /** * Accounts required by the _byteInjection_ instruction * * @property [**signer**] admin * @property [_writable_] account * @property [] rentSysvar * @category Instructions * @category ByteInjection * @category generated */ export type ByteInjectionInstructionAccounts = { admin: web3.PublicKey; account: web3.PublicKey; rentSysvar: web3.PublicKey; systemProgram?: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const byteInjectionInstructionDiscriminator: number[]; /** * Creates a _ByteInjection_ 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 ByteInjection * @category generated */ export declare function createByteInjectionInstruction(accounts: ByteInjectionInstructionAccounts, args: ByteInjectionInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction; //# sourceMappingURL=byteInjection.d.ts.map