dedot 0.0.1-alpha.22 → 0.0.1-alpha.24
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 +7 -1
- package/cjs/client/Dedot.js +4 -1
- package/cjs/extrinsic/extensions/ExtraSignedExtension.js +24 -1
- package/cjs/packageInfo.js +1 -1
- package/package.json +7 -7
- package/packageInfo.js +1 -1
package/README.md
CHANGED
|
@@ -115,7 +115,7 @@ yarn add -D @dedot/chaintypes
|
|
|
115
115
|
npm i -D @dedot/chaintypes
|
|
116
116
|
```
|
|
117
117
|
|
|
118
|
-
Initialize a `
|
|
118
|
+
Initialize a `Dedot` instance using the `ChainApi` interface for a target chain to enable types & APIs suggestion/autocompletion for that particular chain:
|
|
119
119
|
```typescript
|
|
120
120
|
import { Dedot } from 'dedot';
|
|
121
121
|
import type { PolkadotApi, KusamaApi, MoonbeamApi, AstarApi } from '@dedot/chaintypes';
|
|
@@ -239,6 +239,12 @@ await api.query.system.events(async (eventRecords) => {
|
|
|
239
239
|
|
|
240
240
|
`dedot` 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.
|
|
241
241
|
|
|
242
|
+
Proudly supported by Web3 Foundation Grants Program.
|
|
243
|
+
<p align="left">
|
|
244
|
+
<img width="479" src="https://user-images.githubusercontent.com/6867026/227230786-0796214a-3e3f-42af-94e9-d4122c730b62.png">
|
|
245
|
+
</p>
|
|
246
|
+
|
|
247
|
+
|
|
242
248
|
### License
|
|
243
249
|
|
|
244
250
|
[Apache-2.0](https://github.com/dedotdev/dedot/blob/main/LICENSE)
|
package/cjs/client/Dedot.js
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
6
|
exports.Dedot = exports.SUPPORTED_METADATA_VERSIONS = exports.CATCH_ALL_METADATA_KEY = exports.KEEP_ALIVE_INTERVAL = void 0;
|
|
4
7
|
const rpc_provider_1 = require("@polkadot/rpc-provider");
|
|
@@ -6,7 +9,7 @@ const codecs_1 = require("@dedot/codecs");
|
|
|
6
9
|
const executor_1 = require("../executor");
|
|
7
10
|
const proxychain_1 = require("../proxychain");
|
|
8
11
|
const utils_1 = require("@dedot/utils");
|
|
9
|
-
const localforage_1 = require("localforage");
|
|
12
|
+
const localforage_1 = __importDefault(require("localforage"));
|
|
10
13
|
const util_1 = require("@polkadot/util");
|
|
11
14
|
exports.KEEP_ALIVE_INTERVAL = 10_000; // in ms
|
|
12
15
|
exports.CATCH_ALL_METADATA_KEY = `RAW_META/ALL`;
|
|
@@ -1,9 +1,32 @@
|
|
|
1
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 __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
2
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
26
|
exports.ExtraSignedExtension = void 0;
|
|
4
27
|
const SignedExtension_1 = require("./SignedExtension");
|
|
5
28
|
const utils_1 = require("@dedot/utils");
|
|
6
|
-
const $ = require("@dedot/shape");
|
|
29
|
+
const $ = __importStar(require("@dedot/shape"));
|
|
7
30
|
const known_1 = require("./known");
|
|
8
31
|
const util_1 = require("@polkadot/util");
|
|
9
32
|
class ExtraSignedExtension extends SignedExtension_1.SignedExtension {
|
package/cjs/packageInfo.js
CHANGED
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
// THIS FILE IS AUTO-GENERATED, DO NOT EDIT!
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
exports.packageInfo = void 0;
|
|
5
|
-
exports.packageInfo = { name: 'dedot', version: '0.0.1-alpha.
|
|
5
|
+
exports.packageInfo = { name: 'dedot', version: '0.0.1-alpha.23' };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dedot",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.24",
|
|
4
4
|
"description": "A fast & lightweight JavaScript/TypeScript client for Polkadot & Substrate",
|
|
5
5
|
"author": "Thang X. Vu <thang@coongcrafts.io>",
|
|
6
6
|
"homepage": "https://github.com/dedotdev/dedot",
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
"main": "./cjs/index.js",
|
|
13
13
|
"type": "module",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@dedot/chaintypes": "0.0.1-alpha.
|
|
16
|
-
"@dedot/codecs": "0.0.1-alpha.
|
|
17
|
-
"@dedot/shape": "0.0.1-alpha.
|
|
18
|
-
"@dedot/specs": "0.0.1-alpha.
|
|
19
|
-
"@dedot/utils": "0.0.1-alpha.
|
|
15
|
+
"@dedot/chaintypes": "0.0.1-alpha.24",
|
|
16
|
+
"@dedot/codecs": "0.0.1-alpha.24",
|
|
17
|
+
"@dedot/shape": "0.0.1-alpha.24",
|
|
18
|
+
"@dedot/specs": "0.0.1-alpha.24",
|
|
19
|
+
"@dedot/utils": "0.0.1-alpha.24",
|
|
20
20
|
"@polkadot/rpc-provider": "^10.11.2",
|
|
21
21
|
"@polkadot/util": "^12.6.2",
|
|
22
22
|
"@polkadot/util-crypto": "^12.6.2",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@polkadot/keyring": "^12.6.2",
|
|
37
37
|
"@polkadot/types": "^10.11.2"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "1f9e0958a787fbbd99b965e1955d7cdce076ca28",
|
|
40
40
|
"module": "./index.js",
|
|
41
41
|
"types": "./index.d.ts",
|
|
42
42
|
"exports": {
|
package/packageInfo.js
CHANGED