UNPKG

@syncswap/sdk

Version:

SyncSwap TypeScript SDK for building DeFi applications

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