Skip to content

Commit

Permalink
chore: explorer update tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
xtools-at committed Nov 2, 2023
1 parent 75ae7a1 commit 91069ec
Show file tree
Hide file tree
Showing 6 changed files with 110 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/deploy-to-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
- "COPYING"
- "docs/**"
- ".vscode/**"
- "scripts/**"

jobs:
build-push:
Expand Down
3 changes: 3 additions & 0 deletions config/chainIds.json
Original file line number Diff line number Diff line change
Expand Up @@ -634,6 +634,9 @@
70001,
70103,
70002,
60001,
60103,
60002,
108,
18,
404040,
Expand Down
75 changes: 74 additions & 1 deletion config/chains.json
Original file line number Diff line number Diff line change
Expand Up @@ -10610,7 +10610,8 @@
{
"name": "Oasis Emerald Testnet Explorer",
"url": "https://testnet.explorer.emerald.oasis.dev",
"standard": "EIP3091"
"standard": "EIP3091",
"iframe": true
}
],
"shortName": "emerald-testnet"
Expand Down Expand Up @@ -15335,6 +15336,78 @@
],
"shortName": "TKM2"
},
{
"name": "Thinkium Testnet Chain 1",
"rpc": [
"https://test1.thinkiumrpc.net/"
],
"faucets": [
"https://www.thinkiumdev.net/faucet"
],
"nativeCurrency": {
"name": "TKM",
"symbol": "TKM",
"decimals": 18
},
"chainId": 60001,
"explorers": [
{
"name": "thinkiumscan",
"url": "https://test1.thinkiumscan.net",
"standard": "EIP3091",
"iframe": true
}
],
"shortName": "TKM-test1"
},
{
"name": "Thinkium Testnet Chain 103",
"rpc": [
"https://test103.thinkiumrpc.net/"
],
"faucets": [
"https://www.thinkiumdev.net/faucet"
],
"nativeCurrency": {
"name": "TKM",
"symbol": "TKM",
"decimals": 18
},
"chainId": 60103,
"explorers": [
{
"name": "thinkiumscan",
"url": "https://test103.thinkiumscan.net",
"standard": "EIP3091",
"iframe": true
}
],
"shortName": "TKM-test103"
},
{
"name": "Thinkium Testnet Chain 2",
"rpc": [
"https://test2.thinkiumrpc.net/"
],
"faucets": [
"https://www.thinkiumdev.net/faucet"
],
"nativeCurrency": {
"name": "TKM",
"symbol": "TKM",
"decimals": 18
},
"chainId": 60002,
"explorers": [
{
"name": "thinkiumscan",
"url": "https://test2.thinkiumscan.net",
"standard": "EIP3091",
"iframe": true
}
],
"shortName": "TKM-test2"
},
{
"name": "ThunderCore Mainnet",
"rpc": [
Expand Down
27 changes: 26 additions & 1 deletion config/explorers.json
Original file line number Diff line number Diff line change
Expand Up @@ -4413,7 +4413,8 @@
{
"name": "Oasis Emerald Testnet Explorer",
"url": "https://testnet.explorer.emerald.oasis.dev",
"standard": "EIP3091"
"standard": "EIP3091",
"iframe": true
}
],
"42262": [
Expand Down Expand Up @@ -4641,6 +4642,30 @@
"iframe": true
}
],
"60001": [
{
"name": "thinkiumscan",
"url": "https://test1.thinkiumscan.net",
"standard": "EIP3091",
"iframe": true
}
],
"60002": [
{
"name": "thinkiumscan",
"url": "https://test2.thinkiumscan.net",
"standard": "EIP3091",
"iframe": true
}
],
"60103": [
{
"name": "thinkiumscan",
"url": "https://test103.thinkiumscan.net",
"standard": "EIP3091",
"iframe": true
}
],
"61803": [
{
"name": "eticascan",
Expand Down
3 changes: 3 additions & 0 deletions config/rpcs.json
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,9 @@
"58008": "https://sepolia.publicgoods.network",
"59140": "https://rpc.goerli.linea.build",
"59144": "https://rpc.linea.build",
"60001": "https://test1.thinkiumrpc.net/",
"60002": "https://test2.thinkiumrpc.net/",
"60103": "https://test103.thinkiumrpc.net/",
"61803": "https://eticamainnet.eticascan.org",
"62621": "https://rpc.mtv.ac",
"63000": "https://rpc.ecredits.com",
Expand Down
6 changes: 3 additions & 3 deletions scripts/getExplorerInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ const path = require("path");
const config = require("../config/app");
const fetch = require("node-fetch");

const BATCH_SIZE = 25;
const BATCH_TIMEOUT = 10;
const CALL_TIMEOUT = 15;
const BATCH_SIZE = 35;
const BATCH_TIMEOUT = 8;
const CALL_TIMEOUT = 16;

const main = async () => {
const startTime = Date.now();
Expand Down

0 comments on commit 91069ec

Please sign in to comment.