We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bedac13 commit eb2d469Copy full SHA for eb2d469
packages/thirdweb/src/chains/chain-definitions/assetchain-testnet.ts
@@ -0,0 +1,22 @@
1
+import { defineChain } from "../utils.js";
2
+
3
+/**
4
+ * @chain
5
+ */
6
+export const assetChainTestnet = /* @__PURE__ */ defineChain({
7
+ id: 42421,
8
+ name: "AssetChain Testnet",
9
+ nativeCurrency: {
10
+ name: "Real World Asset",
11
+ symbol: "RWA",
12
+ decimals: 18,
13
+ },
14
+ blockExplorers: [
15
+ {
16
+ name: "Asset Chain Testnet Explorer",
17
+ url: "https://scan-testnet.assetchain.org",
18
+ apiUrl: "https://scan-testnet.assetchain.org/api",
19
20
+ ],
21
+ testnet: true,
22
+});
0 commit comments