UNPKG

@kamino-finance/kliquidity-sdk

Version:

Typescript SDK for interacting with the Kamino Liquidity (kliquidity) protocol

16 lines 738 B
import { Address, IAccountMeta, IInstruction, TransactionSigner } from "@solana/kit"; export interface CreateAmmConfigArgs { index: number; tickSpacing: number; tradeFeeRate: number; protocolFeeRate: number; fundFeeRate: number; } export interface CreateAmmConfigAccounts { owner: TransactionSigner; ammConfig: Address; systemProgram: Address; } export declare const layout: import("buffer-layout").Layout<unknown>; export declare function createAmmConfig(args: CreateAmmConfigArgs, accounts: CreateAmmConfigAccounts, programAddress?: Address): IInstruction<string, readonly (IAccountMeta<string> | import("@solana/kit").IAccountLookupMeta<string, string>)[]>; //# sourceMappingURL=createAmmConfig.d.ts.map