@chain-registry/utils 1.51.57 → 1.51.58

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.
Files changed (2) hide show
  1. package/README.md +14 -11
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -29,7 +29,7 @@ This module provides utility functions for working with the data in the chain-re
29
29
  - [Calculation](#calculation-utilities)
30
30
  - [Examples](#calculation-examples)
31
31
  - [Functions](#calculation-functions)
32
- - [Related](#related)
32
+ - [Stack](#interchain-javascript-stack-️)
33
33
  - [Credits](#credits)
34
34
  - [Disclaimer](#disclaimer)
35
35
 
@@ -286,23 +286,26 @@ const rounded = roundDown(123.4567);
286
286
  - `convertDisplayUnitToBaseUnit`: Converts an amount from the display unit to the base unit of an asset.
287
287
  - `roundDown`: Rounds down a number to the nearest integer.
288
288
 
289
- ## Related
289
+ ## Interchain JavaScript Stack ⚛️
290
290
 
291
- Checkout these related projects:
291
+ A unified toolkit for building applications and smart contracts in the Interchain ecosystem
292
292
 
293
- * [telescope](https://github.com/hyperweb-io/telescope) Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules.
294
- * [@cosmwasm/ts-codegen](https://github.com/CosmWasm/ts-codegen) Convert your CosmWasm smart contracts into dev-friendly TypeScript classes.
295
- * [chain-registry](https://github.com/hyperweb-io/chain-registry) Everything from token symbols, logos, and IBC denominations for all assets you want to support in your application.
296
- * [cosmos-kit](https://github.com/hyperweb-io/cosmos-kit) Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface.
297
- * [create-cosmos-app](https://github.com/hyperweb-io/create-cosmos-app) Set up a modern Cosmos app by running one command.
298
- * [interchain-ui](https://github.com/hyperweb-io/interchain-ui) The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit.
299
- * [starship](https://github.com/hyperweb-io/starship) Unified Testing and Development for the Interchain.
293
+ | Category | Tools | Description |
294
+ |----------------------|------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------|
295
+ | **Chain Information** | [**Chain Registry**](https://github.com/hyperweb-io/chain-registry), [**Utils**](https://www.npmjs.com/package/@chain-registry/utils), [**Client**](https://www.npmjs.com/package/@chain-registry/client) | Everything from token symbols, logos, and IBC denominations for all assets you want to support in your application. |
296
+ | **Wallet Connectors**| [**Interchain Kit**](https://github.com/hyperweb-io/interchain-kit)<sup>beta</sup>, [**Cosmos Kit**](https://github.com/hyperweb-io/cosmos-kit) | Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface. |
297
+ | **Signing Clients** | [**InterchainJS**](https://github.com/hyperweb-io/interchainjs)<sup>beta</sup>, [**CosmJS**](https://github.com/cosmos/cosmjs) | A single, universal signing interface for any network |
298
+ | **SDK Clients** | [**Telescope**](https://github.com/hyperweb-io/telescope) | Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules. |
299
+ | **Starter Kits** | [**Create Interchain App**](https://github.com/hyperweb-io/create-interchain-app)<sup>beta</sup>, [**Create Cosmos App**](https://github.com/hyperweb-io/create-cosmos-app) | Set up a modern Interchain app by running one command. |
300
+ | **UI Kits** | [**Interchain UI**](https://github.com/hyperweb-io/interchain-ui) | The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit. |
301
+ | **Testing Frameworks** | [**Starship**](https://github.com/hyperweb-io/starship) | Unified Testing and Development for the Interchain. |
302
+ | **TypeScript Smart Contracts** | [**Create Hyperweb App**](https://github.com/hyperweb-io/create-hyperweb-app) | Build and deploy full-stack blockchain applications with TypeScript |
303
+ | **CosmWasm Contracts** | [**CosmWasm TS Codegen**](https://github.com/CosmWasm/ts-codegen) | Convert your CosmWasm smart contracts into dev-friendly TypeScript classes. |
300
304
 
301
305
  ## Credits
302
306
 
303
307
  🛠 Built by Hyperweb (formerly Cosmology) — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/hyperweb-io)
304
308
 
305
-
306
309
  ## Disclaimer
307
310
 
308
311
  AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED “AS IS”, AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chain-registry/utils",
3
- "version": "1.51.57",
3
+ "version": "1.51.58",
4
4
  "description": "Chain Registry Utils",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/hyperweb-io/chain-registry",
@@ -32,7 +32,7 @@
32
32
  "@types/sha.js": "^2.4.0"
33
33
  },
34
34
  "dependencies": {
35
- "@chain-registry/types": "^0.50.57",
35
+ "@chain-registry/types": "^0.50.58",
36
36
  "bignumber.js": "9.1.2",
37
37
  "sha.js": "^2.4.11"
38
38
  },
@@ -42,5 +42,5 @@
42
42
  "cosmos",
43
43
  "interchain"
44
44
  ],
45
- "gitHead": "719d06179d4560272a8a6cce8b8efb192b12e497"
45
+ "gitHead": "875d166e41b678d20c6a4d9559eed8313b164c96"
46
46
  }