injectivejs 1.8.1 → 1.8.3

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 +20 -9
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -582,17 +582,28 @@ yarn build
582
582
  yarn publish
583
583
  ```
584
584
 
585
- ## Credits
586
-
587
- 🛠 Built by Cosmology — if you like our tools, please consider delegating to [our validator ⚛️](https://cosmology.tech/validator)
585
+ ## Interchain JavaScript Stack
586
+
587
+ A unified toolkit for building applications and smart contracts in the Interchain ecosystem ⚛️
588
+
589
+ | Category | Tools | Description |
590
+ |----------------------|------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------|
591
+ | **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. |
592
+ | **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. |
593
+ | **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 |
594
+ | **SDK Clients** | [**Telescope**](https://github.com/hyperweb-io/telescope) | Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules. |
595
+ | **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. |
596
+ | **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. |
597
+ | **Testing Frameworks** | [**Starship**](https://github.com/hyperweb-io/starship) | Unified Testing and Development for the Interchain. |
598
+ | **TypeScript Smart Contracts** | [**Create Hyperweb App**](https://github.com/hyperweb-io/create-hyperweb-app) | Build and deploy full-stack blockchain applications with TypeScript |
599
+ | **CosmWasm Contracts** | [**CosmWasm TS Codegen**](https://github.com/CosmWasm/ts-codegen) | Convert your CosmWasm smart contracts into dev-friendly TypeScript classes. |
588
600
 
589
- Code built with the help of these related projects:
601
+ ## Credits
590
602
 
591
- - [@cosmwasm/ts-codegen](https://github.com/CosmWasm/ts-codegen) for generated CosmWasm contract Typescript classes
592
- - [@cosmology/telescope](https://github.com/hyperweb-io/telescope) a "babel for the Cosmos", Telescope is a TypeScript Transpiler for Cosmos Protobufs.
603
+ 🛠 Built by Hyperweb (formerly Cosmology) — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/hyperweb-io)
593
604
 
594
- ## License
605
+ ## Disclaimer
595
606
 
596
- MIT License (MIT) & Apache License
607
+ AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED “AS IS”, AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
597
608
 
598
- Copyright (c) 2024 Copyright (c) 2024 Hyperweb (https://hyperweb.io)
609
+ No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "injectivejs",
3
- "version": "1.8.1",
3
+ "version": "1.8.3",
4
4
  "description": "Injectivejs is a JavaScript library for interacting with injective sdk.",
5
5
  "main": "index.js",
6
6
  "module": "esm/index.js",
@@ -25,10 +25,10 @@
25
25
  "prepare": "npm run build"
26
26
  },
27
27
  "dependencies": {
28
- "@interchainjs/cosmos": "^1.8.1",
29
- "@interchainjs/cosmos-types": "^1.8.0",
30
- "@interchainjs/types": "1.7.8",
31
- "@interchainjs/utils": "1.7.8",
28
+ "@interchainjs/cosmos": "^1.8.3",
29
+ "@interchainjs/cosmos-types": "^1.8.2",
30
+ "@interchainjs/types": "^1.7.9",
31
+ "@interchainjs/utils": "^1.7.10",
32
32
  "@noble/hashes": "^1.3.1",
33
33
  "decimal.js": "^10.4.3"
34
34
  },
@@ -39,5 +39,5 @@
39
39
  "cosmjs",
40
40
  "wallet"
41
41
  ],
42
- "gitHead": "9335779a7667fa5d6ac5f4ae0d14133a8c43a252"
42
+ "gitHead": "00594e290b50da493211485056f023b029d6bf78"
43
43
  }