forked from joticajulian/koilib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerateJsonKoinosProto.js
More file actions
42 lines (39 loc) · 866 Bytes
/
Copy pathgenerateJsonKoinosProto.js
File metadata and controls
42 lines (39 loc) · 866 Bytes
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
/* 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/protocol/protocol.proto",
],
(err, output) => {
if (err) throw err;
fs.writeFileSync("./src/jsonDescriptors/protocol-proto.json", output);
}
);
pbjs.main(
[
"--keep-case",
"--target",
"json",
"./koinos-proto/koinos/contracts/token/token.proto",
],
(err, output) => {
if (err) throw err;
fs.writeFileSync("./src/jsonDescriptors/krc20-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);
}
);