Skip to content

Commit

Permalink
Merge pull request #440 from api3dao/main
Browse files Browse the repository at this point in the history
Initiate release
  • Loading branch information
hiletmis authored Sep 13, 2024
2 parents 95eb315 + 0d3de06 commit 83e12b7
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 10 deletions.
5 changes: 5 additions & 0 deletions .changeset/fuzzy-foxes-serve.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@api3/chains': patch
---

Fix sonic-testnet rpcUrl and browserUrl
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/sonic-testnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
"alias": "sonic-testnet",
"decimals": 18,
"explorer": {
"browserUrl": "https://public-sonic.fantom.network/"
"browserUrl": "https://testnet.soniclabs.com/"
},
"id": "64165",
"name": "Sonic testnet",
"providers": [
{
"alias": "default",
"rpcUrl": "https://rpc.sonic.fantom.network"
"rpcUrl": "https://rpc.testnet.soniclabs.com"
}
],
"symbol": "S",
Expand Down
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
13 changes: 8 additions & 5 deletions src/generated/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1533,10 +1533,10 @@ export const CHAINS: Chain[] = [
{
alias: 'sonic-testnet',
decimals: 18,
explorer: { browserUrl: 'https://public-sonic.fantom.network/' },
explorer: { browserUrl: 'https://testnet.soniclabs.com/' },
id: '64165',
name: 'Sonic testnet',
providers: [{ alias: 'default', rpcUrl: 'https://rpc.sonic.fantom.network' }],
providers: [{ alias: 'default', rpcUrl: 'https://rpc.testnet.soniclabs.com' }],
symbol: 'S',
testnet: true,
},
Expand Down 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 83e12b7

Please sign in to comment.