dedot 0.9.5 → 0.10.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 CHANGED
@@ -1,4 +1,4 @@
1
- ![Dedot_Baner_final](https://github.com/user-attachments/assets/21402da8-93cb-4441-8688-6fbccb5cfa2b)
1
+ ![Dedot Banner](https://github.com/user-attachments/assets/94a6e1cd-cdaf-4449-8fbf-5762186b9462)
2
2
 
3
3
 
4
4
  # Dedot
@@ -98,8 +98,9 @@ console.log('Pending rewards:', pendingRewards);
98
98
  ### Real-World Projects Powered by Dedot
99
99
 
100
100
  - [Polkadot Live App](https://polkadot-live.github.io/) ([Github](https://github.com/polkadot-live/polkadot-live-app))
101
+ - [Polkadot Staking Dashboard](https://staking.polkadot.cloud/) ([Github](https://github.com/polkadot-cloud/polkadot-staking-dashboard))
101
102
  - [Typink](https://typink.dev/) ([Github](https://github.com/dedotdev/typink))
102
- - ... add yours? [PRs](https://github.com/dedotdev/docs) are more than welcome!
103
+ - ... add yours? PRs are more than welcome!
103
104
 
104
105
  ### Acknowledgment
105
106
 
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("@dedot/merkleized-metadata"), exports);
@@ -0,0 +1 @@
1
+ export * from '@dedot/merkleized-metadata';
@@ -0,0 +1 @@
1
+ export * from '@dedot/merkleized-metadata';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dedot",
3
- "version": "0.9.5",
3
+ "version": "0.10.0",
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,16 @@
21
21
  "clean": "rm -rf ./dist && rm -rf ./tsconfig.tsbuildinfo ./tsconfig.build.tsbuildinfo"
22
22
  },
23
23
  "dependencies": {
24
- "@dedot/api": "0.9.5",
25
- "@dedot/cli": "0.9.5",
26
- "@dedot/codecs": "0.9.5",
27
- "@dedot/contracts": "0.9.5",
28
- "@dedot/providers": "0.9.5",
29
- "@dedot/runtime-specs": "0.9.5",
30
- "@dedot/shape": "0.9.5",
31
- "@dedot/types": "0.9.5",
32
- "@dedot/utils": "0.9.5"
24
+ "@dedot/api": "0.10.0",
25
+ "@dedot/cli": "0.10.0",
26
+ "@dedot/codecs": "0.10.0",
27
+ "@dedot/contracts": "0.10.0",
28
+ "@dedot/merkleized-metadata": "0.10.0",
29
+ "@dedot/providers": "0.10.0",
30
+ "@dedot/runtime-specs": "0.10.0",
31
+ "@dedot/shape": "0.10.0",
32
+ "@dedot/types": "0.10.0",
33
+ "@dedot/utils": "0.10.0"
33
34
  },
34
35
  "exports": {
35
36
  ".": {
@@ -85,6 +86,12 @@
85
86
  "import": "./contracts/index.js",
86
87
  "require": "./cjs/contracts/index.js",
87
88
  "default": "./contracts/index.js"
89
+ },
90
+ "./merkleized-metadata": {
91
+ "types": "./merkleized-metadata/index.d.ts",
92
+ "import": "./merkleized-metadata/index.js",
93
+ "require": "./cjs/merkleized-metadata/index.js",
94
+ "default": "./merkleized-metadata/index.js"
88
95
  }
89
96
  },
90
97
  "publishConfig": {
@@ -95,7 +102,7 @@
95
102
  "node": ">=18"
96
103
  },
97
104
  "license": "Apache-2.0",
98
- "gitHead": "18f4c23ad45330f9de1b3be70d4ce7581eaccb20",
105
+ "gitHead": "b6139d257df621080e3e7a0ce260da19e572c1c5",
99
106
  "module": "./index.js",
100
107
  "types": "./index.d.ts"
101
108
  }