@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/CHANGELOG.md +6 -0
- package/dist/index.d.mts +80 -1
- package/dist/index.d.ts +80 -1
- package/dist/index.js +26 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +25 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/constants/chain-config.ts +6 -0
- package/src/constants/network.ts +20 -0
package/dist/index.mjs
CHANGED
|
@@ -240,6 +240,25 @@ var aptosTestNet = {
|
|
|
240
240
|
},
|
|
241
241
|
testnet: true
|
|
242
242
|
};
|
|
243
|
+
var hyperEVM = defineChain({
|
|
244
|
+
id: 999,
|
|
245
|
+
name: "HyperEVM",
|
|
246
|
+
nativeCurrency: {
|
|
247
|
+
name: "HYPE",
|
|
248
|
+
symbol: "HYPE",
|
|
249
|
+
decimals: 18
|
|
250
|
+
},
|
|
251
|
+
rpcUrls: {
|
|
252
|
+
default: { http: ["https://rpc.hyperliquid.xyz/evm"] }
|
|
253
|
+
},
|
|
254
|
+
blockExplorers: {
|
|
255
|
+
default: {
|
|
256
|
+
name: "HyperEVMScan",
|
|
257
|
+
url: "https://hyperevmscan.io/"
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
testnet: false
|
|
261
|
+
});
|
|
243
262
|
|
|
244
263
|
// src/constants/chain-config.ts
|
|
245
264
|
import { CHAIN as CHAIN2 } from "@tonconnect/sdk";
|
|
@@ -280,6 +299,10 @@ var ChainConfig = {
|
|
|
280
299
|
contractAddress: "0xeD09c23677D02f4f486E55f0f081cfc114EEa53b",
|
|
281
300
|
rpcUrl: "https://arb-mainnet.g.alchemy.com/v2/udrqNPSB6i5n5L6QSM31Ng72h_hFOrVT"
|
|
282
301
|
},
|
|
302
|
+
[hyperEVM.id]: {
|
|
303
|
+
contractAddress: "0xeD09c23677D02f4f486E55f0f081cfc114EEa53b",
|
|
304
|
+
rpcUrl: hyperEVM.rpcUrls.default.http[0]
|
|
305
|
+
},
|
|
283
306
|
[megaethTestnet.id]: {
|
|
284
307
|
contractAddress: "0xa6A2d42E16a690E03bDe181319fDD085880F2605",
|
|
285
308
|
rpcUrl: megaethTestnet.rpcUrls.default.http[0]
|
|
@@ -364,6 +387,7 @@ var SupportedChains = [
|
|
|
364
387
|
signBrBTestnet,
|
|
365
388
|
sonic,
|
|
366
389
|
xLayer,
|
|
390
|
+
hyperEVM,
|
|
367
391
|
sepolia,
|
|
368
392
|
baseSepolia,
|
|
369
393
|
zetachainAthensTestnet,
|
|
@@ -12999,6 +13023,7 @@ export {
|
|
|
12999
13023
|
getOrCreateAssociatedTokenAccount,
|
|
13000
13024
|
getTonProjectIdByAddress,
|
|
13001
13025
|
hexStrToU8Array,
|
|
13026
|
+
hyperEVM,
|
|
13002
13027
|
isBeforeByUnix,
|
|
13003
13028
|
isGreaterThan,
|
|
13004
13029
|
isMobile,
|