dedot 0.8.1 → 0.9.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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +11 -11
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
  # Dedot
5
5
 
6
- Delightful JavaScript/TypeScript client for [Polkadot](https://polkadot.network/) & [Substrate](https://substrate.io/)
6
+ Delightful JavaScript/TypeScript client for [Polkadot](https://polkadot.com/) & [Polkadot SDK-based](https://github.com/paritytech/polkadot-sdk) blockchains.
7
7
 
8
8
  ![Version][ico-version]
9
9
  ![Unit test][ico-unit-test]
@@ -21,18 +21,18 @@ Delightful JavaScript/TypeScript client for [Polkadot](https://polkadot.network/
21
21
 
22
22
  ---
23
23
 
24
- [Dedot](https://dedot.dev) is the next-generation JavaScript client for Polkadot and Substrate-based blockchains. Designed to elevate the dapp development experience, Dedot is built & optimized to be lightweight and tree-shakable, offering precise Types & APIs suggestions for individual Substrate-based blockchains and ink! Smart Contracts. Dedot also helps dapps efficiently connect to multiple chains simultaneously as we head toward a seamless multi-chain future.
24
+ [Dedot](https://dedot.dev) is the next-generation JavaScript client for Polkadot and Polkadot SDK-based blockchains. Designed to elevate the dapp development experience, Dedot is built & optimized to be lightweight and tree-shakable, offering precise Types & APIs suggestions for individual Polkadot SDK-based blockchain network and ink! Smart Contracts. Dedot also helps dapps efficiently connect to multiple chains simultaneously as we head toward a seamless multi-chain future.
25
25
 
26
26
  ### Features
27
27
 
28
28
  - ✅ Small bundle size, tree-shakable (no more bn.js or wasm-blob tight dependencies)
29
- - ✅ Types & APIs suggestions for each individual Substrate-based blockchain
29
+ - ✅ Types & APIs suggestions for each individual Polkadot SDK-based blockchain
30
30
  network ([@dedot/chaintypes](https://github.com/dedotdev/chaintypes))
31
31
  - ✅ Familiar api style with `@polkadot/api`, [easy & fast migration!](https://docs.dedot.dev/getting-started/pjs-to-dedot)
32
32
  - ✅ Native [TypeScript type system](https://docs.dedot.dev/getting-started/pjs-to-dedot#type-system) for scale-codec
33
33
  - ✅ Compatible with `@polkadot/extension`-based wallets
34
34
  - ✅ Support Metadata V14, V15 (latest)
35
- - ✅ Built-in metadata optimization ([caching](https://docs.dedot.dev/getting-started/connect-to-network#caching-metadata), [compact mode](https://github.com/dedotdev/dedot/issues/45) ⏳)
35
+ - ✅ Built-in metadata optimization ([caching](https://docs.dedot.dev/getting-started/connect-to-network#caching-metadata))
36
36
  - ✅ Build on top of both the [new](https://paritytech.github.io/json-rpc-interface-spec/introduction.html) & [legacy](https://github.com/w3f/PSPs/blob/master/PSPs/drafts/psp-6.md) (
37
37
  deprecated soon) JSON-RPC APIs
38
38
  - ✅ Support [light clients](https://docs.dedot.dev/getting-started/connect-to-network#initializing-dedotclient-and-interact-with-polkadot-network) (e.g: [smoldot](https://www.npmjs.com/package/smoldot))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dedot",
3
- "version": "0.8.1",
3
+ "version": "0.9.0",
4
4
  "description": "A delightful JavaScript/TypeScript client for Polkadot & Substrate",
5
5
  "author": "Thang X. Vu <thang@coongcrafts.io>",
6
6
  "homepage": "https://github.com/dedotdev/dedot",
@@ -21,15 +21,15 @@
21
21
  "clean": "rm -rf ./dist && rm -rf ./tsconfig.tsbuildinfo ./tsconfig.build.tsbuildinfo"
22
22
  },
23
23
  "dependencies": {
24
- "@dedot/api": "0.8.1",
25
- "@dedot/cli": "0.8.1",
26
- "@dedot/codecs": "0.8.1",
27
- "@dedot/contracts": "0.8.1",
28
- "@dedot/providers": "0.8.1",
29
- "@dedot/runtime-specs": "0.8.1",
30
- "@dedot/shape": "0.8.1",
31
- "@dedot/types": "0.8.1",
32
- "@dedot/utils": "0.8.1"
24
+ "@dedot/api": "0.9.0",
25
+ "@dedot/cli": "0.9.0",
26
+ "@dedot/codecs": "0.9.0",
27
+ "@dedot/contracts": "0.9.0",
28
+ "@dedot/providers": "0.9.0",
29
+ "@dedot/runtime-specs": "0.9.0",
30
+ "@dedot/shape": "0.9.0",
31
+ "@dedot/types": "0.9.0",
32
+ "@dedot/utils": "0.9.0"
33
33
  },
34
34
  "exports": {
35
35
  ".": {
@@ -95,7 +95,7 @@
95
95
  "node": ">=18"
96
96
  },
97
97
  "license": "Apache-2.0",
98
- "gitHead": "03ad1a7c81a90b78b39206b30fc96a65537faaee",
98
+ "gitHead": "cebae55a3525e2c9bcdd70322027855a594a287d",
99
99
  "module": "./index.js",
100
100
  "types": "./index.d.ts"
101
101
  }