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

Commit

Permalink
update zora chain details (#373)
Browse files Browse the repository at this point in the history
* update zora chain details

* rename explorer and add changeset

* fix formatting

* Update .changeset/orange-waves-shake.md

* Update packages/chains/src/zoraTestnet.ts

* Update packages/chains/src/zora.ts

---------

Co-authored-by: awkweb <[email protected]>
  • Loading branch information
jackiehluo and tmm authored Jun 29, 2023
1 parent f2d532d commit 3027d7b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 15 deletions.
5 changes: 5 additions & 0 deletions .changeset/orange-waves-shake.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@wagmi/chains": patch
---

Updated Zora chain URLs and names
13 changes: 6 additions & 7 deletions packages/chains/src/zora.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Chain } from './types'

export const zora = {
id: 7777777,
name: 'ZORA',
name: 'Zora',
network: 'zora',
nativeCurrency: {
decimals: 18,
Expand All @@ -11,17 +11,16 @@ export const zora = {
},
rpcUrls: {
default: {
http: ['https://rpc.zora.co'],
webSocket: ['wss://rpc.zora.co'],
http: ['https://rpc.zora.energy'],
webSocket: ['wss://rpc.zora.energy'],
},
public: {
http: ['https://rpc.zora.co'],
webSocket: ['wss://rpc.zora.co'],
http: ['https://rpc.zora.energy'],
webSocket: ['wss://rpc.zora.energy'],
},
},
blockExplorers: {
etherscan: { name: 'ZORA', url: 'https://explorer.zora.co' },
default: { name: 'ZORA', url: 'https://explorer.zora.co' },
default: { name: 'Explorer', url: 'https://explorer.zora.energy' },
},
contracts: {
multicall3: {
Expand Down
15 changes: 7 additions & 8 deletions packages/chains/src/zoraTestnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,25 @@ import { Chain } from './types'

export const zoraTestnet = {
id: 999,
name: 'ZORA Goerli Testnet',
name: 'Zora Goerli Testnet',
network: 'zora-testnet',
nativeCurrency: {
decimals: 18,
name: 'ZORA Goerli',
name: 'Zora Goerli',
symbol: 'ETH',
},
rpcUrls: {
default: {
http: ['https://testnet.rpc.zora.co'],
webSocket: ['wss://testnet.rpc.zora.co'],
http: ['https://testnet.rpc.zora.energy'],
webSocket: ['wss://testnet.rpc.zora.energy'],
},
public: {
http: ['https://testnet.rpc.zora.co'],
webSocket: ['wss://testnet.rpc.zora.co'],
http: ['https://testnet.rpc.zora.energy'],
webSocket: ['wss://testnet.rpc.zora.energy'],
},
},
blockExplorers: {
etherscan: { name: 'ZORA', url: 'https://testnet.explorer.zora.co' },
default: { name: 'ZORA', url: 'https://testnet.explorer.zora.co' },
default: { name: 'Explorer', url: 'https://testnet.explorer.zora.energy' },
},
contracts: {
multicall3: {
Expand Down

0 comments on commit 3027d7b

Please sign in to comment.