import { Program } from "@project-serum/anchor"; import { PublicKey, TransactionInstruction } from "@solana/web3.js"; import { EuroPrimitive, MarketLoaderOpts } from ".."; /** * Create a proxied InitOpenOrdersInstruction * * @param program - Anchor Psy Tokenized Euros program * @param owner - The user's wallet address * @param euroMetaKey - The address of the EuroMeta account * @param optionMintKey - The address of the option mint that is trading * @param dexProgramId - Serum DEX id * @param priceCurrencyKey - The address for the price currency of the serum market * @param marketLoaderOpts - options for the permissioned market loader * @returns */ export declare const initOpenOrdersInstruction: (program: Program, owner: PublicKey, euroMetaKey: PublicKey, optionMintKey: PublicKey, dexProgramId: PublicKey, priceCurrencyKey: PublicKey, marketLoaderOpts?: MarketLoaderOpts) => Promise<{ ix: TransactionInstruction; }>; //# sourceMappingURL=initOpenOrders.d.ts.map