UNPKG

@phiresky/eth-scan

Version:

An efficient Ether and token balance scanner

10 lines 367 B
import type { JsonRpcPayload, Provider } from '../types'; export interface EIP1193ProviderLike { request<Result>(transaction: JsonRpcPayload): Promise<Result>; } /** * EIP-1193 provider, which can be used with the `window.ethereum` object. */ declare const provider: Provider<EIP1193ProviderLike>; export default provider; //# sourceMappingURL=eip-1193.d.ts.map