dedot 0.0.1-alpha.35 → 0.0.1-alpha.36

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
@@ -29,19 +29,19 @@ Try `dedot` now on [CodeSandbox Playground](https://codesandbox.io/p/devbox/tryd
29
29
  - Install `dedot` package
30
30
  ```shell
31
31
  # via yarn
32
- yarn add dedot
32
+ yarn add dedot@latest
33
33
 
34
34
  # via npm
35
- npm i dedot
35
+ npm i dedot@latest
36
36
  ```
37
37
 
38
38
  - Install `@dedot/chaintypes` package for chain types & APIs suggestion. Skip this step if you don't use TypeScript.
39
39
  ```shell
40
40
  # via yarn
41
- yarn add -D @dedot/chaintypes
41
+ yarn add -D @dedot/chaintypes@latest
42
42
 
43
43
  # via npm
44
- npm i -D @dedot/chaintypes
44
+ npm i -D @dedot/chaintypes@latest
45
45
  ```
46
46
 
47
47
  - Initialize the API client and start interacting with Polkadot network
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dedot",
3
- "version": "0.0.1-alpha.35",
3
+ "version": "0.0.1-alpha.36",
4
4
  "description": "A delightful JavaScript/TypeScript client for Polkadot & Substrate",
5
5
  "author": "Thang X. Vu <thang@coongcrafts.io>",
6
6
  "main": "./cjs/index.js",
@@ -15,15 +15,15 @@
15
15
  "clean": "rm -rf ./dist && rm -rf ./tsconfig.tsbuildinfo ./tsconfig.build.tsbuildinfo"
16
16
  },
17
17
  "dependencies": {
18
- "@dedot/api": "0.0.1-alpha.35",
19
- "@dedot/cli": "0.0.1-alpha.35",
20
- "@dedot/codecs": "0.0.1-alpha.35",
21
- "@dedot/contracts": "0.0.1-alpha.35",
22
- "@dedot/providers": "0.0.1-alpha.35",
23
- "@dedot/runtime-specs": "0.0.1-alpha.35",
24
- "@dedot/shape": "0.0.1-alpha.35",
25
- "@dedot/types": "0.0.1-alpha.35",
26
- "@dedot/utils": "0.0.1-alpha.35"
18
+ "@dedot/api": "0.0.1-alpha.36",
19
+ "@dedot/cli": "0.0.1-alpha.36",
20
+ "@dedot/codecs": "0.0.1-alpha.36",
21
+ "@dedot/contracts": "0.0.1-alpha.36",
22
+ "@dedot/providers": "0.0.1-alpha.36",
23
+ "@dedot/runtime-specs": "0.0.1-alpha.36",
24
+ "@dedot/shape": "0.0.1-alpha.36",
25
+ "@dedot/types": "0.0.1-alpha.36",
26
+ "@dedot/utils": "0.0.1-alpha.36"
27
27
  },
28
28
  "exports": {
29
29
  ".": {
@@ -86,7 +86,7 @@
86
86
  "directory": "dist"
87
87
  },
88
88
  "license": "Apache-2.0",
89
- "gitHead": "bf954b82ac4c8a8e1d989c0c708a099269eb4262",
89
+ "gitHead": "798f0b8ce218baf212b8853e4e6eb0cf45157f6e",
90
90
  "module": "./index.js",
91
91
  "types": "./index.d.ts"
92
92
  }