UNPKG

@lens-protocol/react

Version:

Interacting with the Lens Protocol API using React.

9 lines (8 loc) 298 B
import { JsonRpcProvider } from '@ethersproject/providers'; import { ChainType } from '@lens-protocol/shared-kernel'; export type CreateProviderConfig = { chainType: ChainType; }; export interface IProviderFactory { createProvider(config: CreateProviderConfig): Promise<JsonRpcProvider>; }