UNPKG

web3agent-aof

Version:

AI Framework for Onchain Operations and DeFi Interactions

11 lines (10 loc) 289 B
export type AddLiquidityParams = { amount0: string; asset0Symbol: string; asset1Symbol: string; slippage?: number; }; export declare const addLiquidity: ({ amount0, asset0Symbol, asset1Symbol, slippage, }: AddLiquidityParams) => Promise<{ status: any; id: any; }>;