forked from joticajulian/koilib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generateJsonKoinosProto.js
60 lines (55 loc) · 1.23 KB
/
generateJsonKoinosProto.js
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
/* eslint @typescript-eslint/no-var-requires: "off" */
const fs = require("fs");
const pbjs = require("protobufjs-cli/pbjs");
pbjs.main(
[
"--keep-case",
"--target",
"json",
"./koinos-proto/koinos/common.proto",
"./koinos-proto/koinos/protocol/protocol.proto",
"./koinos-proto/koinos/chain/chain.proto",
],
(err, output) => {
if (err) throw err;
fs.writeFileSync("./src/jsonDescriptors/chain-proto.json", output);
}
);
pbjs.main(
[
"--keep-case",
"--target",
"json",
"./koinos-proto/koinos/contracts/pow/pow.proto",
],
(err, output) => {
if (err) throw err;
fs.writeFileSync("./src/jsonDescriptors/pow-proto.json", output);
}
);
// static modules
pbjs.main(
[
"--keep-case",
"--target",
"static-module",
"./koinos-proto/koinos/protocol/protocol.proto",
"./koinos-proto/koinos/chain/value.proto",
],
(err, output) => {
if (err) throw err;
fs.writeFileSync("./src/protoModules/protocol-proto.js", output);
}
);
pbjs.main(
[
"--keep-case",
"--target",
"static-module",
"./koinos-proto/koinos/chain/value.proto",
],
(err, output) => {
if (err) throw err;
fs.writeFileSync("./src/protoModules/value-proto.js", output);
}
);