@exodus/asset-types 0.7.0 → 0.7.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/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.7.1](https://github.com/ExodusMovement/assets/compare/@exodus/asset-types@0.7.0...@exodus/asset-types@0.7.1) (2026-06-02)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * fix(ethereum-api): eliminate send-all dust on HYPE and other forceGasLimitEstimation networks (#7747)
13
+
14
+
15
+
6
16
  ## [0.7.0](https://github.com/ExodusMovement/assets/compare/@exodus/asset-types@0.6.0...@exodus/asset-types@0.7.0) (2026-05-25)
7
17
 
8
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/asset-types",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "Typings for Assets",
5
5
  "author": "Exodus Movement, Inc.",
6
6
  "repository": {
@@ -42,5 +42,5 @@
42
42
  "access": "public",
43
43
  "provenance": false
44
44
  },
45
- "gitHead": "73ff97a75479c3b25fccc11f31879ec634818d63"
45
+ "gitHead": "f0c007138096bf627e21fc9e757637394fe2a5b0"
46
46
  }
@@ -10,6 +10,7 @@ export type CreateTransferParams = Extendable<{
10
10
  walletAccount: WalletAccountLike
11
11
  toAddress: string
12
12
  amount: NumberUnit
13
+ amountIncludesFee?: boolean
13
14
  customFee?: NumberUnit
14
15
  isExchange?: boolean
15
16
  isSendAll?: boolean
package/src/send-tx.d.ts CHANGED
@@ -28,6 +28,7 @@ export type ExtendedTxSendParams = Extendable<
28
28
  StrictTxSendParams,
29
29
  {
30
30
  bumpTxId?: string
31
+ amountIncludesFee?: boolean
31
32
  customFee?: NumberUnit
32
33
  feeAmount?: NumberUnit
33
34
  isExchange?: boolean