@sign-global/tokentable-core 1.13.0 → 1.14.1

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.13.0",
3
+ "version": "1.14.1",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -15,11 +15,14 @@ import {
15
15
  xLayer,
16
16
  megaethTestnet,
17
17
  monadTestnet,
18
- monad
18
+ monad,
19
+ memecore,
20
+ cronos
19
21
  } from 'viem/chains';
20
22
  import {
21
23
  aptosTestNet,
22
24
  hyperEVM,
25
+ megaeth,
23
26
  mevmDevNet,
24
27
  signBrBTestnet,
25
28
  solanaDevNet,
@@ -39,6 +42,9 @@ export const SupportedChains = [
39
42
  zetachain,
40
43
  arbitrum,
41
44
  monad,
45
+ cronos,
46
+ memecore,
47
+ megaeth,
42
48
  tonTestNet,
43
49
  tonMainNet,
44
50
  signBrBTestnet,
@@ -73,9 +79,21 @@ export const ChainConfig: Record<SupportedChainIds, ChainConfigItem> = {
73
79
  rpcUrl: 'https://base-mainnet.g.alchemy.com/v2/udrqNPSB6i5n5L6QSM31Ng72h_hFOrVT'
74
80
  },
75
81
  [monad.id]: {
76
- contractAddress: '',
82
+ contractAddress: '0xa6A2d42E16a690E03bDe181319fDD085880F2605',
77
83
  rpcUrl: monad.rpcUrls.default.http[0]
78
84
  },
85
+ [cronos.id]: {
86
+ contractAddress: '0xa6A2d42E16a690E03bDe181319fDD085880F2605',
87
+ rpcUrl: cronos.rpcUrls.default.http[0]
88
+ },
89
+ [memecore.id]: {
90
+ contractAddress: '0xa6A2d42E16a690E03bDe181319fDD085880F2605',
91
+ rpcUrl: memecore.rpcUrls.default.http[0]
92
+ },
93
+ [megaeth.id]: {
94
+ contractAddress: '0xa6A2d42E16a690E03bDe181319fDD085880F2605',
95
+ rpcUrl: megaeth.rpcUrls.default.http[0]
96
+ },
79
97
  [cyber.id]: {
80
98
  contractAddress: '0x7915dA247674E430b2a4Dcf01e4471f709428Bc0',
81
99
  rpcUrl: cyber.rpcUrls.default.http[0]
@@ -254,3 +254,32 @@ export const hyperEVM = defineChain({
254
254
  }
255
255
  }
256
256
  });
257
+
258
+ export const megaeth = /*#__PURE__*/ defineChain({
259
+ id: 4326,
260
+ blockTime: 1_000,
261
+ name: 'MegaETH',
262
+ nativeCurrency: {
263
+ name: 'Ether',
264
+ symbol: 'ETH',
265
+ decimals: 18
266
+ },
267
+ rpcUrls: {
268
+ default: {
269
+ http: ['https://mainnet.megaeth.com/rpc'],
270
+ webSocket: ['wss://mainnet.megaeth.com/ws']
271
+ }
272
+ },
273
+ blockExplorers: {
274
+ default: {
275
+ name: 'Blockscout',
276
+ url: 'https://megaeth.blockscout.com',
277
+ apiUrl: 'https://megaeth.blockscout.com/api'
278
+ }
279
+ },
280
+ contracts: {
281
+ multicall3: {
282
+ address: '0xcA11bde05977b3631167028862bE2a173976CA11'
283
+ }
284
+ }
285
+ });