UNPKG

web3agent-aof

Version:

AI Framework for Onchain Operations and DeFi Interactions

11 lines (10 loc) 306 B
import { ethers } from 'ethers'; export type AddLiquidityParams = { tokenA: string; tokenB: string; amountA: string; amountB: string; slippage: number; routerAddress: string; }; export declare const addLiquidity: (params: AddLiquidityParams, wallet: ethers.Wallet) => Promise<any>;