bounce-sdk-beta
Version:
Bounce finance quick building applications
6 lines (5 loc) • 340 B
TypeScript
import { ethers } from 'ethers';
import { PoolType, SupportChain } from "../types";
declare const generateUniversalErc20Contract: (tokenAddress: string) => ethers.Contract;
declare const getBouncePoolContract: (poolType: PoolType, chainId: SupportChain) => ethers.Contract;
export { generateUniversalErc20Contract, getBouncePoolContract };