@sign-global/tokentable-core 1.9.0 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/index.d.mts +38 -0
- package/dist/index.d.ts +38 -0
- package/dist/index.js +12 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/constants/chain-config.ts +14 -8
package/dist/index.mjs
CHANGED
|
@@ -13,7 +13,8 @@ import {
|
|
|
13
13
|
berachainTestnet,
|
|
14
14
|
arbitrum,
|
|
15
15
|
sonic,
|
|
16
|
-
xLayer
|
|
16
|
+
xLayer,
|
|
17
|
+
megaethTestnet
|
|
17
18
|
} from "viem/chains";
|
|
18
19
|
|
|
19
20
|
// src/constants/network.ts
|
|
@@ -279,6 +280,10 @@ var ChainConfig = {
|
|
|
279
280
|
contractAddress: "0xeD09c23677D02f4f486E55f0f081cfc114EEa53b",
|
|
280
281
|
rpcUrl: "https://arb-mainnet.g.alchemy.com/v2/udrqNPSB6i5n5L6QSM31Ng72h_hFOrVT"
|
|
281
282
|
},
|
|
283
|
+
[megaethTestnet.id]: {
|
|
284
|
+
contractAddress: "0xa6A2d42E16a690E03bDe181319fDD085880F2605",
|
|
285
|
+
rpcUrl: megaethTestnet.rpcUrls.default.http[0]
|
|
286
|
+
},
|
|
282
287
|
[berachainTestnet.id]: {
|
|
283
288
|
contractAddress: "",
|
|
284
289
|
rpcUrl: "",
|
|
@@ -352,20 +357,21 @@ var SupportedChains = [
|
|
|
352
357
|
bsc,
|
|
353
358
|
base,
|
|
354
359
|
cyber,
|
|
360
|
+
zetachain,
|
|
361
|
+
arbitrum,
|
|
362
|
+
tonTestNet,
|
|
363
|
+
tonMainNet,
|
|
364
|
+
signBrBTestnet,
|
|
365
|
+
sonic,
|
|
366
|
+
xLayer,
|
|
355
367
|
sepolia,
|
|
356
368
|
baseSepolia,
|
|
357
|
-
zetachain,
|
|
358
369
|
zetachainAthensTestnet,
|
|
359
370
|
berachainTestnet,
|
|
360
371
|
polygonMumbai,
|
|
361
372
|
polygonAmoy,
|
|
362
373
|
mevmDevNet,
|
|
363
|
-
|
|
364
|
-
tonTestNet,
|
|
365
|
-
tonMainNet,
|
|
366
|
-
signBrBTestnet,
|
|
367
|
-
sonic,
|
|
368
|
-
xLayer
|
|
374
|
+
megaethTestnet
|
|
369
375
|
];
|
|
370
376
|
|
|
371
377
|
// src/constants/index.ts
|