Skip to content

Commit cb0ef6a

Browse files
chore(chains): update chains (#2527)
Co-authored-by: GitHub Action <action@github.com>
1 parent c377290 commit cb0ef6a

File tree

5 files changed

+123
-2
lines changed

5 files changed

+123
-2
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

packages/chains/chains/102031.ts

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
import type { Chain } from "../src/types";
2+
export default {
3+
"chain": "CTC",
4+
"chainId": 102031,
5+
"explorers": [
6+
{
7+
"name": "blockscout",
8+
"url": "https://creditcoin-testnet.blockscout.com",
9+
"standard": "EIP3091",
10+
"icon": {
11+
"url": "ipfs://QmYtUimyqHkkFxYdbXXRbUqNg2VLPUg6Uu2C2nmFWowiZM",
12+
"width": 551,
13+
"height": 540,
14+
"format": "png"
15+
}
16+
}
17+
],
18+
"faucets": [],
19+
"features": [
20+
{
21+
"name": "EIP155"
22+
},
23+
{
24+
"name": "EIP1559"
25+
}
26+
],
27+
"icon": {
28+
"url": "ipfs://QmTfecECALDCy51zwVbXBSXb6TokqowCYzVLv65etahLxX",
29+
"width": 1024,
30+
"height": 1024,
31+
"format": "png"
32+
},
33+
"infoURL": "https://creditcoin.org",
34+
"name": "Creditcoin Testnet",
35+
"nativeCurrency": {
36+
"name": "Testnet CTC",
37+
"symbol": "tCTC",
38+
"decimals": 18
39+
},
40+
"networkId": 102031,
41+
"rpc": [
42+
"https://102031.rpc.thirdweb.com/${THIRDWEB_API_KEY}",
43+
"https://rpc.cc3-testnet.creditcoin.network"
44+
],
45+
"shortName": "ctctest",
46+
"slug": "creditcoin-testnet",
47+
"testnet": true
48+
} as const satisfies Chain;

packages/chains/chains/145.ts

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
import type { Chain } from "../src/types";
2+
export default {
3+
"chain": "SETH",
4+
"chainId": 145,
5+
"explorers": [
6+
{
7+
"name": "blockscout",
8+
"url": "https://explorer.soraai.bot",
9+
"standard": "EIP3091",
10+
"icon": {
11+
"url": "ipfs://QmYtUimyqHkkFxYdbXXRbUqNg2VLPUg6Uu2C2nmFWowiZM",
12+
"width": 551,
13+
"height": 540,
14+
"format": "png"
15+
}
16+
}
17+
],
18+
"faucets": [],
19+
"features": [
20+
{
21+
"name": "EIP155"
22+
},
23+
{
24+
"name": "EIP1559"
25+
}
26+
],
27+
"icon": {
28+
"url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt",
29+
"width": 1000,
30+
"height": 1628,
31+
"format": "png"
32+
},
33+
"infoURL": "https://soraai.bot",
34+
"name": "SoraAI Testnet",
35+
"nativeCurrency": {
36+
"name": "SoraETH",
37+
"symbol": "SETH",
38+
"decimals": 18
39+
},
40+
"networkId": 145,
41+
"parent": {
42+
"type": "L2",
43+
"chain": "eip155-1",
44+
"bridges": [
45+
{
46+
"url": "https://bridge.soraai.bot"
47+
}
48+
]
49+
},
50+
"rpc": [
51+
"https://145.rpc.thirdweb.com/${THIRDWEB_API_KEY}",
52+
"https://rpc-testnet.soraai.bot"
53+
],
54+
"shortName": "SETH",
55+
"slip44": 1,
56+
"slug": "soraai-testnet",
57+
"testnet": true
58+
} as const satisfies Chain;

packages/chains/chains/9025.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ export default {
3232
"networkId": 9025,
3333
"rpc": [
3434
"https://9025.rpc.thirdweb.com/${THIRDWEB_API_KEY}",
35-
"https://rpc-nodes.nexablockscan.io"
35+
"https://rpc-nodes.nexablockscan.io",
36+
"wss://wss-nodes.nexablockscan.io",
37+
"https://rpc-nodes-delta.nexablockscan.io"
3638
],
3739
"shortName": "Nexa",
3840
"slug": "nexa-block",

packages/chains/src/index.ts

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

0 commit comments

Comments
 (0)