/** * This code was AUTOGENERATED using the Codama library. * Please DO NOT EDIT THIS FILE, instead use visitors * to add features, then rerun Codama to update it. * * @see https://github.com/codama-idl/codama */ import type { Address, FixedSizeCodec, FixedSizeDecoder, FixedSizeEncoder } from "@solana/kit"; export interface LiquidityIncreased { whirlpool: Address; position: Address; tickLowerIndex: number; tickUpperIndex: number; liquidity: bigint; tokenAAmount: bigint; tokenBAmount: bigint; tokenATransferFee: bigint; tokenBTransferFee: bigint; } export interface LiquidityIncreasedArgs { whirlpool: Address; position: Address; tickLowerIndex: number; tickUpperIndex: number; liquidity: number | bigint; tokenAAmount: number | bigint; tokenBAmount: number | bigint; tokenATransferFee: number | bigint; tokenBTransferFee: number | bigint; } export declare function getLiquidityIncreasedEncoder(): FixedSizeEncoder; export declare function getLiquidityIncreasedDecoder(): FixedSizeDecoder; export declare function getLiquidityIncreasedCodec(): FixedSizeCodec; //# sourceMappingURL=liquidityIncreased.d.ts.map