/** * 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 PoolInitialized { whirlpool: Address; whirlpoolsConfig: Address; tokenMintA: Address; tokenMintB: Address; tickSpacing: number; tokenProgramA: Address; tokenProgramB: Address; decimalsA: number; decimalsB: number; initialSqrtPrice: bigint; } export interface PoolInitializedArgs { whirlpool: Address; whirlpoolsConfig: Address; tokenMintA: Address; tokenMintB: Address; tickSpacing: number; tokenProgramA: Address; tokenProgramB: Address; decimalsA: number; decimalsB: number; initialSqrtPrice: number | bigint; } export declare function getPoolInitializedEncoder(): FixedSizeEncoder; export declare function getPoolInitializedDecoder(): FixedSizeDecoder; export declare function getPoolInitializedCodec(): FixedSizeCodec; //# sourceMappingURL=poolInitialized.d.ts.map