@sign-global/tokentable-core 1.9.0 → 1.11.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sign-global/tokentable-core",
3
- "version": "1.9.0",
3
+ "version": "1.11.0",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -12,10 +12,12 @@ 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,
20
+ hyperEVM,
19
21
  mevmDevNet,
20
22
  signBrBTestnet,
21
23
  solanaDevNet,
@@ -64,6 +66,14 @@ export const ChainConfig = {
64
66
  contractAddress: '0xeD09c23677D02f4f486E55f0f081cfc114EEa53b',
65
67
  rpcUrl: 'https://arb-mainnet.g.alchemy.com/v2/udrqNPSB6i5n5L6QSM31Ng72h_hFOrVT'
66
68
  },
69
+ [hyperEVM.id]: {
70
+ contractAddress: '0xeD09c23677D02f4f486E55f0f081cfc114EEa53b',
71
+ rpcUrl: hyperEVM.rpcUrls.default.http[0]
72
+ },
73
+ [megaethTestnet.id]: {
74
+ contractAddress: '0xa6A2d42E16a690E03bDe181319fDD085880F2605',
75
+ rpcUrl: megaethTestnet.rpcUrls.default.http[0]
76
+ },
67
77
  [berachainTestnet.id]: {
68
78
  contractAddress: '',
69
79
  rpcUrl: '',
@@ -136,18 +146,20 @@ export const SupportedChains = [
136
146
  bsc,
137
147
  base,
138
148
  cyber,
149
+ zetachain,
150
+ arbitrum,
151
+ tonTestNet,
152
+ tonMainNet,
153
+ signBrBTestnet,
154
+ sonic,
155
+ xLayer,
156
+ hyperEVM,
139
157
  sepolia,
140
158
  baseSepolia,
141
- zetachain,
142
159
  zetachainAthensTestnet,
143
160
  berachainTestnet,
144
161
  polygonMumbai,
145
162
  polygonAmoy,
146
163
  mevmDevNet,
147
- arbitrum,
148
- tonTestNet,
149
- tonMainNet,
150
- signBrBTestnet,
151
- sonic,
152
- xLayer
164
+ megaethTestnet
153
165
  ];
@@ -229,3 +229,23 @@ export const aptosTestNet = {
229
229
  },
230
230
  testnet: true
231
231
  };
232
+
233
+ export const hyperEVM = defineChain({
234
+ id: 999,
235
+ name: 'HyperEVM',
236
+ nativeCurrency: {
237
+ name: 'HYPE',
238
+ symbol: 'HYPE',
239
+ decimals: 18
240
+ },
241
+ rpcUrls: {
242
+ default: { http: ['https://rpc.hyperliquid.xyz/evm'] }
243
+ },
244
+ blockExplorers: {
245
+ default: {
246
+ name: 'HyperEVMScan',
247
+ url: 'https://hyperevmscan.io/'
248
+ }
249
+ },
250
+ testnet: false
251
+ });