import { Program } from "@project-serum/anchor"; import { PublicKey } from "@solana/web3.js"; import { EuroPrimitive } from ".."; /** * Create instruction to close OpenOrders account. * * @param program - Anchor Psy Tokenized Euros program * @param euroMetaKey - The EuroMeta address * @param optionMintKey - The address for the option mint trading * @param dexProgramId - The Serum DEX program ID * @param openOrdersKey - The open orders key for the account we're closing * @param priceCurrencyKey - The key for the price currency mint * @param solWallet - OPTIONAL: pass in a different address to send the unlocked Sol to * @returns */ export declare const closeOpenOrdersInstruction: (program: Program, euroMetaKey: PublicKey, optionMintKey: PublicKey, dexProgramId: PublicKey, openOrdersKey: PublicKey, priceCurrencyKey: PublicKey, solWallet?: PublicKey) => Promise; //# sourceMappingURL=closeOpenOrders.d.ts.map