@sign-global/tokentable-core 1.7.1 → 1.8.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 +188 -143
- package/dist/index.d.ts +188 -143
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/constants/chain-config.ts +11 -1
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: "",
|