@sign-global/tokentable-core 1.7.1 → 1.9.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 +12 -0
- package/dist/index.d.mts +257 -143
- package/dist/index.d.ts +257 -143
- package/dist/index.js +11 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/constants/chain-config.ts +14 -2
package/dist/index.mjs
CHANGED
|
@@ -11,7 +11,9 @@ import {
|
|
|
11
11
|
zetachainAthensTestnet,
|
|
12
12
|
bsc,
|
|
13
13
|
berachainTestnet,
|
|
14
|
-
arbitrum
|
|
14
|
+
arbitrum,
|
|
15
|
+
sonic,
|
|
16
|
+
xLayer
|
|
15
17
|
} from "viem/chains";
|
|
16
18
|
|
|
17
19
|
// src/constants/network.ts
|
|
@@ -301,6 +303,14 @@ var ChainConfig = {
|
|
|
301
303
|
// add default fee
|
|
302
304
|
rpcUrl: signBrBTestnet.rpcUrls.default.http[0]
|
|
303
305
|
},
|
|
306
|
+
[sonic.id]: {
|
|
307
|
+
contractAddress: "0xa6A2d42E16a690E03bDe181319fDD085880F2605",
|
|
308
|
+
rpcUrl: sonic.rpcUrls.default.http[0]
|
|
309
|
+
},
|
|
310
|
+
[xLayer.id]: {
|
|
311
|
+
contractAddress: "0xa6A2d42E16a690E03bDe181319fDD085880F2605",
|
|
312
|
+
rpcUrl: "https://xlayerrpc.okx.com"
|
|
313
|
+
},
|
|
304
314
|
[CHAIN2.TESTNET]: {
|
|
305
315
|
name: "TestNet",
|
|
306
316
|
contractAddress: "",
|
|
@@ -353,7 +363,9 @@ var SupportedChains = [
|
|
|
353
363
|
arbitrum,
|
|
354
364
|
tonTestNet,
|
|
355
365
|
tonMainNet,
|
|
356
|
-
signBrBTestnet
|
|
366
|
+
signBrBTestnet,
|
|
367
|
+
sonic,
|
|
368
|
+
xLayer
|
|
357
369
|
];
|
|
358
370
|
|
|
359
371
|
// src/constants/index.ts
|