Skip to content

Commit

Permalink
Merge pull request #439 from api3dao/438-update-block-explorer-urls-f…
Browse files Browse the repository at this point in the history
…or-zircuit-and-zircuit-sepolia-testnet-chains
  • Loading branch information
hiletmis authored Sep 13, 2024
2 parents 7ec6dbf + 087d9e7 commit 0d3de06
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .changeset/late-shirts-jog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@api3/chains': patch
---

Fix zircuit and zircuit-sepolia-testnet browserUrl
4 changes: 2 additions & 2 deletions chains/zircuit-sepolia-testnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"key": {
"required": true
},
"url": "https://explorer.zircuit.com/api/contractVerifyHardhat"
"url": "https://explorer.testnet.zircuit.com/api/contractVerifyHardhat"
},
"browserUrl": "https://explorer.zircuit.com/"
"browserUrl": "https://explorer.testnet.zircuit.com/"
},
"id": "48899",
"name": "Zircuit testnet",
Expand Down
8 changes: 7 additions & 1 deletion chains/zircuit.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@
"alias": "zircuit",
"decimals": 18,
"explorer": {
"browserUrl": "https://explorermainnet.zircuit.com/"
"api": {
"key": {
"required": true
},
"url": "https://explorer.zircuit.com/api/contractVerifyHardhat"
},
"browserUrl": "https://explorer.zircuit.com/"
},
"id": "48900",
"name": "Zircuit",
Expand Down
9 changes: 6 additions & 3 deletions src/generated/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1628,8 +1628,8 @@ export const CHAINS: Chain[] = [
alias: 'zircuit-sepolia-testnet',
decimals: 18,
explorer: {
api: { key: { required: true }, url: 'https://explorer.zircuit.com/api/contractVerifyHardhat' },
browserUrl: 'https://explorer.zircuit.com/',
api: { key: { required: true }, url: 'https://explorer.testnet.zircuit.com/api/contractVerifyHardhat' },
browserUrl: 'https://explorer.testnet.zircuit.com/',
},
id: '48899',
name: 'Zircuit testnet',
Expand All @@ -1640,7 +1640,10 @@ export const CHAINS: Chain[] = [
{
alias: 'zircuit',
decimals: 18,
explorer: { browserUrl: 'https://explorermainnet.zircuit.com/' },
explorer: {
api: { key: { required: true }, url: 'https://explorer.zircuit.com/api/contractVerifyHardhat' },
browserUrl: 'https://explorer.zircuit.com/',
},
id: '48900',
name: 'Zircuit',
providers: [
Expand Down

0 comments on commit 0d3de06

Please sign in to comment.