UNPKG

@syncswap/sdk

Version:

SyncSwap TypeScript SDK for building DeFi applications

6 lines 313 B
import { Contract, ethers } from 'ethers'; import { ContractType } from "./contractTypes.js"; export default abstract class ContractLoader { static loadContract(provider: ethers.providers.Provider, contractType: ContractType, address: string): Promise<Contract>; } //# sourceMappingURL=contractLoader.d.ts.map