Skip to content

Commit 48c1d60

Browse files
chore(chains): update chains (#2702)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Jonas Daniels <jonas.daniels@outlook.com>
1 parent 584d68e commit 48c1d60

File tree

8 files changed

+108
-13
lines changed

8 files changed

+108
-13
lines changed

.changeset/sync-chains.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@thirdweb-dev/chains": patch
3+
---
4+
5+
Synced Chains Package

legacy_packages/chains/chains/1687.ts

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
import type { Chain } from "../src/types";
2+
export default {
3+
"chain": "ETH",
4+
"chainId": 1687,
5+
"explorers": [
6+
{
7+
"name": "blockscout",
8+
"url": "https://sepolia-testnet-explorer.mintchain.io",
9+
"standard": "EIP3091",
10+
"icon": {
11+
"url": "ipfs://QmQsYisbKkCTKoKG2YSVs94UGuWWMiBspirH4Af4FyZeZz",
12+
"width": 80,
13+
"height": 80,
14+
"format": "png"
15+
}
16+
}
17+
],
18+
"faucets": [],
19+
"icon": {
20+
"url": "ipfs://QmQsYisbKkCTKoKG2YSVs94UGuWWMiBspirH4Af4FyZeZz",
21+
"width": 80,
22+
"height": 80,
23+
"format": "png"
24+
},
25+
"infoURL": "https://www.mintchain.io",
26+
"name": "Mint Sepolia Testnet",
27+
"nativeCurrency": {
28+
"name": "Sepolia Ether",
29+
"symbol": "ETH",
30+
"decimals": 18
31+
},
32+
"networkId": 1687,
33+
"parent": {
34+
"type": "L2",
35+
"chain": "eip155-1",
36+
"bridges": [
37+
{
38+
"url": "https://sepolia-testnet-bridge.mintchain.io"
39+
}
40+
]
41+
},
42+
"rpc": [
43+
"https://1687.rpc.thirdweb.com/${THIRDWEB_API_KEY}",
44+
"https://sepolia-testnet-rpc.mintchain.io"
45+
],
46+
"shortName": "mintsepoliatest",
47+
"slug": "mint-sepolia-testnet",
48+
"testnet": true
49+
} as const satisfies Chain;

legacy_packages/chains/chains/18889.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
"explorers": [
66
{
77
"name": "Titan Explorer",
8-
"url": "https://titan-testnet-explorer-light.tokenize-dev.com",
8+
"url": "https://titan-testnet-explorer-light.titanlab.io/Titan%20Testnet",
99
"standard": "none",
1010
"icon": {
1111
"url": "ipfs://bafkreicyvc7t55zsejv6vwaxbmhvea5vdfkkbgqkmn65rhyyifpg3mq3ua",
@@ -22,7 +22,7 @@ export default {
2222
"height": 512,
2323
"format": "png"
2424
},
25-
"infoURL": "https://tokenize.exchange",
25+
"infoURL": "https://titanlab.io",
2626
"name": "Titan (TKX) Testnet",
2727
"nativeCurrency": {
2828
"name": "Titan tkx",
@@ -32,8 +32,9 @@ export default {
3232
"networkId": 18889,
3333
"rpc": [
3434
"https://18889.rpc.thirdweb.com/${THIRDWEB_API_KEY}",
35-
"https://titan-testnet-json-rpc-1.tokenize-dev.com",
36-
"https://titan-testnet-json-rpc-2.tokenize-dev.com"
35+
"https://titan-testnet-json-rpc.titanlab.io",
36+
"https://titan-testnet-json-rpc-1.titanlab.io",
37+
"https://titan-testnet-json-rpc-2.titanlab.io"
3738
],
3839
"shortName": "titan_tkx-testnet",
3940
"slip44": 1,

legacy_packages/chains/chains/2031.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,14 @@ export default {
3939
},
4040
"networkId": 2031,
4141
"rpc": [
42-
"wss://fullnode.parachain.centrifuge.io",
42+
"https://2031.rpc.thirdweb.com/${THIRDWEB_API_KEY}",
43+
"https://fullnode.centrifuge.io",
44+
"wss://fullnode.centrifuge.io",
45+
"https://centrifuge-parachain.api.onfinality.io/public",
4346
"wss://centrifuge-parachain.api.onfinality.io/public-ws",
47+
"https://centrifuge-rpc.dwellir.com",
4448
"wss://centrifuge-rpc.dwellir.com",
49+
"https://rpc-centrifuge.luckyfriday.io",
4550
"wss://rpc-centrifuge.luckyfriday.io"
4651
],
4752
"shortName": "cfg",

legacy_packages/chains/chains/7001.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ export default {
3939
"networkId": 7001,
4040
"rpc": [
4141
"https://7001.rpc.thirdweb.com/${THIRDWEB_API_KEY}",
42-
"https://rpc.ankr.com/zetachain_evm_athens_testnet"
42+
"https://zetachain-athens-evm.blockpi.network/v1/rpc/public",
43+
"wss://zetachain-athens.blockpi.network/rpc/v1/public/websocket",
44+
"https://zetachain-testnet-archive.allthatnode.com:8545"
4345
],
4446
"shortName": "zetachain-athens",
4547
"slip44": 1,
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import type { Chain } from "../src/types";
2+
export default {
3+
"chain": "PTCE",
4+
"chainId": 889910245,
5+
"explorers": [
6+
{
7+
"name": "PTCESCAN Testnet Explorer",
8+
"url": "https://explorer-testnet.ptcscan.io",
9+
"standard": "EIP3091"
10+
}
11+
],
12+
"faucets": [
13+
"https://faucet.ptcscan.io/"
14+
],
15+
"infoURL": "https://ptcscan.io",
16+
"name": "PTCESCAN Testnet",
17+
"nativeCurrency": {
18+
"name": "PTCE",
19+
"symbol": "PTCE",
20+
"decimals": 18
21+
},
22+
"networkId": 889910245,
23+
"rpc": [
24+
"https://889910245.rpc.thirdweb.com/${THIRDWEB_API_KEY}",
25+
"https://rpc-testnet.ptcscan.io"
26+
],
27+
"shortName": "PTCE",
28+
"slug": "ptcescan-testnet",
29+
"testnet": true,
30+
"title": "PTCESCAN Testnet"
31+
} as const satisfies Chain;

legacy_packages/chains/chains/9012.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,6 @@ export default {
1212
"faucets": [
1313
"https://t.me/BerylBit"
1414
],
15-
"icon": {
16-
"url": "ipfs://QmeDXHkpranzqGN1BmQqZSrFp4vGXf4JfaB5iq8WHHiwDi",
17-
"width": 162,
18-
"height": 162,
19-
"format": "png"
20-
},
2115
"infoURL": "https://www.beryl-bit.com",
2216
"name": "BerylBit Mainnet",
2317
"nativeCurrency": {

legacy_packages/chains/src/index.ts

Lines changed: 9 additions & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)