Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
jxom authored and wevm-bot committed Aug 9, 2023
1 parent 6794a61 commit 6eba41a
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 43 deletions.
44 changes: 23 additions & 21 deletions packages/chains/src/eon.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
import { Chain } from 'wagmi'

export const eon = {
id: 7_332,
name: 'Horizen EON',
network: 'eon',
nativeCurrency: {
decimals: 18,
name: 'ZEN',
symbol: 'ZEN',
},
rpcUrls: {
public: { http: ['https://eon-rpc.horizenlabs.io/ethv1'] },
default: { http: ['https://eon-rpc.horizenlabs.io/ethv1'] },
},
blockExplorers: {
default: { name: 'EON Explorer', url: 'https://eon-explorer.horizenlabs.io' },
},
contracts: {
},
} as const satisfies Chain
import { Chain } from 'wagmi'

export const eon = {
id: 7_332,
name: 'Horizen EON',
network: 'eon',
nativeCurrency: {
decimals: 18,
name: 'ZEN',
symbol: 'ZEN',
},
rpcUrls: {
public: { http: ['https://eon-rpc.horizenlabs.io/ethv1'] },
default: { http: ['https://eon-rpc.horizenlabs.io/ethv1'] },
},
blockExplorers: {
default: {
name: 'EON Explorer',
url: 'https://eon-explorer.horizenlabs.io',
},
},
contracts: {},
} as const satisfies Chain
43 changes: 21 additions & 22 deletions packages/chains/src/gobi.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
import { Chain } from 'wagmi'

export const gobi = {
id: 1_663,
name: 'Horizen Gobi Testnet',
network: 'gobi',
nativeCurrency: {
decimals: 18,
name: 'Test ZEN',
symbol: 'tZEN',
},
rpcUrls: {
public: { http: ['https://gobi-testnet.horizenlabs.io/ethv1'] },
default: { http: ['https://gobi-testnet.horizenlabs.io/ethv1'] },
},
blockExplorers: {
default: { name: 'Gobi Explorer', url: 'https://gobi-explorer.horizen.io' },
},
contracts: {
},
testnet: true,
} as const satisfies Chain
import { Chain } from 'wagmi'

export const gobi = {
id: 1_663,
name: 'Horizen Gobi Testnet',
network: 'gobi',
nativeCurrency: {
decimals: 18,
name: 'Test ZEN',
symbol: 'tZEN',
},
rpcUrls: {
public: { http: ['https://gobi-testnet.horizenlabs.io/ethv1'] },
default: { http: ['https://gobi-testnet.horizenlabs.io/ethv1'] },
},
blockExplorers: {
default: { name: 'Gobi Explorer', url: 'https://gobi-explorer.horizen.io' },
},
contracts: {},
testnet: true,
} as const satisfies Chain

0 comments on commit 6eba41a

Please sign in to comment.