Skip to content

Commit e6c83df

Browse files
authored
Merge branch 'main' into mnn/no-const-enum
2 parents d47e0a4 + 574f180 commit e6c83df

File tree

15 files changed

+330
-13
lines changed

15 files changed

+330
-13
lines changed

.changeset/lazy-spoons-search.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@thirdweb-dev/sdk": patch
3+
---
4+
5+
Fix joinABI filtering

packages/chains/chains/123420111.ts

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import type { Chain } from "../src/types";
2+
export default {
3+
"chain": "ETH",
4+
"chainId": 123420111,
5+
"explorers": [],
6+
"faucets": [],
7+
"features": [],
8+
"icon": {
9+
"url": "ipfs://QmQXw4QEDR4AbUwX9scH7aGhiSDhQRxu6LCQoUkgsYgGyK/Gelato%20brand%20mark.png",
10+
"width": 300,
11+
"height": 300,
12+
"format": "png"
13+
},
14+
"infoURL": "https://raas.gelato.network/rollups/details/public/op-celestia-testnet",
15+
"name": "Gelato OP Celestia",
16+
"nativeCurrency": {
17+
"name": "Ether",
18+
"symbol": "ETH",
19+
"decimals": 18
20+
},
21+
"networkId": 123420111,
22+
"redFlags": [],
23+
"rpc": [],
24+
"shortName": "opcelestia",
25+
"slug": "gelato-op-celestia",
26+
"testnet": true,
27+
"title": "Gelato OP Celestia Testnet"
28+
} as const satisfies Chain;

packages/chains/chains/12611.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ export default {
44
"chainId": 12611,
55
"explorers": [],
66
"faucets": [],
7+
"features": [],
78
"icon": {
89
"url": "ipfs://QmRySLe3su59dE5x5JPm2b1GeZfz6DR9qUzcbp3rt4SD3A",
910
"width": 300,
1011
"height": 300,
1112
"format": "png"
1213
},
1314
"infoURL": "https://astar.network",
14-
"name": "Astar zkEVM",
15+
"name": "Astar zkEVM (deprecated)",
1516
"nativeCurrency": {
1617
"name": "Ether",
1718
"symbol": "ETH",
@@ -23,9 +24,10 @@ export default {
2324
"chain": "eip155-1",
2425
"bridges": []
2526
},
27+
"redFlags": [],
2628
"rpc": [],
2729
"shortName": "astrzk",
28-
"slug": "astar-zkevm",
30+
"slug": "astar-zkevm-deprecated",
2931
"status": "incubating",
3032
"testnet": false,
3133
"title": "Astar zkEVM Mainnet"

packages/chains/chains/23444.ts

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import type { Chain } from "../src/types";
2+
export default {
3+
"chain": "Avalanche",
4+
"chainId": 23444,
5+
"explorers": [],
6+
"faucets": [],
7+
"features": [],
8+
"icon": {
9+
"url": "https://images.ctfassets.net/9bazykntljf6/62CceHSYsRS4D9fgDSkLRB/877cb8f26954e1743ff535fd7fdaf78f/avacloud-placeholder.svg",
10+
"width": 256,
11+
"height": 256,
12+
"format": "svg"
13+
},
14+
"infoURL": "https://avacloud.io",
15+
"name": "QI M 2402272",
16+
"nativeCurrency": {
17+
"name": "QI M 2402272 Token",
18+
"symbol": "OVU",
19+
"decimals": 18
20+
},
21+
"networkId": 23444,
22+
"redFlags": [],
23+
"rpc": [
24+
"https://23444.rpc.thirdweb.com/${THIRDWEB_API_KEY}",
25+
"https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc"
26+
],
27+
"shortName": "QI M 2402272",
28+
"slug": "qi-m-2402272",
29+
"testnet": true
30+
} as const satisfies Chain;

packages/chains/chains/24347.ts

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import type { Chain } from "../src/types";
2+
export default {
3+
"chain": "Avalanche",
4+
"chainId": 24347,
5+
"explorers": [],
6+
"faucets": [],
7+
"features": [],
8+
"icon": {
9+
"url": "https://images.ctfassets.net/9bazykntljf6/62CceHSYsRS4D9fgDSkLRB/877cb8f26954e1743ff535fd7fdaf78f/avacloud-placeholder.svg",
10+
"width": 256,
11+
"height": 256,
12+
"format": "svg"
13+
},
14+
"infoURL": "https://avacloud.io",
15+
"name": "Tnet 02-27",
16+
"nativeCurrency": {
17+
"name": "Tnet 02-27 Token",
18+
"symbol": "TJO",
19+
"decimals": 18
20+
},
21+
"networkId": 24347,
22+
"redFlags": [],
23+
"rpc": [
24+
"https://24347.rpc.thirdweb.com/${THIRDWEB_API_KEY}",
25+
"https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc"
26+
],
27+
"shortName": "Tnet 02-27",
28+
"slug": "tnet-02-27",
29+
"testnet": true
30+
} as const satisfies Chain;

packages/chains/chains/3776.ts

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
import type { Chain } from "../src/types";
2+
export default {
3+
"chain": "ETH",
4+
"chainId": 3776,
5+
"explorers": [
6+
{
7+
"name": "blockscout",
8+
"url": "https://astar-zkevm.explorer.startale.com/",
9+
"standard": "EIP3091"
10+
}
11+
],
12+
"faucets": [],
13+
"features": [],
14+
"icon": {
15+
"url": "ipfs://QmRySLe3su59dE5x5JPm2b1GeZfz6DR9qUzcbp3rt4SD3A",
16+
"width": 300,
17+
"height": 300,
18+
"format": "png"
19+
},
20+
"infoURL": "https://astar.network",
21+
"name": "Astar zkEVM",
22+
"nativeCurrency": {
23+
"name": "Ether",
24+
"symbol": "ETH",
25+
"decimals": 18
26+
},
27+
"networkId": 3776,
28+
"parent": {
29+
"type": "L2",
30+
"chain": "eip155-1",
31+
"bridges": [
32+
{
33+
"url": "https://bridge.gelato.network/bridge/astar-zkevm"
34+
}
35+
]
36+
},
37+
"redFlags": [],
38+
"rpc": [],
39+
"shortName": "astarzk",
40+
"slug": "astar-zkevm",
41+
"testnet": false,
42+
"title": "Astar zkEVM Mainnet"
43+
} as const satisfies Chain;

packages/chains/chains/3993.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default {
3737
},
3838
"rpc": [
3939
"https://3993.rpc.thirdweb.com/${THIRDWEB_API_KEY}",
40-
"https://exp-testnet.apexlayer.xyz"
40+
"https://rpc-testnet.apexlayer.xyz"
4141
],
4242
"shortName": "apexsep",
4343
"slip44": 1,

packages/chains/chains/65010001.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,10 @@ export default {
2626
"decimals": 18
2727
},
2828
"networkId": 65010001,
29-
"rpc": [
30-
"https://65010001.rpc.thirdweb.com/${THIRDWEB_API_KEY}",
31-
"https://rpc1.bakerloo.autonity.org/",
32-
"wss://rpc1.bakerloo.autonity.org/ws/"
33-
],
29+
"rpc": [],
3430
"shortName": "bakerloo-01",
3531
"slip44": 1,
3632
"slug": "autonity-bakerloo-barada-testnet",
33+
"status": "deprecated",
3734
"testnet": true
3835
} as const satisfies Chain;

packages/chains/chains/65010002.ts

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
import type { Chain } from "../src/types";
2+
export default {
3+
"chain": "AUT",
4+
"chainId": 65010002,
5+
"explorers": [
6+
{
7+
"name": "autonity-blockscout",
8+
"url": "https://bakerloo.autonity.org",
9+
"standard": "EIP3091"
10+
}
11+
],
12+
"faucets": [
13+
"https://faucet.autonity.org/"
14+
],
15+
"icon": {
16+
"url": "ipfs://Qme5nxFZZoNNpiT8u9WwcBot4HyLTg2jxMxRnsbc5voQwB",
17+
"width": 1000,
18+
"height": 1000,
19+
"format": "png"
20+
},
21+
"infoURL": "https://autonity.org/",
22+
"name": "Autonity Bakerloo (Sumida) Testnet",
23+
"nativeCurrency": {
24+
"name": "Bakerloo Auton",
25+
"symbol": "ATN",
26+
"decimals": 18
27+
},
28+
"networkId": 65010002,
29+
"rpc": [
30+
"https://65010002.rpc.thirdweb.com/${THIRDWEB_API_KEY}",
31+
"https://rpc1.bakerloo.autonity.org/",
32+
"wss://rpc1.bakerloo.autonity.org/ws/"
33+
],
34+
"shortName": "bakerloo-02",
35+
"slip44": 1,
36+
"slug": "autonity-bakerloo-sumida-testnet",
37+
"testnet": true
38+
} as const satisfies Chain;

packages/chains/chains/88153591557.ts

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
import type { Chain } from "../src/types";
2+
export default {
3+
"chain": "ETH",
4+
"chainId": 88153591557,
5+
"explorers": [
6+
{
7+
"name": "blockscout",
8+
"url": "https://gelato-orbit-anytrust-testnet.blockscout.com/",
9+
"standard": "EIP3091",
10+
"icon": {
11+
"url": "ipfs://QmQXw4QEDR4AbUwX9scH7aGhiSDhQRxu6LCQoUkgsYgGyK/Gelato%20brand%20mark.png",
12+
"width": 300,
13+
"height": 300,
14+
"format": "png"
15+
}
16+
}
17+
],
18+
"faucets": [],
19+
"features": [],
20+
"icon": {
21+
"url": "ipfs://QmQXw4QEDR4AbUwX9scH7aGhiSDhQRxu6LCQoUkgsYgGyK/Gelato%20brand%20mark.png",
22+
"width": 300,
23+
"height": 300,
24+
"format": "png"
25+
},
26+
"infoURL": "https://raas.gelato.network/rollups/details/public/gelato-orbit-anytrust-testnet",
27+
"name": "Gelato Orbit Anytrust",
28+
"nativeCurrency": {
29+
"name": "Ether",
30+
"symbol": "ETH",
31+
"decimals": 18
32+
},
33+
"networkId": 88153591557,
34+
"redFlags": [],
35+
"rpc": [
36+
"https://88153591557.rpc.thirdweb.com/${THIRDWEB_API_KEY}",
37+
"https://rpc.gelato-orbit-anytrust-testnet.gelato.digital"
38+
],
39+
"shortName": "orbitanytrust",
40+
"slug": "gelato-orbit-anytrust",
41+
"testnet": true,
42+
"title": "Gelato Orbit Anytrust Testnet"
43+
} as const satisfies Chain;

0 commit comments

Comments
 (0)