Skip to content

Commit

Permalink
fix: Zircuit Testnet explorer and RPC URLs (#2818)
Browse files Browse the repository at this point in the history
fix: update zircuit testnet explorer and rpcs
  • Loading branch information
GuillermoEscobero authored Oct 3, 2024
1 parent 7c3653b commit ce989d8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/sweet-crews-rhyme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"viem": patch
---

Fixed Zircuit Testnet explorer and RPC URLs.
10 changes: 7 additions & 3 deletions src/chains/definitions/zircuitTestnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,16 @@ export const zircuitTestnet = /*#__PURE__*/ defineChain({
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
rpcUrls: {
default: {
http: ['https://zircuit1.p2pify.com'],
http: [
'https://zircuit1-testnet.p2pify.com',
'https://zircuit1-testnet.liquify.com',
],
},
},
blockExplorers: {
default: {
name: 'Zircuit Explorer',
url: 'https://explorer.zircuit.com',
name: 'Zircuit Testnet Explorer',
url: 'https://explorer.testnet.zircuit.com',
},
},
contracts: {
Expand All @@ -21,4 +24,5 @@ export const zircuitTestnet = /*#__PURE__*/ defineChain({
blockCreated: 6040287,
},
},
testnet: true,
})

0 comments on commit ce989d8

Please sign in to comment.