-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathindex.ts
616 lines (532 loc) · 16.5 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
import * as readline from 'readline-sync';
import * as shell from 'shelljs';
import { Keyring } from '@polkadot/api';
import { cryptoWaitReady, decodeAddress, encodeAddress } from '@polkadot/util-crypto';
import { hideBin } from 'yargs/helpers';
import { waitReady } from '@polkadot/wasm-crypto';
import YAML from 'yaml';
import _ from 'lodash';
import fs from 'fs';
import path from 'path';
import yargs from 'yargs';
import { Chain, Config, DockerConfig, DockerNode, Parachain } from './types';
/**
* Check can override file
*
* @param path
* @param yes
*/
const checkOverrideFile = (path: string, yes: boolean) => {
if (fs.existsSync(path) && !yes) {
const res = readline.keyInYN(`'${path}' alraedy exists. Do you wish to override it?`);
if (!res) {
console.log('Bailing... Bye.');
process.exit(0);
}
}
};
/**
* Execute shell command
*
* @param cmd
* @param fatal
*/
const exec = (cmd: string, fatal = true) => {
console.log(`$ ${cmd}`);
const res = shell.exec(cmd, { silent: true });
if (res.code !== 0) {
console.error('Error: Command failed with code', res.code);
console.log(res);
if (fatal) {
process.exit(1);
}
}
return res;
};
/**
* Exit process on fatal
*
* @param args
*/
const fatal = (...args: any[]) => {
console.trace('Error:', ...args);
process.exit(1);
};
/**
* Optionally strip the chain name if it ends with .json
* e.g. /home/foo/bar/dev.json => dev
*
* @param chain
*/
const stripChainspecJsonName = (chain: string) => {
if (!chain.endsWith('.json')) {
return chain;
}
return path.parse(chain.substring(chain.lastIndexOf('/') + 1)).name;
};
/**
* Get chain spec
*
* @param image
* @param chain
*/
const getChainspec = (image: string, chain: string) => {
const tmpChainSpec = `${shell.tempdir()}/${chain}-${new Date().toISOString().slice(0, 10)}.json`;
if (chain.endsWith('.json')) {
exec(
`docker run -v $(pwd)/${chain}:/${chain} --rm ${image} build-spec --chain=/${chain} --disable-default-bootnode > ${tmpChainSpec}`,
);
} else {
exec(`docker run --rm ${image} build-spec --chain=${chain} --disable-default-bootnode > ${tmpChainSpec}`);
}
let spec;
try {
spec = JSON.parse(fs.readFileSync(tmpChainSpec).toString());
shell.rm(tmpChainSpec);
} catch (e) {
return fatal('build spec failed', e);
}
return spec;
};
/**
* Export parachain genesis
*
* @param config
* @param output
*/
const exportParachainGenesis = (parachain: Parachain, output: string) => {
if (!parachain.image) {
return fatal('Missing parachains[].image');
}
const args = [];
if (parachain.chain) {
args.push(`--chain=/app/${getChainspecName(parachain.chain, parachain.id)}`);
}
const absOutput = output.startsWith('/') ? output : `$(pwd)/"${output}"`;
const tmpGenesisWasm = `${shell.tempdir()}/genesis-wasm-${new Date().toISOString().slice(0, 10)}`;
exec(
`docker run -v "${absOutput}":/app --rm ${parachain.image} export-genesis-wasm ${args.join(
' ',
)} > ${tmpGenesisWasm}`,
);
const wasm = fs.readFileSync(tmpGenesisWasm).toString().trim();
shell.rm(tmpGenesisWasm);
const tmpGenesisState = `${shell.tempdir()}/genesis-state-${new Date().toISOString().slice(0, 10)}`;
exec(
`docker run -v "${absOutput}":/app --rm ${parachain.image} export-genesis-state ${args.join(
' ',
)} > ${tmpGenesisState}`,
);
const state = fs.readFileSync(tmpGenesisState).toString().trim();
shell.rm(tmpGenesisState);
return { state, wasm };
};
const jsonStringify = (spec: any) =>
// JSON.stringify will serialize big number to scientific notation such as 1e+21, which is not supported by Substrate
JSON.stringify(
spec,
(_, v) => (typeof v === 'number' ? `@${v.toLocaleString('fullwide', { useGrouping: false })}@` : v),
2,
).replace(/"@(.*?)@"/g, '$1');
/**
* Generate relay chain genesis file
*
* @param config
* @param path
* @param output
*/
const generateRelaychainGenesisFile = (config: Config, path: string, output: string) => {
const relaychain = config.relaychain;
if (!relaychain) {
return fatal('Missing relaychain');
}
if (!relaychain.chain) {
return fatal('Missing relaychain.chain');
}
if (!relaychain.image) {
return fatal('Missing relaychain.image');
}
const spec = getChainspec(relaychain.image, relaychain.chain);
// clear authorities
const runtime = spec.genesis.runtime;
const sessionKeys = runtime.runtime_genesis_config?.session?.keys || runtime.session.keys;
sessionKeys.length = 0;
// add authorities from config
const keyring = new Keyring();
for (const { name } of config.relaychain.nodes) {
const srAcc = keyring.createFromUri(`//${_.startCase(name)}`, undefined, 'sr25519');
const srStash = keyring.createFromUri(`//${_.startCase(name)}//stash`, undefined, 'sr25519');
const edAcc = keyring.createFromUri(`//${_.startCase(name)}`, undefined, 'ed25519');
const ecAcc = keyring.createFromUri(`//${_.startCase(name)}`, undefined, 'ecdsa');
const key = [
srStash.address,
srStash.address,
{
grandpa: edAcc.address,
babe: srAcc.address,
im_online: srAcc.address,
parachain_validator: srAcc.address,
authority_discovery: srAcc.address,
para_validator: srAcc.address,
para_assignment: srAcc.address,
beefy: encodeAddress(ecAcc.publicKey),
},
];
sessionKeys.push(key);
}
// additional patches
if (config.relaychain.runtimeGenesisConfig) {
const hrmp = config.relaychain.runtimeGenesisConfig.hrmp;
if (hrmp) {
hrmp.preopenHrmpChannels = hrmp.preopenHrmpChannels.map((channel) => {
if (!Array.isArray(channel)) {
return [channel.sender, channel.recipient, channel.maxCapacity, channel.maxMessageSize];
} else {
return channel;
}
});
}
_.merge(runtime.runtime_genesis_config || runtime, config.relaychain.runtimeGenesisConfig);
_.merge(runtime.runtime_genesis_config || runtime, config.relaychain.overrides);
}
// genesis parachains
for (const parachain of config.parachains) {
const { wasm, state } = exportParachainGenesis(parachain, output);
if (!parachain.id) {
return fatal('Missing parachains[].id');
}
const para = [
parachain.id,
{
genesis_head: state,
validation_code: wasm,
parachain: parachain.parachain,
},
];
(runtime.runtime_genesis_config || runtime).paras.paras.push(para);
}
const tmpfile = `${shell.tempdir()}/${config.relaychain.chain}.json`;
fs.writeFileSync(tmpfile, jsonStringify(spec));
exec(
`docker run --rm -v "${tmpfile}":/${config.relaychain.chain}.json ${config.relaychain.image} build-spec --raw --chain=/${config.relaychain.chain}.json --disable-default-bootnode > ${path}`,
);
shell.rm(tmpfile);
console.log('Relaychain genesis generated at', path);
};
/**
* Get account address
*
* @param val
*/
const getAddress = (val: string) => {
try {
const addr = decodeAddress(val);
return encodeAddress(addr);
} catch {
// ignore
}
const keyring = new Keyring();
const pair = keyring.createFromUri(`//${_.startCase(val)}`, undefined, 'sr25519');
return pair.address;
};
/**
* Generate node key
*
* @param image
*/
const generateNodeKey = (image: string) => {
const res = exec(`docker run --rm ${image} key generate-node-key`);
return {
key: res.stdout.trim(),
address: res.stderr.trim(),
};
};
/**
* Set parachain runtime value - Support
* for older genesis format where runtime
* keys are prefixed.
*
* @param runtime
* @param key
* @param value
*/
const setParachainRuntimeValue = (runtime: { [index: string]: any }, key: string, value: { [index: string]: any }) => {
const keys = Object.keys(runtime);
const regex = new RegExp(`^(module|frame|pallet|orml)?(?=${key})(${key})$`, 'i');
const matches = keys.filter((key) => key.match(regex));
if (matches.length) {
runtime[matches[0]] = { ...(runtime[matches[0]] || {}), ...value };
return;
}
runtime[key] = value;
};
/**
* Construct the parachain spec name
*
* @param chain
* @param id
*/
const getChainspecName = (chain: Chain | string, id: number) => {
const chainName = typeof chain === 'string' ? chain : chain.base;
return `${stripChainspecJsonName(chainName)}-${id}.json`;
};
/**
* Generate parachain genesis file
*
* @param id
* @param image
* @param chain
* @param output
* @param yes
*/
const generateParachainGenesisFile = (
id: number,
image: string,
chain: Chain | string,
output: string,
yes: boolean,
) => {
if (typeof chain === 'string') {
chain = { base: chain };
}
if (!image) {
return fatal('Missing paras[].image');
}
if (!chain) {
return fatal('Missing paras[].chain');
}
if (!chain.base) {
return fatal('Missing paras[].chain.base');
}
const specname = getChainspecName(chain, id);
const filepath = path.join(output, specname);
checkOverrideFile(filepath, yes);
const spec = getChainspec(image, chain.base);
spec.bootNodes = [];
// Replace `paraId` and `parachainId` with the specified parachain-id.
if (spec.para_id) {
spec.para_id = id;
} else {
spec.paraId = id;
}
const runtime = spec.genesis.runtime;
if (runtime) {
runtime.parachainInfo.parachainId = id;
}
const endowed = [];
if (chain.sudo && runtime.sudo) {
runtime.sudo.key = getAddress(chain.sudo);
endowed.push(runtime.sudo.key);
}
if (chain.collators) {
const invulnerables = chain.collators.map(getAddress);
if (!chain.skipCollatorSelection) {
setParachainRuntimeValue(runtime, 'collatorSelection', { invulnerables: invulnerables });
}
setParachainRuntimeValue(runtime, 'session', {
keys: chain.collators.map((x) => {
const addr = getAddress(x);
return [addr, addr, { aura: addr }];
}),
});
endowed.push(...invulnerables);
}
if (endowed.length) {
const decimals = _.get(spec, 'properties.tokenDecimals[0]') || _.get(spec, 'properties.tokenDecimals') || 15;
const balances: [string, number][] =
_.get(runtime, 'balances.balances') || _.get(runtime, 'palletBalances.balances') || [];
const balObj: { [index: string]: number } = {};
for (const [addr, val] of balances) {
balObj[addr] = val;
}
if (chain.runtimeGenesisConfig?.balances) {
for (const [addr, val] of chain.runtimeGenesisConfig.balances.balances) {
balObj[addr] = (balObj[addr] || 0) + val;
}
delete chain.runtimeGenesisConfig.balances;
}
for (const addr of endowed) {
balObj[addr] = (balObj[addr] || 0) + Math.pow(10, decimals) * 1000;
}
if (!chain.skipBalances) {
setParachainRuntimeValue(runtime, 'balances', { balances: Object.entries(balObj) });
}
}
if (chain.runtimeGenesisConfig) {
_.merge(runtime, chain.runtimeGenesisConfig);
}
fs.writeFileSync(filepath, jsonStringify(spec));
};
/**
* Generate docker files
*
* @param config
* @param output
* @param yes
*/
const generateDockerfiles = (config: Config, output: string, yes: boolean) => {
const relaychainDockerfilePath = path.join(output, 'relaychain.Dockerfile');
checkOverrideFile(relaychainDockerfilePath, yes);
const relaychainDockerfile = [`FROM ${config.relaychain.image}`, 'COPY . /app'];
fs.writeFileSync(relaychainDockerfilePath, relaychainDockerfile.join('\n'));
for (const parachain of config.parachains) {
const parachainDockerfilePath = path.join(output, `parachain-${parachain.id}.Dockerfile`);
checkOverrideFile(parachainDockerfilePath, yes);
const parachainDockerfile = [`FROM ${parachain.image}`, 'COPY . /app'];
fs.writeFileSync(parachainDockerfilePath, parachainDockerfile.join('\n'));
}
};
/**
* Generate docker compose files
*
* @param config
* @param args
*/
const generate = async (config: Config, { output, yes }: { output: string; yes: boolean }) => {
await cryptoWaitReady();
await waitReady();
if (!config?.relaychain?.chain) {
return fatal('Missing relaychain.chain');
}
if (!config?.relaychain?.image) {
return fatal('Missing relaychain.image');
}
const relaychainGenesisFilePath = path.join(output, `${config.relaychain.chain}.json`);
checkOverrideFile(relaychainGenesisFilePath, yes);
const dockerComposePath = path.join(output, 'docker-compose.yml');
checkOverrideFile(dockerComposePath, yes);
fs.mkdirSync(output, { recursive: true });
for (const parachain of config.parachains) {
generateParachainGenesisFile(parachain.id, parachain.image, parachain.chain, output, yes);
}
generateRelaychainGenesisFile(config, relaychainGenesisFilePath, output);
generateDockerfiles(config, output, yes);
const dockerCompose: DockerConfig = {
version: '3.7',
services: {},
volumes: {},
};
const ulimits = {
nofile: {
soft: 65536,
hard: 65536,
},
};
let idx = 0;
for (const node of config.relaychain.nodes) {
const name = `relaychain-${_.kebabCase(node.name)}`;
const nodeConfig: DockerNode = {
ports: [
...(node.rpcPort === false ? [] : [`${node.rpcPort || 9944 + idx}:9944`]),
...(node.port === false ? [] : [`${node.port || 30333 + idx}:30333`]),
],
volumes: [`${name}:/data`],
build: {
context: '.',
dockerfile: 'relaychain.Dockerfile',
},
command: [
'--base-path=/data',
`--chain=/app/${config.relaychain.chain}.json`,
'--validator',
'--rpc-external',
'--rpc-cors=all',
`--name=${node.name}`,
`--${node.name.toLowerCase()}`,
...(config.relaychain.flags || []),
...(node.flags || []),
],
environment: _.assign({}, config.relaychain.env, node.env),
ulimits,
};
dockerCompose.services[name] = nodeConfig;
dockerCompose.volumes[name] = null;
++idx;
}
for (const parachain of config.parachains) {
let nodeIdx = 0;
const { key: nodeKey, address: nodeAddress } = generateNodeKey(config.relaychain.image);
const volumePath = parachain.volumePath || '/data';
for (const parachainNode of parachain.nodes) {
const name = `parachain-${parachain.id}-${nodeIdx}`;
const nodeConfig: DockerNode = {
ports: [`${parachainNode.rpcPort || 9944 + idx}:9944`, `${parachainNode.port || 30333 + idx}:30333`],
volumes: [`${name}:${volumePath}`],
build: {
context: '.',
dockerfile: `parachain-${parachain.id}.Dockerfile`,
},
command: [
`--base-path=${volumePath}`,
`--chain=/app/${getChainspecName(parachain.chain, parachain.id)}`,
'--rpc-external',
'--rpc-cors=all',
`--name=${name}`,
'--collator',
...(parachain.flags || []),
...(parachainNode.flags || []),
nodeIdx === 0
? `--node-key=${nodeKey}`
: `--bootnodes=/dns/parachain-${parachain.id}-0/tcp/30333/p2p/${nodeAddress}`,
'--listen-addr=/ip4/0.0.0.0/tcp/30333',
'--',
`--chain=/app/${config.relaychain.chain}.json`,
...(parachain.relaychainFlags || []),
...(parachainNode.relaychainFlags || []),
],
environment: _.assign({}, parachain.env, parachainNode.env),
ulimits,
};
dockerCompose.services[name] = nodeConfig;
dockerCompose.volumes[name] = null;
++nodeIdx;
++idx;
}
}
fs.writeFileSync(dockerComposePath, YAML.stringify(dockerCompose));
console.log('docker-compose.yml generated at', dockerComposePath);
};
void yargs(hideBin(process.argv))
.strict()
.options({
output: {
alias: 'o',
type: 'string',
default: 'output',
description: 'The output directory path',
},
yes: {
alias: 'y',
type: 'boolean',
default: false,
description: 'Yes for options',
},
})
.command(
'generate [config]',
'generate the network genesis and docker-compose.yml',
(yargs) =>
yargs.positional('config', {
describe: 'Path to config.yml file',
default: 'config.yml',
}),
(argv) => {
const { config: configPath } = argv;
let config: Config | undefined;
try {
const configFile = fs.readFileSync(configPath, 'utf8');
config = YAML.parse(configFile);
} catch (e) {
console.error('Invalid config file:', configPath, e);
}
if (config) {
// no parachains config(relaychain only)
if (!config.parachains) {
config.parachains = [];
}
generate(config, argv).catch(fatal);
}
},
)
.help('h')
.alias('h', 'help').argv;