@sign-global/tokentable-core 1.10.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.10.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",
@@ -17,6 +17,7 @@ import {
17
17
  } from 'viem/chains';
18
18
  import {
19
19
  aptosTestNet,
20
+ hyperEVM,
20
21
  mevmDevNet,
21
22
  signBrBTestnet,
22
23
  solanaDevNet,
@@ -65,6 +66,10 @@ export const ChainConfig = {
65
66
  contractAddress: '0xeD09c23677D02f4f486E55f0f081cfc114EEa53b',
66
67
  rpcUrl: 'https://arb-mainnet.g.alchemy.com/v2/udrqNPSB6i5n5L6QSM31Ng72h_hFOrVT'
67
68
  },
69
+ [hyperEVM.id]: {
70
+ contractAddress: '0xeD09c23677D02f4f486E55f0f081cfc114EEa53b',
71
+ rpcUrl: hyperEVM.rpcUrls.default.http[0]
72
+ },
68
73
  [megaethTestnet.id]: {
69
74
  contractAddress: '0xa6A2d42E16a690E03bDe181319fDD085880F2605',
70
75
  rpcUrl: megaethTestnet.rpcUrls.default.http[0]
@@ -148,6 +153,7 @@ export const SupportedChains = [
148
153
  signBrBTestnet,
149
154
  sonic,
150
155
  xLayer,
156
+ hyperEVM,
151
157
  sepolia,
152
158
  baseSepolia,
153
159
  zetachainAthensTestnet,
@@ -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
+ });