@swapkit/core 4.6.6 → 4.6.8
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 +13 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @swapkit/core
|
|
2
2
|
|
|
3
|
+
## 4.6.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`ef0c115`](https://github.com/swapkit/sdk/commit/ef0c11521563e781f5dc8846c96931e7e436c22c) Thanks [@towanTG](https://github.com/towanTG)! - Drop `HYPE.*` identifiers carrying an EVM address. Hypercore assets are addressed by Hyperliquid `NAME:tokenId` — `spotSend` puts that value straight into its `token` field — so an entry like `HYPE.USDC-0xb88339CB…` describes an asset that does not exist on Hypercore (no Hyperliquid spot token backs that contract) and cannot be sent. Near Intents tags HyperEVM tokens onto its `hypercore` chain, which is where these came from. Genuine `HYPEREVM.*` tokens and flashnet's real Hypercore assets are unaffected. (via @swapkit/helpers@4.20.5)
|
|
8
|
+
|
|
9
|
+
## 4.6.7
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`c357b3b`](https://github.com/swapkit/sdk/commit/c357b3bc1a384d9ebdf1b4da2f4b94542636538e) Thanks [@towanTG](https://github.com/towanTG)! - Hypercore balances take their decimals from Hyperliquid's `weiDecimals` instead of a hardcoded ticker table. USDC is 8 decimals on Hypercore (it is 6 only on EVM chains), so the old `{ USDC: 6 }` fallback truncated spot balances; the table now applies only when spot metadata is unavailable. (via @swapkit/toolboxes@4.28.3)
|
|
14
|
+
- [#358](https://github.com/swapkit/sdk/pull/358) [`6734cab`](https://github.com/swapkit/sdk/commit/6734cab233f17b6e5372519fe43e029477117827) Thanks [@github-actions](https://github.com/apps/github-actions)! - Correct flashnet's Hypercore assets in the dev list. The api collapses flashnet's two Hyperliquid chains and emitted Hypercore USDC carrying HyperEVM USDC's contract address (`HYPE.USDC-0xb88339CB…`) — an EVM address is not a valid Hypercore asset id, so `spotSend` built from it was rejected. Hypercore entries are now generated in Hyperliquid `NAME:tokenId` form, matching what the hypercore toolbox builds at runtime: `HYPE.USDC-USDC:0x6d1e7cde…` and `HYPE.USDE-USDE:0x2e6d84f2…`, both 8 decimals (`weiDecimals`). `HYPEREVM.*` assets are untouched. (via @swapkit/toolboxes@4.28.3)
|
|
15
|
+
|
|
3
16
|
## 4.6.6
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"author": "swapkit-dev",
|
|
3
3
|
"dependencies": {
|
|
4
|
-
"@swapkit/helpers": "4.20.
|
|
5
|
-
"@swapkit/plugins": "4.7.
|
|
6
|
-
"@swapkit/toolboxes": "4.28.
|
|
7
|
-
"@swapkit/wallet-core": "4.3.
|
|
4
|
+
"@swapkit/helpers": "4.20.5",
|
|
5
|
+
"@swapkit/plugins": "4.7.8",
|
|
6
|
+
"@swapkit/toolboxes": "4.28.4",
|
|
7
|
+
"@swapkit/wallet-core": "4.3.25"
|
|
8
8
|
},
|
|
9
9
|
"description": "SwapKit - Core",
|
|
10
10
|
"devDependencies": {
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"type-check:go": "tsgo"
|
|
37
37
|
},
|
|
38
38
|
"type": "module",
|
|
39
|
-
"version": "4.6.
|
|
39
|
+
"version": "4.6.8"
|
|
40
40
|
}
|