dedot 0.9.2 → 0.9.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.
- package/README.md +6 -0
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -95,6 +95,12 @@ console.log('Pending rewards:', pendingRewards);
|
|
|
95
95
|
- [Introducing Dedot](https://forum.polkadot.network/t/introducing-dedot-a-delightful-javascript-client-for-polkadot-substrate-based-blockchains/8956)
|
|
96
96
|
- [Type-safe APIs to interact with ink! Smart Contracts](https://forum.polkadot.network/t/type-safe-apis-to-interact-with-ink-smart-contracts-dedot/9485)
|
|
97
97
|
|
|
98
|
+
### Real-World Projects Powered by Dedot
|
|
99
|
+
|
|
100
|
+
- [Polkadot Live App](https://polkadot-live.github.io/) ([Github](https://github.com/polkadot-live/polkadot-live-app))
|
|
101
|
+
- [Typink](https://typink.dev/) ([Github](https://github.com/dedotdev/typink))
|
|
102
|
+
- ... add yours? [PRs](https://github.com/dedotdev/docs) are more than welcome!
|
|
103
|
+
|
|
98
104
|
### Acknowledgment
|
|
99
105
|
|
|
100
106
|
[Dedot](https://dedot.dev) take a lot of inspirations from project [@polkadot/api](https://github.com/polkadot-js/api). A big thank to all the maintainers/contributors of this awesome library.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dedot",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.3",
|
|
4
4
|
"description": "A delightful JavaScript/TypeScript client for Polkadot & Substrate",
|
|
5
5
|
"author": "Thang X. Vu <thang@dedot.dev>",
|
|
6
6
|
"homepage": "https://dedot.dev",
|
|
@@ -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.9.
|
|
25
|
-
"@dedot/cli": "0.9.
|
|
26
|
-
"@dedot/codecs": "0.9.
|
|
27
|
-
"@dedot/contracts": "0.9.
|
|
28
|
-
"@dedot/providers": "0.9.
|
|
29
|
-
"@dedot/runtime-specs": "0.9.
|
|
30
|
-
"@dedot/shape": "0.9.
|
|
31
|
-
"@dedot/types": "0.9.
|
|
32
|
-
"@dedot/utils": "0.9.
|
|
24
|
+
"@dedot/api": "0.9.3",
|
|
25
|
+
"@dedot/cli": "0.9.3",
|
|
26
|
+
"@dedot/codecs": "0.9.3",
|
|
27
|
+
"@dedot/contracts": "0.9.3",
|
|
28
|
+
"@dedot/providers": "0.9.3",
|
|
29
|
+
"@dedot/runtime-specs": "0.9.3",
|
|
30
|
+
"@dedot/shape": "0.9.3",
|
|
31
|
+
"@dedot/types": "0.9.3",
|
|
32
|
+
"@dedot/utils": "0.9.3"
|
|
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": "206c4999865cddbd1078bf5b059c7b49822e20d0",
|
|
99
99
|
"module": "./index.js",
|
|
100
100
|
"types": "./index.d.ts"
|
|
101
101
|
}
|