UNPKG

web3agent-aof

Version:

AI Framework for Onchain Operations and DeFi Interactions

9 lines (8 loc) 252 B
import { ethers } from 'ethers'; export type BorrowParams = { asset: string; amount: string; poolAddress: string; interestRateMode?: number; }; export declare const borrow: (params: BorrowParams, wallet: ethers.Wallet) => Promise<any>;