@swapkit/helpers 4.20.3 → 4.20.4
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/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @swapkit/helpers
|
|
2
2
|
|
|
3
|
+
## 4.20.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#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/tokens@4.5.2)
|
|
8
|
+
|
|
3
9
|
## 4.20.3
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"author": "swapkit-dev",
|
|
3
|
-
"dependencies": { "@swapkit/contracts": "4.1.5", "@swapkit/tokens": "4.5.
|
|
3
|
+
"dependencies": { "@swapkit/contracts": "4.1.5", "@swapkit/tokens": "4.5.2", "@swapkit/types": "0.12.0" },
|
|
4
4
|
"description": "SwapKit - Helpers",
|
|
5
|
-
"devDependencies": { "@near-js/providers": "2.5.1", "@swapkit/toolboxes": "4.28.
|
|
5
|
+
"devDependencies": { "@near-js/providers": "2.5.1", "@swapkit/toolboxes": "4.28.3", "ethers": "6.16.0" },
|
|
6
6
|
"exports": {
|
|
7
7
|
".": { "default": "./dist/index.js", "require": "./dist/index.cjs", "types": "./dist/types/index.d.ts" },
|
|
8
8
|
"./api": {
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"type-check:go": "tsgo"
|
|
40
40
|
},
|
|
41
41
|
"type": "module",
|
|
42
|
-
"version": "4.20.
|
|
42
|
+
"version": "4.20.4"
|
|
43
43
|
}
|