Skip to content

Commit b3fca95

Browse files
chore(chains): update chains (#2668)
Co-authored-by: GitHub Action <action@github.com>
1 parent 2108af7 commit b3fca95

File tree

5 files changed

+142
-1
lines changed

5 files changed

+142
-1
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/1009.ts

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import type { Chain } from "../src/types";
2+
export default {
3+
"chain": "Jumbo",
4+
"chainId": 1009,
5+
"explorers": [
6+
{
7+
"name": "Jumboscan",
8+
"url": "https://jumboscan.jumbochain.org",
9+
"standard": "EIP3091"
10+
}
11+
],
12+
"faucets": [],
13+
"features": [
14+
{
15+
"name": "EIP155"
16+
}
17+
],
18+
"infoURL": "https://jumbochain.org",
19+
"name": "Jumbochain Mainnet",
20+
"nativeCurrency": {
21+
"name": "JNFTC",
22+
"symbol": "JNFTC",
23+
"decimals": 18
24+
},
25+
"networkId": 1009,
26+
"rpc": [
27+
"https://1009.rpc.thirdweb.com/${THIRDWEB_API_KEY}",
28+
"https://rpcpriv.jumbochain.org"
29+
],
30+
"shortName": "Jumboscan",
31+
"slip44": 1,
32+
"slug": "jumbochain",
33+
"testnet": false
34+
} as const satisfies Chain;

legacy_packages/chains/chains/5039.ts

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
import type { Chain } from "../src/types";
2+
export default {
3+
"chain": "ONIGIRI",
4+
"chainId": 5039,
5+
"explorers": [
6+
{
7+
"name": "ONIGIRI Explorer",
8+
"url": "https://subnets-test.avax.network/onigiri",
9+
"standard": "EIP3091"
10+
}
11+
],
12+
"faucets": [],
13+
"features": [
14+
{
15+
"name": "EIP155"
16+
},
17+
{
18+
"name": "EIP1559"
19+
}
20+
],
21+
"infoURL": "https://www.ongr.org/",
22+
"name": "ONIGIRI Test Subnet",
23+
"nativeCurrency": {
24+
"name": "ONIGIRI",
25+
"symbol": "ONGR",
26+
"decimals": 18
27+
},
28+
"networkId": 5039,
29+
"rpc": [
30+
"https://5039.rpc.thirdweb.com/${THIRDWEB_API_KEY}",
31+
"https://subnets.avax.network/onigiri/testnet/rpc"
32+
],
33+
"shortName": "onigiri",
34+
"slug": "onigiri-test-subnet",
35+
"testnet": true
36+
} as const satisfies Chain;
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
import type { Chain } from "../src/types";
2+
export default {
3+
"chain": "ETH",
4+
"chainId": 62049,
5+
"explorers": [
6+
{
7+
"name": "optopia-testnet-scan",
8+
"url": "https://scan-testnet.optopia.ai",
9+
"standard": "EIP3091",
10+
"icon": {
11+
"url": "ipfs://bafkreid3xv3zkuo2cygwt7vwm5c2aqjbyhy5qxn7xkc66ajhu2mjh2ybki",
12+
"width": 1000,
13+
"height": 1000,
14+
"format": "png"
15+
}
16+
}
17+
],
18+
"faucets": [],
19+
"features": [
20+
{
21+
"name": "EIP1559"
22+
}
23+
],
24+
"icon": {
25+
"url": "ipfs://bafkreid3xv3zkuo2cygwt7vwm5c2aqjbyhy5qxn7xkc66ajhu2mjh2ybki",
26+
"width": 1000,
27+
"height": 1000,
28+
"format": "png"
29+
},
30+
"infoURL": "https://optopia.ai",
31+
"name": "OPTOPIA Testnet",
32+
"nativeCurrency": {
33+
"name": "Ether",
34+
"symbol": "ETH",
35+
"decimals": 18
36+
},
37+
"networkId": 62049,
38+
"parent": {
39+
"type": "L2",
40+
"chain": "eip155-11155111",
41+
"bridges": [
42+
{
43+
"url": "https://bridge-testnet.optopia.ai"
44+
}
45+
]
46+
},
47+
"rpc": [
48+
"https://62049.rpc.thirdweb.com/${THIRDWEB_API_KEY}",
49+
"https://rpc-testnet.optopia.ai"
50+
],
51+
"shortName": "OPTOPIA-Testnet",
52+
"slug": "optopia-testnet",
53+
"testnet": true
54+
} as const satisfies Chain;

legacy_packages/chains/src/index.ts

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

0 commit comments

Comments
 (0)