@exodus/asset-types 0.5.0 → 0.5.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,14 @@
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.5.1](https://github.com/ExodusMovement/assets/compare/@exodus/asset-types@0.5.0...@exodus/asset-types@0.5.1) (2026-03-26)
7
+
8
+ **Note:** Version bump only for package @exodus/asset-types
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.5.0](https://github.com/ExodusMovement/assets/compare/@exodus/asset-types@0.3.1...@exodus/asset-types@0.5.0) (2025-12-03)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/asset-types",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Typings for Assets",
5
5
  "author": "Exodus Movement, Inc.",
6
6
  "repository": {
@@ -25,7 +25,7 @@
25
25
  "dependencies": {
26
26
  "@exodus/currency": "^6.0.1",
27
27
  "@exodus/key-identifier": "^1.3.0",
28
- "@exodus/models": "^12.2.0"
28
+ "@exodus/models": "^13.0.0"
29
29
  },
30
30
  "scripts": {
31
31
  "lint": "run -T eslint .",
@@ -42,5 +42,5 @@
42
42
  "access": "public",
43
43
  "provenance": false
44
44
  },
45
- "gitHead": "5ea6d9188d1c8cca1d9d67ef06ed6f15308d4c38"
45
+ "gitHead": "f7c3c3541471b863d7b8cb66b8e7885df847821d"
46
46
  }
package/src/fees.d.ts CHANGED
@@ -12,5 +12,6 @@ export type Fees = {
12
12
  export type GetFeeAsyncParams = CreateTxParams
13
13
 
14
14
  export type GetFeeAsyncResponse = Fees & {
15
+ // @deprecated do not use this field
15
16
  unsignedTx?: UnsignedTxPayload
16
17
  }
package/src/send-tx.d.ts CHANGED
@@ -32,7 +32,6 @@ export type ExtendedTxSendParams = Extendable<
32
32
  feeAmount?: NumberUnit
33
33
  isExchange?: boolean
34
34
  isSendAll?: boolean
35
- shouldLog?: boolean
36
35
  }
37
36
  >
38
37