-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi_cli.js
More file actions
221 lines (202 loc) · 7.25 KB
/
Copy pathapi_cli.js
File metadata and controls
221 lines (202 loc) · 7.25 KB
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
const execSync = require("child_process").execSync;
const path = require("path");
const modulePath = path.resolve(__dirname);
function checkDartRuntime() {
try {
execSync("dart --version");
return true;
} catch (e) {
return false;
}
}
// hasher
function hashMessage(hexMessage, hexChainId, hexForkId) {
if (checkDartRuntime()) {
const result = execSync(`dart ${modulePath}/sym-tools-cli.dill hashMessage ${hexMessage} ${hexChainId} ${hexForkId}`);
// console.log(`result: ${result}`);
const resultString = result.toString('utf8');
return JSON.parse(resultString);
} else {
throw new Error("Dart runtime not found");
}
}
function combineMessage(hexMessage, hexV, hexR, hexS) {
if (checkDartRuntime()) {
const result = execSync(`dart ${modulePath}/sym-tools-cli.dill combineMessage ${hexMessage} ${hexV} ${hexR} ${hexS}`);
// console.log(`result: ${result}`);
const resultString = result.toString('utf8');
return JSON.parse(resultString);
} else {
throw new Error("Dart runtime not found");
}
}
// transaction
function composeSendTransaction(from, hexNonce, hexGasPrice, hexGasLimit, to, hexValue, hexData, hexType, warrantNode, hexExtraData, hexChainId, hexForkId) {
if (checkDartRuntime()) {
const result = execSync(`dart ${modulePath}/sym-tools-cli.dill composeSendTransaction ${from} ${hexNonce} ${hexGasPrice} ${hexGasLimit} ${to} ${hexValue} ${hexData} ${hexType} ${warrantNode} ${hexExtraData} ${hexChainId} ${hexForkId}`);
// console.log(`result: ${result}`);
const resultString = result.toString('utf8');
return JSON.parse(resultString);
} else {
throw new Error("Dart runtime not found");
}
}
function composeSct(sctType, methodName, params) {
if (checkDartRuntime()) {
const result = execSync(`dart ${modulePath}/sym-tools-cli.dill composeSct ${sctType} ${methodName} '${JSON.stringify(params)}'`);
// console.log(`result: ${result}`);
const resultString = result.toString('utf8');
return JSON.parse(resultString);
} else {
throw new Error("Dart runtime not found");
}
}
function composeSct20Transfer(recipient, amount) {
if (checkDartRuntime()) {
const result = execSync(`dart ${modulePath}/sym-tools-cli.dill composeSct20Transfer ${recipient} ${amount}`);
// console.log(`result: ${result}`);
const resultString = result.toString('utf8');
return JSON.parse(resultString);
} else {
throw new Error("Dart runtime not found");
}
}
function composeSct21Transfer(recipient, amount) {
if (checkDartRuntime()) {
const result = execSync(`dart ${modulePath}/sym-tools-cli.dill composeSct21Transfer ${recipient} ${amount}`);
// console.log(`result: ${result}`);
const resultString = result.toString('utf8');
return JSON.parse(resultString);
} else {
throw new Error("Dart runtime not found");
}
}
function composeSct22Transfer(recipient, amount) {
if (checkDartRuntime()) {
const result = execSync(`dart ${modulePath}/sym-tools-cli.dill composeSct22Transfer ${recipient} ${amount}`);
// console.log(`result: ${result}`);
const resultString = result.toString('utf8');
return JSON.parse(resultString);
} else {
throw new Error("Dart runtime not found");
}
}
function parseRawTx(rawTx) {
if (checkDartRuntime()) {
const result = execSync(`dart ${modulePath}/sym-tools-cli.dill parseRawTx ${rawTx}`);
// console.log(`result: ${result}`);
const resultString = result.toString('utf8');
return JSON.parse(resultString);
} else {
throw new Error("Dart runtime not found");
}
}
function parseSct(hexSctMethod) {
if (checkDartRuntime()) {
const result = execSync(`dart ${modulePath}/sym-tools-cli.dill parseSct ${hexSctMethod}`);
// console.log(`result: ${result}`);
const resultString = result.toString('utf8');
return JSON.parse(resultString);
} else {
throw new Error("Dart runtime not found");
}
}
function recover(hexMessage, hexV, hexR, hexS, hexChainId, hexForkId) {
if (checkDartRuntime()) {
const result = execSync(`dart ${modulePath}/sym-tools-cli.dill recover ${hexMessage} ${hexV} ${hexR} ${hexS} ${hexChainId} ${hexForkId}`);
// console.log(`result: ${result}`);
const resultString = result.toString('utf8');
return JSON.parse(resultString);
} else {
throw new Error("Dart runtime not found");
}
}
function recoverFromRawTx(hexRawTx, hexChainId, hexForkId) {
if (checkDartRuntime()) {
const result = execSync(`dart ${modulePath}/sym-tools-cli.dill recoverFromRawTx ${hexRawTx} ${hexChainId} ${hexForkId}`);
// console.log(`result: ${result}`);
const resultString = result.toString('utf8');
return JSON.parse(resultString);
} else {
throw new Error("Dart runtime not found");
}
}
function _signMessage(hexCredentials, hexMessage, hexChainId, hexForkId) {
if (checkDartRuntime()) {
const result = execSync(`dart ${modulePath}/sym-tools-cli.dill _signMessage ${hexCredentials} ${hexMessage} ${hexChainId} ${hexForkId}`);
// console.log(`result: ${result}`);
const resultString = result.toString('utf8');
return JSON.parse(resultString);
} else {
throw new Error("Dart runtime not found");
}
}
// utils
function toValueString(hexValue, srcRadix, dstRadix) {
if (checkDartRuntime()) {
const result = execSync(`dart ${modulePath}/sym-tools-cli.dill toValueString ${hexValue} ${srcRadix} ${dstRadix}`);
// console.log(`result: ${result}`);
return result.toString('utf8').trim();
} else {
throw new Error("Dart runtime not found");
}
}
function stringToUtf8(str) {
if (checkDartRuntime()) {
const result = execSync(`dart ${modulePath}/sym-tools-cli.dill stringToUtf8 ${str}`);
// console.log(`result: ${result}`);
return result.toString('utf8').trim();
} else {
throw new Error("Dart runtime not found");
}
}
function utf8ToString(hexStr) {
if (checkDartRuntime()) {
const result = execSync(`dart ${modulePath}/sym-tools-cli.dill utf8ToString ${hexStr}`);
// console.log(`result: ${result}`);
return result.toString('utf8').trim();
} else {
throw new Error("Dart runtime not found");
}
}
function toRlp(hexParams) {
if (checkDartRuntime()) {
const result = execSync(`dart ${modulePath}/sym-tools-cli.dill toRlp '${JSON.stringify(hexParams)}'`);
// console.log(`result: ${result}`);
return result.toString('utf8').trim();
} else {
throw new Error("Dart runtime not found");
}
}
function pubkeyHash(hexPublicKey) {
if (checkDartRuntime()) {
const result = execSync(`dart ${modulePath}/sym-tools-cli.dill pubkeyHash ${hexPublicKey}`);
// console.log(`result: ${result}`);
return result.toString('utf8').trim();
} else {
throw new Error("Dart runtime not found");
}
}
exports.hasher = {
hashMessage: hashMessage,
combineMessage: combineMessage
}
exports.transaction = {
composeSendTransaction: composeSendTransaction,
composeSct: composeSct,
composeSct20Transfer: composeSct20Transfer,
composeSct21Transfer: composeSct21Transfer,
composeSct22Transfer: composeSct22Transfer,
parseRawTx: parseRawTx,
parseSct: parseSct,
recover: recover,
recoverFromRawTx: recoverFromRawTx,
_signMessage: _signMessage
}
exports.utils = {
toValueString: toValueString,
stringToUtf8: stringToUtf8,
utf8ToString: utf8ToString,
toRlp: toRlp,
pubkeyHash: pubkeyHash
}