UNPKG

@phiresky/eth-scan

Version:

An efficient Ether and token balance scanner

10 lines 376 B
import type { Provider } from '../types'; export interface EthersProviderLike { send<Result>(method: string, params: unknown[] | unknown): Promise<Result>; } /** * Ethers.js provider, which can be used with an instance of the Ethers.js Provider class. */ declare const provider: Provider<EthersProviderLike>; export default provider; //# sourceMappingURL=ethers.d.ts.map