We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f5a0e46 + e9d5a7e commit ffb6c46Copy full SHA for ffb6c46
1 file changed
src/constants/networks/networks.ts
@@ -15,7 +15,17 @@ export enum NETWORKS {
15
'aurora' = 'aurora'
16
}
17
18
-const networks = [
+export type NetworkType = {
19
+ id: string
20
+ chainId: number
21
+ rpc: string
22
+ nativeAssetSymbol: string
23
+ name: string
24
+ explorerUrl: string
25
+ unstoppableDomainsChain: string
26
+}
27
+
28
+const networks: NetworkType[] = [
29
{
30
id: NETWORKS.ethereum,
31
chainId: 1,
0 commit comments