@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.js
CHANGED
|
@@ -386,6 +386,14 @@ var ChainConfig = {
|
|
|
386
386
|
// add default fee
|
|
387
387
|
rpcUrl: signBrBTestnet.rpcUrls.default.http[0]
|
|
388
388
|
},
|
|
389
|
+
[import_chains.sonic.id]: {
|
|
390
|
+
contractAddress: "0xa6A2d42E16a690E03bDe181319fDD085880F2605",
|
|
391
|
+
rpcUrl: import_chains.sonic.rpcUrls.default.http[0]
|
|
392
|
+
},
|
|
393
|
+
[import_chains.xLayer.id]: {
|
|
394
|
+
contractAddress: "0xa6A2d42E16a690E03bDe181319fDD085880F2605",
|
|
395
|
+
rpcUrl: "https://xlayerrpc.okx.com"
|
|
396
|
+
},
|
|
389
397
|
[import_sdk2.CHAIN.TESTNET]: {
|
|
390
398
|
name: "TestNet",
|
|
391
399
|
contractAddress: "",
|
|
@@ -438,7 +446,9 @@ var SupportedChains = [
|
|
|
438
446
|
import_chains.arbitrum,
|
|
439
447
|
tonTestNet,
|
|
440
448
|
tonMainNet,
|
|
441
|
-
signBrBTestnet
|
|
449
|
+
signBrBTestnet,
|
|
450
|
+
import_chains.sonic,
|
|
451
|
+
import_chains.xLayer
|
|
442
452
|
];
|
|
443
453
|
|
|
444
454
|
// src/constants/index.ts
|