/** * 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 { CompressedArgs } from '../types/CompressedArgs'; /** * @category Instructions * @category BotLiquidateCompressed * @category generated */ export type BotLiquidateCompressedInstructionArgs = { collectionId: number; compressedArgs: CompressedArgs; }; /** * @category Instructions * @category BotLiquidateCompressed * @category generated */ export declare const botLiquidateCompressedStruct: beet.BeetArgsStruct; /** * Accounts required by the _botLiquidateCompressed_ instruction * * @property [_writable_, **signer**] signer * @property [_writable_] collection * @property [_writable_] borrower * @property [_writable_] borrowerStats * @property [_writable_] loan * @property [_writable_] lender * @property [_writable_] pool * @property [_writable_] authority * @property [] treeAuthority * @property [_writable_] merkleTree * @property [] logWrapper * @property [] compressionProgram * @property [] bubblegumProgram * @category Instructions * @category BotLiquidateCompressed * @category generated */ export type BotLiquidateCompressedInstructionAccounts = { signer: web3.PublicKey; collection: web3.PublicKey; borrower: web3.PublicKey; borrowerStats: web3.PublicKey; loan: web3.PublicKey; lender: web3.PublicKey; pool: web3.PublicKey; authority: web3.PublicKey; treeAuthority: web3.PublicKey; merkleTree: web3.PublicKey; systemProgram?: web3.PublicKey; tokenProgram?: web3.PublicKey; logWrapper: web3.PublicKey; compressionProgram: web3.PublicKey; bubblegumProgram: web3.PublicKey; rent?: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const botLiquidateCompressedInstructionDiscriminator: number[]; /** * Creates a _BotLiquidateCompressed_ 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 BotLiquidateCompressed * @category generated */ export declare function createBotLiquidateCompressedInstruction(accounts: BotLiquidateCompressedInstructionAccounts, args: BotLiquidateCompressedInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction;