Skip to content

Commit e0c8312

Browse files
authored
add arc testnet to chains package (#8325)
1 parent a82a31e commit e0c8312

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

.changeset/hip-spoons-go.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"thirdweb": patch
3+
---
4+
5+
Add Arc testnet to chains package
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { defineChain } from "../utils.js";
2+
3+
/**
4+
* @chain
5+
*/
6+
export const arcTestnet = /* @__PURE__ */ defineChain({
7+
blockExplorers: [
8+
{
9+
name: "Arc Testnet Explorer",
10+
url: "https://testnet.arcscan.app",
11+
},
12+
],
13+
id: 5042002,
14+
name: "Arc Testnet",
15+
nativeCurrency: { decimals: 6, name: "USDC", symbol: "USDC" },
16+
testnet: true,
17+
});

packages/thirdweb/src/exports/chains.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export { anvil } from "../chains/chain-definitions/anvil.js";
1010
export { arbitrum } from "../chains/chain-definitions/arbitrum.js";
1111
export { arbitrumNova } from "../chains/chain-definitions/arbitrum-nova.js";
1212
export { arbitrumSepolia } from "../chains/chain-definitions/arbitrum-sepolia.js";
13+
export { arcTestnet } from "../chains/chain-definitions/arc-testnet.js";
1314
export { assetChainTestnet } from "../chains/chain-definitions/assetchain-testnet.js";
1415
export { astriaEvmDusknet } from "../chains/chain-definitions/astria-evm-dusknet.js";
1516
export { avalanche } from "../chains/chain-definitions/avalanche.js";

0 commit comments

Comments
 (0)