import { AddLiquidityParameters, AddLiquidityParametersArgs } from "./addLiquidityParameters.js"; import "./index.js"; import { Address, FixedSizeCodec, FixedSizeDecoder, FixedSizeEncoder } from "@solana/kit"; //#region src/generated/types/evtAddLiquidity.d.ts type EvtAddLiquidity = { pool: Address; position: Address; owner: Address; params: AddLiquidityParameters; tokenAAmount: bigint; tokenBAmount: bigint; totalAmountA: bigint; totalAmountB: bigint; }; type EvtAddLiquidityArgs = { pool: Address; position: Address; owner: Address; params: AddLiquidityParametersArgs; tokenAAmount: number | bigint; tokenBAmount: number | bigint; totalAmountA: number | bigint; totalAmountB: number | bigint; }; declare function getEvtAddLiquidityEncoder(): FixedSizeEncoder; declare function getEvtAddLiquidityDecoder(): FixedSizeDecoder; declare function getEvtAddLiquidityCodec(): FixedSizeCodec; //#endregion export { EvtAddLiquidity, EvtAddLiquidityArgs, getEvtAddLiquidityCodec, getEvtAddLiquidityDecoder, getEvtAddLiquidityEncoder }; //# sourceMappingURL=evtAddLiquidity.d.ts.map