UNPKG

@etherspot/prime-sdk

Version:

Etherspot Prime (Account Abstraction) SDK

18 lines (17 loc) 378 B
import { NetworkNames } from './constants'; export interface Network { name: NetworkNames; chainId: number; } export interface NetworkConfig { chainId: number; bundler: string; contracts: { entryPoint: string; walletFactory: { etherspot: string; zeroDev: string; simpleAccount: string; }; }; }