diff --git a/.changeset/light-toes-relate.md b/.changeset/light-toes-relate.md new file mode 100644 index 00000000..ccc5a38e --- /dev/null +++ b/.changeset/light-toes-relate.md @@ -0,0 +1,5 @@ +--- +"@wagmi/chains": patch +--- + +Added Horizen EON. diff --git a/packages/chains/src/eon.ts b/packages/chains/src/eon.ts new file mode 100644 index 00000000..3f899a5b --- /dev/null +++ b/packages/chains/src/eon.ts @@ -0,0 +1,21 @@ +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 diff --git a/packages/chains/src/gobi.ts b/packages/chains/src/gobi.ts new file mode 100644 index 00000000..1bb931a8 --- /dev/null +++ b/packages/chains/src/gobi.ts @@ -0,0 +1,22 @@ +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