@sign-global/tokentable-core 1.9.0 → 1.10.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 +38 -0
- package/dist/index.d.ts +38 -0
- package/dist/index.js +12 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/constants/chain-config.ts +14 -8
package/package.json
CHANGED
|
@@ -12,7 +12,8 @@ import {
|
|
|
12
12
|
berachainTestnet,
|
|
13
13
|
arbitrum,
|
|
14
14
|
sonic,
|
|
15
|
-
xLayer
|
|
15
|
+
xLayer,
|
|
16
|
+
megaethTestnet
|
|
16
17
|
} from 'viem/chains';
|
|
17
18
|
import {
|
|
18
19
|
aptosTestNet,
|
|
@@ -64,6 +65,10 @@ export const ChainConfig = {
|
|
|
64
65
|
contractAddress: '0xeD09c23677D02f4f486E55f0f081cfc114EEa53b',
|
|
65
66
|
rpcUrl: 'https://arb-mainnet.g.alchemy.com/v2/udrqNPSB6i5n5L6QSM31Ng72h_hFOrVT'
|
|
66
67
|
},
|
|
68
|
+
[megaethTestnet.id]: {
|
|
69
|
+
contractAddress: '0xa6A2d42E16a690E03bDe181319fDD085880F2605',
|
|
70
|
+
rpcUrl: megaethTestnet.rpcUrls.default.http[0]
|
|
71
|
+
},
|
|
67
72
|
[berachainTestnet.id]: {
|
|
68
73
|
contractAddress: '',
|
|
69
74
|
rpcUrl: '',
|
|
@@ -136,18 +141,19 @@ export const SupportedChains = [
|
|
|
136
141
|
bsc,
|
|
137
142
|
base,
|
|
138
143
|
cyber,
|
|
144
|
+
zetachain,
|
|
145
|
+
arbitrum,
|
|
146
|
+
tonTestNet,
|
|
147
|
+
tonMainNet,
|
|
148
|
+
signBrBTestnet,
|
|
149
|
+
sonic,
|
|
150
|
+
xLayer,
|
|
139
151
|
sepolia,
|
|
140
152
|
baseSepolia,
|
|
141
|
-
zetachain,
|
|
142
153
|
zetachainAthensTestnet,
|
|
143
154
|
berachainTestnet,
|
|
144
155
|
polygonMumbai,
|
|
145
156
|
polygonAmoy,
|
|
146
157
|
mevmDevNet,
|
|
147
|
-
|
|
148
|
-
tonTestNet,
|
|
149
|
-
tonMainNet,
|
|
150
|
-
signBrBTestnet,
|
|
151
|
-
sonic,
|
|
152
|
-
xLayer
|
|
158
|
+
megaethTestnet
|
|
153
159
|
];
|