@sign-global/tokentable-core 1.7.0 → 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 +12 -0
- package/dist/index.d.mts +193 -148
- package/dist/index.d.ts +193 -148
- package/dist/index.js +11 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/constants/chain-config.ts +12 -2
- package/src/constants/network.ts +2 -2
package/dist/index.js
CHANGED
|
@@ -227,7 +227,7 @@ var solanaMainNet = {
|
|
|
227
227
|
testnet: false
|
|
228
228
|
};
|
|
229
229
|
var signBrBTestnet = /* @__PURE__ */ (0, import_viem.defineChain)({
|
|
230
|
-
id:
|
|
230
|
+
id: 74460002,
|
|
231
231
|
name: "Sign Brb Testnet",
|
|
232
232
|
network: "Sign Brb Testnet",
|
|
233
233
|
nativeCurrency: {
|
|
@@ -242,7 +242,7 @@ var signBrBTestnet = /* @__PURE__ */ (0, import_viem.defineChain)({
|
|
|
242
242
|
blockExplorers: {
|
|
243
243
|
default: {
|
|
244
244
|
name: "Sign Brb Testnet Explorer",
|
|
245
|
-
url: "
|
|
245
|
+
url: "https://explorer-testnet.bk.sign.global/"
|
|
246
246
|
}
|
|
247
247
|
},
|
|
248
248
|
testnet: true
|
|
@@ -382,10 +382,18 @@ var ChainConfig = {
|
|
|
382
382
|
rpcUrl: mevmDevNet.rpcUrls.default.http[0]
|
|
383
383
|
},
|
|
384
384
|
[signBrBTestnet.id]: {
|
|
385
|
-
contractAddress: "
|
|
385
|
+
contractAddress: "0xeD09c23677D02f4f486E55f0f081cfc114EEa53b",
|
|
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: "",
|