/** * 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 { FixedSizeCodec, FixedSizeDecoder, FixedSizeEncoder } from "@solana/kit"; export interface Tick { initialized: boolean; liquidityNet: bigint; liquidityGross: bigint; feeGrowthOutsideA: bigint; feeGrowthOutsideB: bigint; rewardGrowthsOutside: bigint[]; } export interface TickArgs { initialized: boolean; liquidityNet: number | bigint; liquidityGross: number | bigint; feeGrowthOutsideA: number | bigint; feeGrowthOutsideB: number | bigint; rewardGrowthsOutside: Array; } export declare function getTickEncoder(): FixedSizeEncoder; export declare function getTickDecoder(): FixedSizeDecoder; export declare function getTickCodec(): FixedSizeCodec; //# sourceMappingURL=tick.d.ts.map