@chain-registry/utils 1.29.12 → 1.30.0

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/esm/utils.js CHANGED
@@ -28,6 +28,9 @@ export const getNativeAssets = (assets) => {
28
28
  }
29
29
  return false;
30
30
  }
31
+ }).map(asset => {
32
+ delete asset.extended_description;
33
+ return asset;
31
34
  });
32
35
  return clone;
33
36
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chain-registry/utils",
3
- "version": "1.29.12",
3
+ "version": "1.30.0",
4
4
  "description": "Chain Registry Utils",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/cosmology-tech/chain-registry",
@@ -31,7 +31,7 @@
31
31
  "@types/sha.js": "^2.4.0"
32
32
  },
33
33
  "dependencies": {
34
- "@chain-registry/types": "^0.28.12",
34
+ "@chain-registry/types": "^0.29.0",
35
35
  "bignumber.js": "9.1.1",
36
36
  "sha.js": "^2.4.11"
37
37
  },
@@ -41,5 +41,5 @@
41
41
  "cosmos",
42
42
  "interchain"
43
43
  ],
44
- "gitHead": "75558cf0c1f53dfdc3e492f59595a4efef0b8b72"
44
+ "gitHead": "575ccfc1e0a69ab2c5c4280be110d5b8020b9e75"
45
45
  }
package/utils.js CHANGED
@@ -32,6 +32,9 @@ const getNativeAssets = (assets) => {
32
32
  }
33
33
  return false;
34
34
  }
35
+ }).map(asset => {
36
+ delete asset.extended_description;
37
+ return asset;
35
38
  });
36
39
  return clone;
37
40
  });