dedot 0.7.1 → 0.8.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/README.md +5 -0
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -39,6 +39,11 @@ Delightful JavaScript/TypeScript client for [Polkadot](https://polkadot.network/
|
|
|
39
39
|
- ✅ [Typed Contract APIs](https://docs.dedot.dev/ink-smart-contracts/intro)
|
|
40
40
|
- ✅ Fully-typed low-level [JSON-RPC client](https://docs.dedot.dev/clients-and-providers/clients#jsonrpcclient)
|
|
41
41
|
|
|
42
|
+
> [!TIP]
|
|
43
|
+
> Are you developing an [ink!](https://use.ink/) dApp?
|
|
44
|
+
>
|
|
45
|
+
> Check out [Typink](https://github.com/dedotdev/typink) (https://typink.dev), a comprehensive toolkit for ink! dApp development, built on Dedot!
|
|
46
|
+
|
|
42
47
|
### Documentation
|
|
43
48
|
Check out Dedot documentation on the website: https://dedot.dev
|
|
44
49
|
- [Getting started](https://docs.dedot.dev/getting-started/installation)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dedot",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.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.
|
|
25
|
-
"@dedot/cli": "0.
|
|
26
|
-
"@dedot/codecs": "0.
|
|
27
|
-
"@dedot/contracts": "0.
|
|
28
|
-
"@dedot/providers": "0.
|
|
29
|
-
"@dedot/runtime-specs": "0.
|
|
30
|
-
"@dedot/shape": "0.
|
|
31
|
-
"@dedot/types": "0.
|
|
32
|
-
"@dedot/utils": "0.
|
|
24
|
+
"@dedot/api": "0.8.0",
|
|
25
|
+
"@dedot/cli": "0.8.0",
|
|
26
|
+
"@dedot/codecs": "0.8.0",
|
|
27
|
+
"@dedot/contracts": "0.8.0",
|
|
28
|
+
"@dedot/providers": "0.8.0",
|
|
29
|
+
"@dedot/runtime-specs": "0.8.0",
|
|
30
|
+
"@dedot/shape": "0.8.0",
|
|
31
|
+
"@dedot/types": "0.8.0",
|
|
32
|
+
"@dedot/utils": "0.8.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": "
|
|
98
|
+
"gitHead": "95644163050c58b8d18bebf780734b308bb7a4b3",
|
|
99
99
|
"module": "./index.js",
|
|
100
100
|
"types": "./index.d.ts"
|
|
101
101
|
}
|