@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.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
|
|
@@ -142,7 +144,7 @@ var solanaMainNet = {
|
|
|
142
144
|
testnet: false
|
|
143
145
|
};
|
|
144
146
|
var signBrBTestnet = /* @__PURE__ */ defineChain({
|
|
145
|
-
id:
|
|
147
|
+
id: 74460002,
|
|
146
148
|
name: "Sign Brb Testnet",
|
|
147
149
|
network: "Sign Brb Testnet",
|
|
148
150
|
nativeCurrency: {
|
|
@@ -157,7 +159,7 @@ var signBrBTestnet = /* @__PURE__ */ defineChain({
|
|
|
157
159
|
blockExplorers: {
|
|
158
160
|
default: {
|
|
159
161
|
name: "Sign Brb Testnet Explorer",
|
|
160
|
-
url: "
|
|
162
|
+
url: "https://explorer-testnet.bk.sign.global/"
|
|
161
163
|
}
|
|
162
164
|
},
|
|
163
165
|
testnet: true
|
|
@@ -297,10 +299,18 @@ var ChainConfig = {
|
|
|
297
299
|
rpcUrl: mevmDevNet.rpcUrls.default.http[0]
|
|
298
300
|
},
|
|
299
301
|
[signBrBTestnet.id]: {
|
|
300
|
-
contractAddress: "
|
|
302
|
+
contractAddress: "0xeD09c23677D02f4f486E55f0f081cfc114EEa53b",
|
|
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: "",
|