UNPKG

@web3auth/modal

Version:

Multi chain wallet aggregator for web3Auth

15 lines (12 loc) 318 B
import { createConfig, http } from 'wagmi'; import { mainnet } from 'wagmi/chains'; const defaultWagmiConfig = createConfig({ chains: [mainnet], connectors: [], // or your basic wallets ssr: true, transports: { [mainnet.id]: http(mainnet.rpcUrls.default.http[0]) } }); export { defaultWagmiConfig };