Skip to content

Commit

Permalink
Fix linea-goerli, mantle RPC URLs (#69)
Browse files Browse the repository at this point in the history
* fix rpc of linea-testnet, mantle

* update package

* update chains.ts
  • Loading branch information
Ashar2shahid authored Aug 26, 2023
1 parent d71edbf commit e3d110f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions chains/linea-goerli-testnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
"id": "59140",
"symbol": "testETH",
"testnet": true,
"providerUrl": "https://goerli.lineascan.build/",
"providerUrl": "https://rpc.goerli.linea.build",
"explorer": {
"api": {
"url": "https://api-testnet.lineascan.build/api",
"key": {
"required": false
}
},
"browserUrl": "https://explorer.goerli.linea.build/"
"browserUrl": "https://goerli.lineascan.build/"
},
"blockTimeMs": 12099
}
2 changes: 1 addition & 1 deletion chains/mantle.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"id": "5000",
"symbol": "MNT",
"testnet": false,
"providerUrl": "https://rpc.testnet.mantle.xyz/",
"providerUrl": "https://rpc.mantle.xyz",
"explorer": {
"api": {
"url": "https://explorer.mantle.xyz/api",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@api3/chains",
"license": "MIT",
"version": "3.4.1",
"version": "3.4.2",
"author": "API3 DAO",
"private": false,
"main": "./dist/index.js",
Expand Down
6 changes: 3 additions & 3 deletions src/generated/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -345,10 +345,10 @@ export const CHAINS: Chain[] = [
id: '59140',
symbol: 'testETH',
testnet: true,
providerUrl: 'https://goerli.lineascan.build/',
providerUrl: 'https://rpc.goerli.linea.build',
explorer: {
api: { url: 'https://api-testnet.lineascan.build/api', key: { required: false } },
browserUrl: 'https://explorer.goerli.linea.build/',
browserUrl: 'https://goerli.lineascan.build/',
},
blockTimeMs: 12099,
},
Expand Down Expand Up @@ -384,7 +384,7 @@ export const CHAINS: Chain[] = [
id: '5000',
symbol: 'MNT',
testnet: false,
providerUrl: 'https://rpc.testnet.mantle.xyz/',
providerUrl: 'https://rpc.mantle.xyz',
explorer: {
api: { url: 'https://explorer.mantle.xyz/api', key: { required: false } },
browserUrl: 'https://explorer.mantle.xyz/',
Expand Down

0 comments on commit e3d110f

Please sign in to comment.