@exodus/asset-types 0.3.0 → 0.3.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.3.1](https://github.com/ExodusMovement/assets/compare/@exodus/asset-types@0.3.0...@exodus/asset-types@0.3.1) (2025-06-30)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * fix: remove unused gradientCoords from meta and validation (#5937)
13
+
14
+
15
+
6
16
  ## [0.3.0](https://github.com/ExodusMovement/assets/compare/@exodus/asset-types@0.2.4...@exodus/asset-types@0.3.0) (2025-03-31)
7
17
 
8
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/asset-types",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Typings for Assets",
5
5
  "author": "Exodus Movement, Inc.",
6
6
  "repository": {
@@ -32,5 +32,5 @@
32
32
  "devDependencies": {
33
33
  "@types/bn.js": "^5"
34
34
  },
35
- "gitHead": "c5a19c29bd6066318ca6fc83e86ba9d3c0ef5bbb"
35
+ "gitHead": "526664d72a7a3c24ec8db150493fb3f1c490faa3"
36
36
  }
@@ -1,12 +1,5 @@
1
1
  import type { UnitType } from '@exodus/currency'
2
2
 
3
- export type GradientCoords = {
4
- x1: string
5
- y1: string
6
- x2: string
7
- y2: string
8
- }
9
-
10
3
  export type Info = {
11
4
  description?: string
12
5
  reddit?: string
@@ -30,7 +23,6 @@ export type AssetMeta = {
30
23
  displayNetworkTicker: string
31
24
  displayTicker: string
32
25
  gradientColors: string[]
33
- gradientCoords: GradientCoords
34
26
  tokenAssetType?: string
35
27
  info?: Info
36
28
  primaryColor: string