@dedot/codegen 0.0.1-alpha.31 → 0.0.1-alpha.32
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/cjs/generator/ConstsGen.js +5 -5
- package/cjs/generator/ErrorsGen.js +6 -6
- package/cjs/generator/EventsGen.js +6 -6
- package/cjs/generator/IndexGen.js +7 -3
- package/cjs/generator/JsonRpcGen.js +59 -0
- package/cjs/generator/QueryGen.js +21 -12
- package/cjs/generator/RuntimeApisGen.js +96 -21
- package/cjs/generator/TxGen.js +11 -9
- package/cjs/generator/TypeImports.js +13 -3
- package/cjs/generator/TypesGen.js +4 -10
- package/cjs/generator/index.js +1 -1
- package/cjs/generator/known-codecs.js +1 -1
- package/cjs/index.js +29 -28
- package/cjs/templates/consts.hbs +1 -1
- package/cjs/templates/errors.hbs +1 -1
- package/cjs/templates/events.hbs +1 -1
- package/cjs/templates/index.hbs +15 -10
- package/cjs/templates/json-rpc.hbs +5 -0
- package/cjs/templates/query.hbs +1 -1
- package/cjs/templates/runtime.hbs +1 -1
- package/cjs/templates/tx.hbs +1 -1
- package/generator/ApiGen.d.ts +1 -1
- package/generator/ConstsGen.d.ts +2 -2
- package/generator/ConstsGen.js +4 -4
- package/generator/ErrorsGen.d.ts +1 -1
- package/generator/ErrorsGen.js +6 -6
- package/generator/EventsGen.d.ts +1 -1
- package/generator/EventsGen.js +6 -6
- package/generator/IndexGen.d.ts +1 -1
- package/generator/IndexGen.js +7 -3
- package/generator/JsonRpcGen.d.ts +8 -0
- package/generator/JsonRpcGen.js +55 -0
- package/generator/QueryGen.d.ts +2 -2
- package/generator/QueryGen.js +20 -11
- package/generator/RuntimeApisGen.d.ts +5 -5
- package/generator/RuntimeApisGen.js +94 -19
- package/generator/TxGen.d.ts +1 -1
- package/generator/TxGen.js +11 -9
- package/generator/TypeImports.d.ts +8 -1
- package/generator/TypeImports.js +13 -3
- package/generator/TypesGen.d.ts +2 -2
- package/generator/TypesGen.js +4 -10
- package/generator/index.d.ts +1 -1
- package/generator/index.js +1 -1
- package/generator/known-codecs.d.ts +1 -1
- package/generator/known-codecs.js +1 -1
- package/index.d.ts +2 -2
- package/index.js +30 -29
- package/package.json +15 -17
- package/templates/consts.hbs +1 -1
- package/templates/errors.hbs +1 -1
- package/templates/events.hbs +1 -1
- package/templates/index.hbs +15 -10
- package/templates/json-rpc.hbs +5 -0
- package/templates/query.hbs +1 -1
- package/templates/runtime.hbs +1 -1
- package/templates/tx.hbs +1 -1
- package/cjs/generator/RpcGen.js +0 -175
- package/cjs/generator/known-types.js +0 -33
- package/cjs/templates/rpc.hbs +0 -7
- package/generator/RpcGen.d.ts +0 -10
- package/generator/RpcGen.js +0 -171
- package/generator/known-types.d.ts +0 -6
- package/generator/known-types.js +0 -30
- package/templates/rpc.hbs +0 -7
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ConstsGen = void 0;
|
|
4
4
|
const utils_1 = require("@dedot/utils");
|
|
5
|
-
const
|
|
5
|
+
const ApiGen_js_1 = require("./ApiGen.js");
|
|
6
6
|
const utils_js_1 = require("./utils.js");
|
|
7
|
-
class ConstsGen extends
|
|
8
|
-
generate() {
|
|
7
|
+
class ConstsGen extends ApiGen_js_1.ApiGen {
|
|
8
|
+
generate(useSubPaths = false) {
|
|
9
9
|
const { pallets } = this.metadata;
|
|
10
10
|
this.typesGen.clearCache();
|
|
11
|
-
this.typesGen.typeImports.addKnownType('GenericChainConsts');
|
|
11
|
+
this.typesGen.typeImports.addKnownType('GenericChainConsts', 'RpcVersion');
|
|
12
12
|
let defTypeOut = '';
|
|
13
13
|
for (let pallet of pallets) {
|
|
14
14
|
const typedConstants = pallet.constants.map((one) => ({
|
|
@@ -23,7 +23,7 @@ class ConstsGen extends index_js_1.ApiGen {
|
|
|
23
23
|
${(0, utils_js_1.commentBlock)('Generic pallet constant')}[name: string]: any,
|
|
24
24
|
},`;
|
|
25
25
|
}
|
|
26
|
-
const importTypes = this.typesGen.typeImports.toImports();
|
|
26
|
+
const importTypes = this.typesGen.typeImports.toImports({ useSubPaths });
|
|
27
27
|
const template = (0, utils_js_1.compileTemplate)('consts.hbs');
|
|
28
28
|
return (0, utils_js_1.beautifySourceCode)(template({ importTypes, defTypeOut }));
|
|
29
29
|
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ErrorsGen = void 0;
|
|
4
|
+
const utils_1 = require("@dedot/utils");
|
|
4
5
|
const ApiGen_js_1 = require("./ApiGen.js");
|
|
5
6
|
const utils_js_1 = require("./utils.js");
|
|
6
|
-
const utils_1 = require("@dedot/utils");
|
|
7
7
|
class ErrorsGen extends ApiGen_js_1.ApiGen {
|
|
8
|
-
generate() {
|
|
8
|
+
generate(useSubPaths = false) {
|
|
9
9
|
const { pallets } = this.metadata;
|
|
10
10
|
this.typesGen.clearCache();
|
|
11
|
-
this.typesGen.typeImports.addKnownType('GenericChainErrors', 'GenericPalletError');
|
|
11
|
+
this.typesGen.typeImports.addKnownType('GenericChainErrors', 'GenericPalletError', 'RpcVersion');
|
|
12
12
|
let defTypeOut = '';
|
|
13
13
|
for (let pallet of pallets) {
|
|
14
14
|
const errorTypeId = pallet.error;
|
|
@@ -19,13 +19,13 @@ class ErrorsGen extends ApiGen_js_1.ApiGen {
|
|
|
19
19
|
defTypeOut += (0, utils_js_1.commentBlock)(`Pallet \`${pallet.name}\`'s errors`);
|
|
20
20
|
defTypeOut += `${(0, utils_1.stringCamelCase)(pallet.name)}: {
|
|
21
21
|
${errorDefs
|
|
22
|
-
.map(({ name, docs }) => `${(0, utils_js_1.commentBlock)(docs)}${(0, utils_1.stringPascalCase)(name)}: GenericPalletError
|
|
22
|
+
.map(({ name, docs }) => `${(0, utils_js_1.commentBlock)(docs)}${(0, utils_1.stringPascalCase)(name)}: GenericPalletError<Rv>`)
|
|
23
23
|
.join(',\n')}
|
|
24
24
|
|
|
25
|
-
${(0, utils_js_1.commentBlock)('Generic pallet error')}[error: string]: GenericPalletError
|
|
25
|
+
${(0, utils_js_1.commentBlock)('Generic pallet error')}[error: string]: GenericPalletError<Rv>,
|
|
26
26
|
},`;
|
|
27
27
|
}
|
|
28
|
-
const importTypes = this.typesGen.typeImports.toImports();
|
|
28
|
+
const importTypes = this.typesGen.typeImports.toImports({ useSubPaths });
|
|
29
29
|
const template = (0, utils_js_1.compileTemplate)('errors.hbs');
|
|
30
30
|
return (0, utils_js_1.beautifySourceCode)(template({ importTypes, defTypeOut }));
|
|
31
31
|
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.EventsGen = void 0;
|
|
4
|
+
const utils_1 = require("@dedot/utils");
|
|
4
5
|
const ApiGen_js_1 = require("./ApiGen.js");
|
|
5
6
|
const utils_js_1 = require("./utils.js");
|
|
6
|
-
const utils_1 = require("@dedot/utils");
|
|
7
7
|
class EventsGen extends ApiGen_js_1.ApiGen {
|
|
8
|
-
generate() {
|
|
8
|
+
generate(useSubPaths = false) {
|
|
9
9
|
const { pallets } = this.metadata;
|
|
10
10
|
this.typesGen.clearCache();
|
|
11
|
-
this.typesGen.typeImports.addKnownType('GenericChainEvents', 'GenericPalletEvent');
|
|
11
|
+
this.typesGen.typeImports.addKnownType('GenericChainEvents', 'GenericPalletEvent', 'RpcVersion');
|
|
12
12
|
let defTypeOut = '';
|
|
13
13
|
for (let pallet of pallets) {
|
|
14
14
|
const eventTypeId = pallet.event;
|
|
@@ -31,13 +31,13 @@ class EventsGen extends ApiGen_js_1.ApiGen {
|
|
|
31
31
|
}
|
|
32
32
|
return { ...def, genericParts };
|
|
33
33
|
})
|
|
34
|
-
.map(({ name, docs, fields, genericParts }) => `${(0, utils_js_1.commentBlock)(docs)}${(0, utils_1.stringPascalCase)(name)}: GenericPalletEvent
|
|
34
|
+
.map(({ name, docs, fields, genericParts }) => `${(0, utils_js_1.commentBlock)(docs)}${(0, utils_1.stringPascalCase)(name)}: GenericPalletEvent<Rv, ${genericParts.join(', ')}>`)
|
|
35
35
|
.join(',\n')}
|
|
36
36
|
|
|
37
|
-
${(0, utils_js_1.commentBlock)('Generic pallet event')}[prop: string]: GenericPalletEvent
|
|
37
|
+
${(0, utils_js_1.commentBlock)('Generic pallet event')}[prop: string]: GenericPalletEvent<Rv>,
|
|
38
38
|
},`;
|
|
39
39
|
}
|
|
40
|
-
const importTypes = this.typesGen.typeImports.toImports();
|
|
40
|
+
const importTypes = this.typesGen.typeImports.toImports({ useSubPaths });
|
|
41
41
|
const template = (0, utils_js_1.compileTemplate)('events.hbs');
|
|
42
42
|
return (0, utils_js_1.beautifySourceCode)(template({ importTypes, defTypeOut }));
|
|
43
43
|
}
|
|
@@ -1,17 +1,21 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.IndexGen = void 0;
|
|
4
|
-
const utils_js_1 = require("./utils.js");
|
|
5
4
|
const utils_1 = require("@dedot/utils");
|
|
5
|
+
const TypeImports_js_1 = require("./TypeImports.js");
|
|
6
|
+
const utils_js_1 = require("./utils.js");
|
|
6
7
|
class IndexGen {
|
|
7
8
|
chain;
|
|
8
9
|
constructor(chain) {
|
|
9
10
|
this.chain = chain;
|
|
10
11
|
}
|
|
11
|
-
async generate() {
|
|
12
|
+
async generate(useSubPaths = false) {
|
|
12
13
|
const interfaceName = (0, utils_1.stringPascalCase)(this.chain);
|
|
14
|
+
const typeImports = new TypeImports_js_1.TypeImports();
|
|
15
|
+
typeImports.addKnownType('GenericSubstrateApi', 'RpcLegacy', 'RpcV2', 'RpcVersion');
|
|
16
|
+
const importTypes = typeImports.toImports({ useSubPaths });
|
|
13
17
|
const template = (0, utils_js_1.compileTemplate)('index.hbs');
|
|
14
|
-
return (0, utils_js_1.beautifySourceCode)(template({ interfaceName }));
|
|
18
|
+
return (0, utils_js_1.beautifySourceCode)(template({ importTypes, interfaceName }));
|
|
15
19
|
}
|
|
16
20
|
}
|
|
17
21
|
exports.IndexGen = IndexGen;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.JsonRpcGen = void 0;
|
|
4
|
+
const api_1 = require("@dedot/api");
|
|
5
|
+
const ApiGen_js_1 = require("./ApiGen.js");
|
|
6
|
+
const utils_js_1 = require("./utils.js");
|
|
7
|
+
const HIDDEN_RPCS = [
|
|
8
|
+
// Ref: https://github.com/paritytech/polkadot-sdk/blob/43415ef58c143b985e09015cd000dbd65f6d3997/substrate/client/rpc-servers/src/lib.rs#L152C9-L158
|
|
9
|
+
'rpc_methods',
|
|
10
|
+
];
|
|
11
|
+
const ALIAS_RPCS = [
|
|
12
|
+
// TODO include these into the specs
|
|
13
|
+
'account_nextIndex',
|
|
14
|
+
'system_dryRunAt',
|
|
15
|
+
'state_callAt',
|
|
16
|
+
'state_getKeysPagedAt',
|
|
17
|
+
'state_getStorageAt',
|
|
18
|
+
'state_getStorageHashAt',
|
|
19
|
+
'state_getStorageSizeAt',
|
|
20
|
+
'chain_getRuntimeVersion',
|
|
21
|
+
'chain_getHead',
|
|
22
|
+
'chain_getFinalisedHead',
|
|
23
|
+
'childstate_getKeysPagedAt',
|
|
24
|
+
// Subscription pairs
|
|
25
|
+
'chain_subscribeRuntimeVersion',
|
|
26
|
+
'chain_unsubscribeRuntimeVersion',
|
|
27
|
+
'chain_unsubscribeNewHead',
|
|
28
|
+
'chain_subscribeNewHead',
|
|
29
|
+
'subscribe_newHead',
|
|
30
|
+
'unsubscribe_newHead',
|
|
31
|
+
'chain_subscribeFinalisedHeads',
|
|
32
|
+
'chain_unsubscribeFinalisedHeads',
|
|
33
|
+
];
|
|
34
|
+
class JsonRpcGen extends ApiGen_js_1.ApiGen {
|
|
35
|
+
typesGen;
|
|
36
|
+
rpcMethods;
|
|
37
|
+
constructor(typesGen, rpcMethods) {
|
|
38
|
+
super(typesGen);
|
|
39
|
+
this.typesGen = typesGen;
|
|
40
|
+
this.rpcMethods = rpcMethods;
|
|
41
|
+
HIDDEN_RPCS.filter((one) => !rpcMethods.includes(one)).forEach((one) => rpcMethods.push(one));
|
|
42
|
+
rpcMethods.sort();
|
|
43
|
+
}
|
|
44
|
+
generate(useSubPaths = false) {
|
|
45
|
+
this.typesGen.clearCache();
|
|
46
|
+
this.typesGen.typeImports.addKnownType('GenericJsonRpcApis', 'RpcVersion');
|
|
47
|
+
this.typesGen.typeImports.addKnownJsonRpcType('JsonRpcApis');
|
|
48
|
+
const toExclude = Object.values(api_1.subscriptionsInfo).flat();
|
|
49
|
+
const importTypes = this.typesGen.typeImports.toImports({ useSubPaths });
|
|
50
|
+
const template = (0, utils_js_1.compileTemplate)('json-rpc.hbs');
|
|
51
|
+
const jsonRpcMethods = this.rpcMethods
|
|
52
|
+
.filter((one) => !ALIAS_RPCS.includes(one)) // exclude alias rpcs
|
|
53
|
+
.filter((one) => !toExclude.includes(one)) // exclude unsubscribe methods
|
|
54
|
+
.map((one) => `'${one}'`)
|
|
55
|
+
.join(' | ');
|
|
56
|
+
return (0, utils_js_1.beautifySourceCode)(template({ importTypes, jsonRpcMethods }));
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
exports.JsonRpcGen = JsonRpcGen;
|
|
@@ -2,40 +2,48 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.QueryGen = void 0;
|
|
4
4
|
const utils_1 = require("@dedot/utils");
|
|
5
|
-
const
|
|
5
|
+
const ApiGen_js_1 = require("./ApiGen.js");
|
|
6
6
|
const utils_js_1 = require("./utils.js");
|
|
7
|
-
class QueryGen extends
|
|
8
|
-
generate() {
|
|
7
|
+
class QueryGen extends ApiGen_js_1.ApiGen {
|
|
8
|
+
generate(useSubPaths = false) {
|
|
9
9
|
const { pallets } = this.metadata;
|
|
10
10
|
this.typesGen.clearCache();
|
|
11
|
-
this.typesGen.typeImports.addKnownType('GenericChainStorage', 'GenericStorageQuery', 'Callback');
|
|
11
|
+
this.typesGen.typeImports.addKnownType('GenericChainStorage', 'GenericStorageQuery', 'Callback', 'RpcVersion');
|
|
12
12
|
let defTypeOut = '';
|
|
13
13
|
for (let pallet of pallets) {
|
|
14
14
|
const storage = pallet.storage;
|
|
15
15
|
if (!storage)
|
|
16
16
|
continue;
|
|
17
17
|
const queries = storage.entries.map((one) => this.#generateEntry(one));
|
|
18
|
-
const queryDefs = queries.map(({ name, valueType, keyType, docs
|
|
18
|
+
const queryDefs = queries.map(({ name, valueType, keyType, docs, keyTypeOut }) => {
|
|
19
|
+
if (keyTypeOut) {
|
|
20
|
+
return `${(0, utils_js_1.commentBlock)(docs)}${name}: GenericStorageQuery<Rv, (${keyType}) => ${valueType}, ${keyTypeOut}>`;
|
|
21
|
+
}
|
|
22
|
+
else {
|
|
23
|
+
return `${(0, utils_js_1.commentBlock)(docs)}${name}: GenericStorageQuery<Rv, (${keyType}) => ${valueType}>`;
|
|
24
|
+
}
|
|
25
|
+
});
|
|
19
26
|
defTypeOut += (0, utils_js_1.commentBlock)(`Pallet \`${pallet.name}\`'s storage queries`);
|
|
20
27
|
defTypeOut += `${(0, utils_1.stringCamelCase)(pallet.name)}: {
|
|
21
28
|
${queryDefs.join(',\n')}
|
|
22
29
|
|
|
23
|
-
${(0, utils_js_1.commentBlock)('Generic pallet storage query')}[storage: string]: GenericStorageQuery
|
|
30
|
+
${(0, utils_js_1.commentBlock)('Generic pallet storage query')}[storage: string]: GenericStorageQuery<Rv>;
|
|
24
31
|
},`;
|
|
25
32
|
}
|
|
26
|
-
const importTypes = this.typesGen.typeImports.toImports();
|
|
33
|
+
const importTypes = this.typesGen.typeImports.toImports({ useSubPaths });
|
|
27
34
|
const template = (0, utils_js_1.compileTemplate)('query.hbs');
|
|
28
35
|
return (0, utils_js_1.beautifySourceCode)(template({ importTypes, defTypeOut }));
|
|
29
36
|
}
|
|
30
37
|
#generateEntry(entry) {
|
|
31
38
|
const { name, type, docs, modifier } = entry;
|
|
32
|
-
let valueType,
|
|
39
|
+
let valueType, keyTypeOut, keyTypeIn;
|
|
33
40
|
if (type.tag === 'Plain') {
|
|
34
41
|
valueType = this.typesGen.generateType(type.value.valueTypeId, 1, true);
|
|
35
42
|
}
|
|
36
43
|
else if (type.tag === 'Map') {
|
|
37
44
|
valueType = this.typesGen.generateType(type.value.valueTypeId, 1, true);
|
|
38
|
-
|
|
45
|
+
keyTypeOut = this.typesGen.generateType(type.value.keyTypeId, 1, true);
|
|
46
|
+
keyTypeIn = this.typesGen.generateType(type.value.keyTypeId, 1);
|
|
39
47
|
}
|
|
40
48
|
else {
|
|
41
49
|
throw Error('Invalid entry type!');
|
|
@@ -43,14 +51,15 @@ class QueryGen extends index_js_1.ApiGen {
|
|
|
43
51
|
const isOptional = modifier === 'Optional';
|
|
44
52
|
valueType = `${valueType}${isOptional ? ' | undefined' : ''}`;
|
|
45
53
|
docs.push('\n');
|
|
46
|
-
if (
|
|
47
|
-
docs.push(`@param {${
|
|
54
|
+
if (keyTypeIn) {
|
|
55
|
+
docs.push(`@param {${keyTypeIn}} arg`);
|
|
48
56
|
}
|
|
49
57
|
docs.push(`@param {Callback<${valueType}> =} callback`);
|
|
50
58
|
return {
|
|
51
59
|
name: (0, utils_1.normalizeName)(name),
|
|
52
60
|
valueType,
|
|
53
|
-
keyType:
|
|
61
|
+
keyType: keyTypeIn ? `arg: ${keyTypeIn}` : '',
|
|
62
|
+
keyTypeOut,
|
|
54
63
|
docs,
|
|
55
64
|
};
|
|
56
65
|
}
|
|
@@ -1,21 +1,22 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.RuntimeApisGen = void 0;
|
|
4
|
-
const
|
|
5
|
-
const utils_js_1 = require("./utils.js");
|
|
4
|
+
const runtime_specs_1 = require("@dedot/runtime-specs");
|
|
6
5
|
const utils_1 = require("@dedot/utils");
|
|
7
|
-
const
|
|
8
|
-
|
|
6
|
+
const ApiGen_js_1 = require("./ApiGen.js");
|
|
7
|
+
const known_codecs_js_1 = require("./known-codecs.js");
|
|
8
|
+
const utils_js_1 = require("./utils.js");
|
|
9
|
+
class RuntimeApisGen extends ApiGen_js_1.ApiGen {
|
|
9
10
|
typesGen;
|
|
10
11
|
runtimeApis;
|
|
11
12
|
constructor(typesGen, runtimeApis) {
|
|
12
|
-
super(typesGen
|
|
13
|
+
super(typesGen);
|
|
13
14
|
this.typesGen = typesGen;
|
|
14
15
|
this.runtimeApis = runtimeApis;
|
|
15
16
|
}
|
|
16
|
-
generate() {
|
|
17
|
+
generate(useSubPaths = false) {
|
|
17
18
|
this.typesGen.clearCache();
|
|
18
|
-
this.typesGen.typeImports.addKnownType('GenericRuntimeApis', 'GenericRuntimeApiMethod');
|
|
19
|
+
this.typesGen.typeImports.addKnownType('GenericRuntimeApis', 'GenericRuntimeApiMethod', 'RpcVersion');
|
|
19
20
|
let runtimeCallsOut = '';
|
|
20
21
|
if (this.metadata.apis.length > 0) {
|
|
21
22
|
this.metadata.apis.forEach((runtimeApi) => {
|
|
@@ -24,7 +25,7 @@ class RuntimeApisGen extends RpcGen_js_1.RpcGen {
|
|
|
24
25
|
runtimeCallsOut += `${(0, utils_1.stringCamelCase)(runtimeApiName)}: {
|
|
25
26
|
${methods.map((method) => this.#generateMethodDef(runtimeApiName, method)).join('\n')}
|
|
26
27
|
|
|
27
|
-
${(0, utils_js_1.commentBlock)('Generic runtime api call')}[method: string]: GenericRuntimeApiMethod
|
|
28
|
+
${(0, utils_js_1.commentBlock)('Generic runtime api call')}[method: string]: GenericRuntimeApiMethod<Rv>
|
|
28
29
|
}`;
|
|
29
30
|
});
|
|
30
31
|
}
|
|
@@ -41,11 +42,11 @@ class RuntimeApisGen extends RpcGen_js_1.RpcGen {
|
|
|
41
42
|
}))
|
|
42
43
|
.join('\n')}
|
|
43
44
|
|
|
44
|
-
${(0, utils_js_1.commentBlock)('Generic runtime api call')}[method: string]: GenericRuntimeApiMethod
|
|
45
|
+
${(0, utils_js_1.commentBlock)('Generic runtime api call')}[method: string]: GenericRuntimeApiMethod<Rv>
|
|
45
46
|
}`;
|
|
46
47
|
});
|
|
47
48
|
}
|
|
48
|
-
const importTypes = this.typesGen.typeImports.toImports();
|
|
49
|
+
const importTypes = this.typesGen.typeImports.toImports({ useSubPaths });
|
|
49
50
|
const template = (0, utils_js_1.compileTemplate)('runtime.hbs');
|
|
50
51
|
return (0, utils_js_1.beautifySourceCode)(template({ importTypes, runtimeCallsOut }));
|
|
51
52
|
}
|
|
@@ -59,25 +60,25 @@ class RuntimeApisGen extends RpcGen_js_1.RpcGen {
|
|
|
59
60
|
const { docs = [], params, type, runtimeApiName, methodName } = spec;
|
|
60
61
|
const callName = `${runtimeApiName}_${(0, utils_1.stringSnakeCase)(methodName)}`;
|
|
61
62
|
const defaultDocs = [`@callname: ${callName}`];
|
|
62
|
-
this
|
|
63
|
-
params.forEach(({ type }) => this
|
|
63
|
+
this.#addTypeImport(type, false);
|
|
64
|
+
params.forEach(({ type }) => this.#addTypeImport(type));
|
|
64
65
|
const typedParams = params.map((param, idx) => ({
|
|
65
66
|
...param,
|
|
66
67
|
isOptional: this.#isOptionalParam(params, param.type, idx),
|
|
67
|
-
plainType: this
|
|
68
|
+
plainType: this.#getGeneratedTypeName(param.type),
|
|
68
69
|
}));
|
|
69
70
|
const paramsOut = typedParams
|
|
70
71
|
.map(({ name, isOptional, plainType }) => `${(0, utils_1.stringCamelCase)(name)}${isOptional ? '?' : ''}: ${plainType}`)
|
|
71
72
|
.join(', ');
|
|
72
|
-
const typeOut = this
|
|
73
|
-
return `${(0, utils_js_1.commentBlock)(docs, '\n', defaultDocs, typedParams.map(({ plainType, name }) => `@param {${plainType}} ${name}`))}${methodName}: GenericRuntimeApiMethod<(${paramsOut}) => Promise<${typeOut}>>`;
|
|
73
|
+
const typeOut = this.#getGeneratedTypeName(type, false);
|
|
74
|
+
return `${(0, utils_js_1.commentBlock)(docs, '\n', defaultDocs, typedParams.map(({ plainType, name }) => `@param {${plainType}} ${name}`))}${methodName}: GenericRuntimeApiMethod<Rv, (${paramsOut}) => Promise<${typeOut}>>`;
|
|
74
75
|
}
|
|
75
76
|
#generateMethodDef(runtimeApiName, methodDef) {
|
|
76
77
|
const { name: methodName, inputs, output, docs } = methodDef;
|
|
77
78
|
const callName = `${runtimeApiName}_${(0, utils_1.stringSnakeCase)(methodName)}`;
|
|
78
79
|
const defaultDocs = [`@callname: ${callName}`];
|
|
79
80
|
const typeOut = this.typesGen.generateType(output, 1, true);
|
|
80
|
-
this
|
|
81
|
+
this.#addTypeImport(typeOut, false);
|
|
81
82
|
const typedInputs = inputs
|
|
82
83
|
.map((input, idx) => ({
|
|
83
84
|
...input,
|
|
@@ -87,14 +88,14 @@ class RuntimeApisGen extends RpcGen_js_1.RpcGen {
|
|
|
87
88
|
...input,
|
|
88
89
|
isOptional: this.#isOptionalParam(inputs, input.type, idx),
|
|
89
90
|
}));
|
|
90
|
-
this
|
|
91
|
+
this.#addTypeImport(typedInputs.map((t) => t.type));
|
|
91
92
|
const paramsOut = typedInputs
|
|
92
93
|
.map(({ name, type, isOptional }) => `${(0, utils_1.stringCamelCase)(name)}${isOptional ? '?' : ''}: ${type}`)
|
|
93
94
|
.join(', ');
|
|
94
|
-
return `${(0, utils_js_1.commentBlock)(docs, '\n', defaultDocs, typedInputs.map(({ type, name }) => `@param {${type}} ${name}`))}${(0, utils_1.stringCamelCase)(methodName)}: GenericRuntimeApiMethod<(${paramsOut}) => Promise<${typeOut}>>`;
|
|
95
|
+
return `${(0, utils_js_1.commentBlock)(docs, '\n', defaultDocs, typedInputs.map(({ type, name }) => `@param {${type}} ${name}`))}${(0, utils_1.stringCamelCase)(methodName)}: GenericRuntimeApiMethod<Rv, (${paramsOut}) => Promise<${typeOut}>>`;
|
|
95
96
|
}
|
|
96
97
|
#targetRuntimeApiSpecs() {
|
|
97
|
-
const specs = this.runtimeApis.map(([runtimeApiHash, version]) => {
|
|
98
|
+
const specs = Object.entries(this.runtimeApis).map(([runtimeApiHash, version]) => {
|
|
98
99
|
const runtimeApiSpec = this.#findRuntimeApiSpec(runtimeApiHash, version);
|
|
99
100
|
if (!runtimeApiSpec)
|
|
100
101
|
return;
|
|
@@ -111,8 +112,82 @@ class RuntimeApisGen extends RpcGen_js_1.RpcGen {
|
|
|
111
112
|
}, []);
|
|
112
113
|
}
|
|
113
114
|
#findRuntimeApiSpec = (runtimeApiHash, version) => {
|
|
114
|
-
const runtimeApiName = (0,
|
|
115
|
-
return (0,
|
|
115
|
+
const runtimeApiName = (0, runtime_specs_1.getRuntimeApiNames)().find((one) => (0, utils_1.calcRuntimeApiHash)(one) === runtimeApiHash);
|
|
116
|
+
return (0, runtime_specs_1.getRuntimeApiSpecs)().find((one) => one.runtimeApiName === runtimeApiName && one.version === version);
|
|
116
117
|
};
|
|
118
|
+
// TODO check typeIn, typeOut if param type, or rpc type isScale
|
|
119
|
+
#addTypeImport(type, toTypeIn = true) {
|
|
120
|
+
if (Array.isArray(type)) {
|
|
121
|
+
type.forEach((one) => this.#addTypeImport(one, toTypeIn));
|
|
122
|
+
return;
|
|
123
|
+
}
|
|
124
|
+
type = type.trim();
|
|
125
|
+
if ((0, utils_js_1.isNativeType)(type)) {
|
|
126
|
+
return;
|
|
127
|
+
}
|
|
128
|
+
// Handle generic wrapper types
|
|
129
|
+
const matchArray = type.match(utils_js_1.WRAPPER_TYPE_REGEX);
|
|
130
|
+
if (matchArray) {
|
|
131
|
+
const [_, $1, $2] = matchArray;
|
|
132
|
+
this.#addTypeImport($1, toTypeIn);
|
|
133
|
+
if ($2.match(utils_js_1.WRAPPER_TYPE_REGEX) || $2.match(utils_js_1.TUPLE_TYPE_REGEX)) {
|
|
134
|
+
this.#addTypeImport($2, toTypeIn);
|
|
135
|
+
}
|
|
136
|
+
else {
|
|
137
|
+
this.#addTypeImport($2.split(','), toTypeIn);
|
|
138
|
+
}
|
|
139
|
+
return;
|
|
140
|
+
}
|
|
141
|
+
// Check tuple type
|
|
142
|
+
if (type.match(utils_js_1.TUPLE_TYPE_REGEX)) {
|
|
143
|
+
this.#addTypeImport(type.slice(1, -1).split(','), toTypeIn);
|
|
144
|
+
return;
|
|
145
|
+
}
|
|
146
|
+
if (type.includes(' | ')) {
|
|
147
|
+
this.#addTypeImport(type.split(' | ').map((one) => one.trim()), toTypeIn);
|
|
148
|
+
return;
|
|
149
|
+
}
|
|
150
|
+
try {
|
|
151
|
+
const codecType = this.#getCodecType(type, toTypeIn);
|
|
152
|
+
if ((0, utils_js_1.isNativeType)(codecType))
|
|
153
|
+
return;
|
|
154
|
+
this.typesGen.typeImports.addCodecType(codecType);
|
|
155
|
+
return;
|
|
156
|
+
}
|
|
157
|
+
catch (e) { }
|
|
158
|
+
this.typesGen.addTypeImport(type);
|
|
159
|
+
}
|
|
160
|
+
#getGeneratedTypeName(type, toTypeIn = true) {
|
|
161
|
+
try {
|
|
162
|
+
const matchArray = type.match(utils_js_1.WRAPPER_TYPE_REGEX);
|
|
163
|
+
if (matchArray) {
|
|
164
|
+
const [_, $1, $2] = matchArray;
|
|
165
|
+
const wrapperTypeName = this.#getCodecType($1, toTypeIn);
|
|
166
|
+
if ($2.match(utils_js_1.WRAPPER_TYPE_REGEX) || $2.match(utils_js_1.TUPLE_TYPE_REGEX)) {
|
|
167
|
+
return `${wrapperTypeName}<${this.#getGeneratedTypeName($2, toTypeIn)}>`;
|
|
168
|
+
}
|
|
169
|
+
const innerTypeNames = $2
|
|
170
|
+
.split(',')
|
|
171
|
+
.map((one) => this.#getGeneratedTypeName(one.trim(), toTypeIn))
|
|
172
|
+
.join(', ');
|
|
173
|
+
return `${wrapperTypeName}<${innerTypeNames}>`;
|
|
174
|
+
}
|
|
175
|
+
else if (type.match(utils_js_1.TUPLE_TYPE_REGEX)) {
|
|
176
|
+
const innerTypeNames = type
|
|
177
|
+
.slice(1, -1)
|
|
178
|
+
.split(',')
|
|
179
|
+
.map((one) => this.#getGeneratedTypeName(one.trim(), toTypeIn))
|
|
180
|
+
.join(', ');
|
|
181
|
+
return `[${innerTypeNames}]`;
|
|
182
|
+
}
|
|
183
|
+
return this.#getCodecType(type, toTypeIn);
|
|
184
|
+
}
|
|
185
|
+
catch (e) { }
|
|
186
|
+
return type;
|
|
187
|
+
}
|
|
188
|
+
#getCodecType(type, toTypeIn = true) {
|
|
189
|
+
const { typeIn, typeOut } = (0, known_codecs_js_1.findKnownCodecType)(type);
|
|
190
|
+
return toTypeIn ? typeIn : typeOut;
|
|
191
|
+
}
|
|
117
192
|
}
|
|
118
193
|
exports.RuntimeApisGen = RuntimeApisGen;
|
package/cjs/generator/TxGen.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.TxGen = void 0;
|
|
4
|
-
const index_js_1 = require("../generator/index.js");
|
|
5
4
|
const utils_1 = require("@dedot/utils");
|
|
5
|
+
const index_js_1 = require("../generator/index.js");
|
|
6
6
|
const utils_js_1 = require("./utils.js");
|
|
7
7
|
class TxGen extends index_js_1.ApiGen {
|
|
8
|
-
generate() {
|
|
8
|
+
generate(useSubPaths = false) {
|
|
9
9
|
const { pallets, types } = this.metadata;
|
|
10
10
|
this.typesGen.clearCache();
|
|
11
|
-
this.typesGen.typeImports.addKnownType('GenericChainTx', 'GenericTxCall', 'ISubmittableExtrinsic', 'ISubmittableResult', 'IRuntimeTxCall');
|
|
11
|
+
this.typesGen.typeImports.addKnownType('GenericChainTx', 'GenericTxCall', 'ISubmittableExtrinsic', 'ISubmittableResult', 'IRuntimeTxCall', 'RpcVersion', 'RpcV2', 'ISubmittableExtrinsicLegacy', 'TransactionStatusLegacy', 'TransactionStatusV2');
|
|
12
12
|
const { callTypeId, addressTypeId, signatureTypeId } = this.metadata.extrinsic;
|
|
13
13
|
const callTypeIn = this.typesGen.generateType(callTypeId, 1);
|
|
14
14
|
const addressTypeIn = this.typesGen.generateType(addressTypeId, 1);
|
|
@@ -44,20 +44,22 @@ class TxGen extends index_js_1.ApiGen {
|
|
|
44
44
|
txDefsOut += (0, utils_js_1.commentBlock)(`Pallet \`${pallet.name}\`'s transaction calls`);
|
|
45
45
|
txDefsOut += `${(0, utils_1.stringCamelCase)(pallet.name)}: {
|
|
46
46
|
${typedTxs
|
|
47
|
-
.map(({ functionName, params, docs, callInput }) => `${(0, utils_js_1.commentBlock)(docs, '\n', params.map((p) => `@param {${p.type}} ${p.normalizedName} ${p.docs}`))}${functionName}: GenericTxCall<(${params.map((p) => `${p.normalizedName}: ${p.type}`).join(', ')}) => ChainSubmittableExtrinsic
|
|
47
|
+
.map(({ functionName, params, docs, callInput }) => `${(0, utils_js_1.commentBlock)(docs, '\n', params.map((p) => `@param {${p.type}} ${p.normalizedName} ${p.docs}`))}${functionName}: GenericTxCall<Rv, (${params.map((p) => `${p.normalizedName}: ${p.type}`).join(', ')}) => ChainSubmittableExtrinsic<Rv, ${callInput}>>`)
|
|
48
48
|
.join(',\n')}
|
|
49
49
|
|
|
50
|
-
${(0, utils_js_1.commentBlock)('Generic pallet tx call')}[callName: string]: GenericTxCall<TxCall
|
|
50
|
+
${(0, utils_js_1.commentBlock)('Generic pallet tx call')}[callName: string]: GenericTxCall<Rv, TxCall<Rv>>,
|
|
51
51
|
},`;
|
|
52
52
|
}
|
|
53
|
-
const importTypes = this.typesGen.typeImports.toImports();
|
|
53
|
+
const importTypes = this.typesGen.typeImports.toImports({ useSubPaths });
|
|
54
54
|
// TODO make explicit separate type for Extra
|
|
55
55
|
const defTypes = `
|
|
56
|
-
export type ChainSubmittableExtrinsic<T extends IRuntimeTxCall = ${callTypeIn}> =
|
|
56
|
+
export type ChainSubmittableExtrinsic<Rv extends RpcVersion, T extends IRuntimeTxCall = ${callTypeIn}> =
|
|
57
57
|
Extrinsic<${addressTypeIn}, T, ${signatureTypeIn}, any[]> &
|
|
58
|
-
|
|
58
|
+
(Rv extends RpcV2
|
|
59
|
+
? ISubmittableExtrinsic<ISubmittableResult<FrameSystemEventRecord, TransactionStatusV2>>
|
|
60
|
+
: ISubmittableExtrinsicLegacy<ISubmittableResult<FrameSystemEventRecord, TransactionStatusLegacy>>)
|
|
59
61
|
|
|
60
|
-
export type TxCall = (...args: any[]) => ChainSubmittableExtrinsic
|
|
62
|
+
export type TxCall<Rv extends RpcVersion> = (...args: any[]) => ChainSubmittableExtrinsic<Rv>;
|
|
61
63
|
`;
|
|
62
64
|
const template = (0, utils_js_1.compileTemplate)('tx.hbs');
|
|
63
65
|
return (0, utils_js_1.beautifySourceCode)(template({ importTypes, defTypes, txDefsOut }));
|
|
@@ -8,30 +8,37 @@ class TypeImports {
|
|
|
8
8
|
codecTypes;
|
|
9
9
|
// Known types that're not codecs or chain/portable types defined in @dedot/types
|
|
10
10
|
knownTypes;
|
|
11
|
+
knownJsonRpcTypes;
|
|
11
12
|
// External types to define explicitly
|
|
12
13
|
outTypes;
|
|
13
14
|
constructor() {
|
|
14
15
|
this.portableTypes = new Set();
|
|
15
16
|
this.codecTypes = new Set();
|
|
16
17
|
this.knownTypes = new Set();
|
|
18
|
+
this.knownJsonRpcTypes = new Set();
|
|
17
19
|
this.outTypes = new Set();
|
|
18
20
|
}
|
|
19
21
|
clear() {
|
|
20
22
|
this.portableTypes.clear();
|
|
21
23
|
this.codecTypes.clear();
|
|
22
24
|
this.knownTypes.clear();
|
|
25
|
+
this.knownJsonRpcTypes.clear();
|
|
23
26
|
this.outTypes.clear();
|
|
24
27
|
}
|
|
25
|
-
toImports(
|
|
28
|
+
toImports(config) {
|
|
29
|
+
const { excludeModules = [], useSubPaths = false } = config || {};
|
|
26
30
|
// TODO generate outTypes!
|
|
31
|
+
const prefix = useSubPaths ? '' : '@';
|
|
27
32
|
const toImports = [
|
|
28
|
-
[this.knownTypes,
|
|
29
|
-
[this.
|
|
33
|
+
[this.knownTypes, `${prefix}dedot/types`],
|
|
34
|
+
[this.knownJsonRpcTypes, `${prefix}dedot/types/json-rpc`],
|
|
35
|
+
[this.codecTypes, `${prefix}dedot/codecs`],
|
|
30
36
|
[this.portableTypes, './types'],
|
|
31
37
|
];
|
|
32
38
|
return toImports
|
|
33
39
|
.filter(([_, module]) => !excludeModules.includes(module))
|
|
34
40
|
.map(([types, module]) => this.#toImportLine(types, module))
|
|
41
|
+
.filter((line) => line.length > 0)
|
|
35
42
|
.join('\n');
|
|
36
43
|
}
|
|
37
44
|
#toImportLine(types, module) {
|
|
@@ -49,6 +56,9 @@ class TypeImports {
|
|
|
49
56
|
addKnownType(...types) {
|
|
50
57
|
types.forEach((one) => this.knownTypes.add(one));
|
|
51
58
|
}
|
|
59
|
+
addKnownJsonRpcType(...types) {
|
|
60
|
+
types.forEach((one) => this.knownJsonRpcTypes.add(one));
|
|
61
|
+
}
|
|
52
62
|
addOutType(...types) {
|
|
53
63
|
types.forEach((one) => this.outTypes.add(one));
|
|
54
64
|
}
|
|
@@ -3,10 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.TypesGen = exports.BASIC_KNOWN_TYPES = void 0;
|
|
4
4
|
const codecs_1 = require("@dedot/codecs");
|
|
5
5
|
const utils_1 = require("@dedot/utils");
|
|
6
|
-
const utils_js_1 = require("./utils.js");
|
|
7
|
-
const known_types_js_1 = require("./known-types.js");
|
|
8
6
|
const TypeImports_js_1 = require("./TypeImports.js");
|
|
9
7
|
const known_codecs_js_1 = require("./known-codecs.js");
|
|
8
|
+
const utils_js_1 = require("./utils.js");
|
|
10
9
|
// Skip generate types for these
|
|
11
10
|
// as we do have native types for them
|
|
12
11
|
const SKIP_TYPES = [
|
|
@@ -44,7 +43,7 @@ class TypesGen {
|
|
|
44
43
|
this.includedTypes = this.#includedTypes();
|
|
45
44
|
this.typeImports = new TypeImports_js_1.TypeImports();
|
|
46
45
|
}
|
|
47
|
-
generate() {
|
|
46
|
+
generate(useSubPaths = false) {
|
|
48
47
|
this.clearCache();
|
|
49
48
|
let defTypeOut = '';
|
|
50
49
|
Object.values(this.includedTypes)
|
|
@@ -55,7 +54,7 @@ class TypesGen {
|
|
|
55
54
|
defTypeOut += `export type ${name} = ${this.generateType(id)};\n\n`;
|
|
56
55
|
}
|
|
57
56
|
});
|
|
58
|
-
const importTypes = this.typeImports.toImports('./types');
|
|
57
|
+
const importTypes = this.typeImports.toImports({ useSubPaths, excludeModules: ['./types'] });
|
|
59
58
|
const template = (0, utils_js_1.compileTemplate)('types.hbs');
|
|
60
59
|
return (0, utils_js_1.beautifySourceCode)(template({ importTypes, defTypeOut }));
|
|
61
60
|
}
|
|
@@ -425,12 +424,7 @@ class TypesGen {
|
|
|
425
424
|
this.typeImports.addCodecType(typeName);
|
|
426
425
|
return;
|
|
427
426
|
}
|
|
428
|
-
|
|
429
|
-
this.typeImports.addKnownType(typeName);
|
|
430
|
-
}
|
|
431
|
-
else {
|
|
432
|
-
this.typeImports.addOutType(typeName);
|
|
433
|
-
}
|
|
427
|
+
this.typeImports.addOutType(typeName);
|
|
434
428
|
}
|
|
435
429
|
}
|
|
436
430
|
exports.TypesGen = TypesGen;
|
package/cjs/generator/index.js
CHANGED
|
@@ -18,7 +18,7 @@ __exportStar(require("./TypesGen.js"), exports);
|
|
|
18
18
|
__exportStar(require("./ApiGen.js"), exports);
|
|
19
19
|
__exportStar(require("./ConstsGen.js"), exports);
|
|
20
20
|
__exportStar(require("./QueryGen.js"), exports);
|
|
21
|
-
__exportStar(require("./
|
|
21
|
+
__exportStar(require("./JsonRpcGen.js"), exports);
|
|
22
22
|
__exportStar(require("./IndexGen.js"), exports);
|
|
23
23
|
__exportStar(require("./ErrorsGen.js"), exports);
|
|
24
24
|
__exportStar(require("./EventsGen.js"), exports);
|
|
@@ -24,9 +24,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.isKnownCodecType = exports.findKnownWrapperCodec = exports.findKnownCodec = exports.findKnownCodecType = exports.looseTypeCodecs = exports.normalizeCodecName = void 0;
|
|
27
|
-
const $ = __importStar(require("@dedot/shape"));
|
|
28
27
|
const Codecs = __importStar(require("@dedot/codecs"));
|
|
29
28
|
const codecs_1 = require("@dedot/codecs");
|
|
29
|
+
const $ = __importStar(require("@dedot/shape"));
|
|
30
30
|
const utils_1 = require("@dedot/utils");
|
|
31
31
|
const normalizeCodecName = (name) => {
|
|
32
32
|
return name.startsWith('$') ? name : `$${name}`;
|