-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.js
457 lines (421 loc) · 16 KB
/
index.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
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
'use strict';
// STARTED TOP nodejs/browser hack
(function () {
// FINISHED TOP nodejs/browser hack
const mnemonicUtil = require('./scripts/mnemonic.js');
const hexToBytesTranscoder = require('./scripts/hex-to-bytes-transcoder.js');
const addressTranscodeUtil = require('./scripts/address-transcode.js');
const ledgerCommUtil = require('./scripts/ledger-comm.js');
const transactionTranscodeUtil = require('./scripts/transaction-transcode.js');
const transactionSignUtil = require('./scripts/transaction-sign.js');
const { Transaction, Signature, Base16, Ed25519Signature, PBinaryReader } = require('phantasma-ts');
const leftPad = (number, length) => {
let str = '' + number;
while (str.length < length) {
str = '0' + str;
}
return str;
};
const toWholeNumber = (balance, decimals) => {
if (balance === undefined) {
throw Error('balance is a required parameter.');
}
if (decimals === undefined) {
throw Error('decimals is a required parameter.');
}
// console.log('toWholeNumber', 'balance', balance);
const paddedBalance = leftPad(balance, decimals + 1);
// console.log('toWholeNumber', 'paddedBalance', paddedBalance);
const prefixLength = paddedBalance.length - decimals;
// console.log('toWholeNumber', 'prefixLength', prefixLength);
const prefix = paddedBalance.slice(0, prefixLength);
// console.log('toWholeNumber', 'prefix', prefix);
const suffix = paddedBalance.slice(-decimals);
// console.log('toWholeNumber', 'suffix', suffix);
return `${prefix}.${suffix}`;
};
const getLedgerDeviceInfo = async (config) => {
if (config == undefined) {
throw Error('config is a required parameter.');
}
const version = await ledgerCommUtil.getVersion(config.transport);
const applicationName = await ledgerCommUtil.getApplicationName(config.transport);
return {
version: version,
applicationName: applicationName,
};
};
const getBalanceFromLedger = async (config, options) => {
/* istanbul ignore if */
if (config == undefined) {
throw Error('config is a required parameter.');
}
/* istanbul ignore if */
if (options == undefined) {
throw Error('options is a required parameter.');
}
const msg = await ledgerCommUtil.getPublicKey(config.transport, options);
/* istanbul ignore if */
if (config.debug) {
console.log('getBalanceFromLedger', 'msg', msg);
}
if (msg.success) {
const publicKey = msg.publicKey;
const address = addressTranscodeUtil.getAddressFromPublicKey(publicKey);
/* istanbul ignore if */
if (config.debug) {
console.log('address', address);
console.log('rpc', config.rpc);
}
console.log('rpcAwait', await config.rpc.getAccount(address));
const rpcResponse = await config.rpc.getAccount(address);
if (config.debug) {
console.log('rpcResponse', rpcResponse);
}
const response = {};
response.balances = {};
if (rpcResponse.balances !== undefined) {
rpcResponse.balances.forEach((balanceElt) => {
response.balances[balanceElt.symbol] = toWholeNumber(balanceElt.amount, balanceElt.decimals);
});
}
response.address = address;
response.success = true;
// const lastRefPath = `/transaction/last-ref/${address}`;
// const lastRefResponse = await httpRequestUtil.get(config, lastRefPath);
// response.lastRef = lastRefResponse;
return response;
} else {
return msg;
}
};
const getPoltergeistMnemonic = async (config, mnemonic) => {
/* istanbul ignore if */
if (config == undefined) {
throw Error('config is a required parameter.');
}
/* istanbul ignore if */
if (mnemonic == undefined) {
throw Error('mnemonic is a required parameter.');
}
const poltergeistMnemonic = mnemonicUtil.getPoltergeistMnemonic(config, mnemonic);
const response = {};
response.poltergeistMnemonic = poltergeistMnemonic;
response.success = true;
return response;
};
const getBalanceFromMnemonic = async (config, mnemonic, index) => {
/* istanbul ignore if */
if (config == undefined) {
throw Error('config is a required parameter.');
}
/* istanbul ignore if */
if (mnemonic == undefined) {
throw Error('mnemonic is a required parameter.');
}
/* istanbul ignore if */
if (index == undefined) {
throw Error('index is a required parameter.');
}
/* istanbul ignore if */
if (config.debug) {
console.log('mnemonic', mnemonic);
}
const privateKey = mnemonicUtil.getPrivateKeyFromMnemonic(config, mnemonic, index);
return await getBalanceFromPrivateKey(config, privateKey);
};
const getAddressFromLedeger = async (config, options) => {
/* istanbul ignore if */
if (config == undefined) {
throw Error('config is a required parameter.');
}
/* istanbul ignore if */
if (options == undefined) {
throw Error('options is a required parameter.');
}
const msg = await ledgerCommUtil.getPublicKey(config.transport, options);
/* istanbul ignore if */
if (config.debug) {
console.log('getBalanceFromLedger', 'msg', msg);
}
if (msg.success) {
const publicKey = msg.publicKey;
const address = addressTranscodeUtil.getAddressFromPublicKey(publicKey);
return address;
} else {
return msg;
}
};
const getBalanceFromPrivateKey = async (config, privateKey) => {
/* istanbul ignore if */
if (config == undefined) {
throw Error('config is a required parameter.');
}
/* istanbul ignore if */
if (privateKey == undefined) {
throw Error('privateKey is a required parameter.');
}
/* istanbul ignore if */
if (config.debug) {
console.log('privateKey', privateKey);
}
// https://github.com/phantasma-io/phantasma-ts/blob/7d04aaed839851ae5640f68ab223ca7d92c42016/core/tx/utils.js
const publicKey = transactionSignUtil.getPublicFromPrivate(privateKey);
/* istanbul ignore if */
if (config.debug) {
console.log('publicKey', publicKey);
}
const address = addressTranscodeUtil.getAddressFromPublicKey(publicKey);
/* istanbul ignore if */
if (config.debug) {
console.log('address', address);
}
// const path = `/address/${address}`;
// const response = await httpRequestUtil.get(config, path);
const rpcResponse = await config.rpc.getAccount(address);
if (config.debug) {
console.log('rpcResponse', rpcResponse);
}
const response = {};
response.balances = {};
if (rpcResponse.balances !== undefined) {
rpcResponse.balances.forEach((balanceElt) => {
response.balances[balanceElt.symbol] = toWholeNumber(balanceElt.amount, balanceElt.decimals);
});
}
response.address = address;
response.success = true;
// const lastRefPath = `/transaction/last-ref/${address}`;
// const lastRefResponse = await httpRequestUtil.get(config, lastRefPath);
// response.lastRef = lastRefResponse;
return response;
};
const sendAmountUsingMnemonic = async (config, amount, tokenName, toAddress, mnemonic, index) => {
/* istanbul ignore if */
if (config == undefined) {
throw Error('config is a required parameter.');
}
/* istanbul ignore if */
if (amount == undefined) {
throw Error('amount is a required parameter.');
}
/* istanbul ignore if */
if (toAddress == undefined) {
throw Error('toAddress is a required parameter.');
}
/* istanbul ignore if */
if (tokenName == undefined) {
throw Error('mnemonic is a required parameter.');
}
/* istanbul ignore if */
if (mnemonic == undefined) {
throw Error('mnemonic is a required parameter.');
}
/* istanbul ignore if */
if (index == undefined) {
throw Error('index is a required parameter.');
}
/* istanbul ignore if */
if (config.debug) {
console.log('sendAmountUsingMnemonic', 'mnemonic', mnemonic);
}
const privateKey = mnemonicUtil.getPrivateKeyFromMnemonic(config, mnemonic, index);
/* istanbul ignore if */
if (config.debug) {
console.log('sendAmountUsingMnemonic', 'privateKey', privateKey);
}
const publicKey = transactionSignUtil.getPublicFromPrivate(privateKey);
/* istanbul ignore if */
if (config.debug) {
console.log('sendAmountUsingMnemonic', 'publicKey', publicKey);
}
const address = addressTranscodeUtil.getAddressFromPublicKey(publicKey);
/* istanbul ignore if */
if (config.debug) {
console.log('sendAmountUsingMnemonic', 'address', address);
}
const callback = {};
callback.signEncodedTx = (encodedTx) => {
return transactionSignUtil.sign(encodedTx, privateKey);
};
return await sendAmountUsingCallback(config, amount, tokenName, toAddress, address, publicKey, callback);
};
const sendAmountUsingLedger = async (config, amount, tokenName, toAddress) => {
/* istanbul ignore if */
if (config == undefined) {
throw Error('config is a required parameter.');
}
/* istanbul ignore if */
if (amount == undefined) {
throw Error('amount is a required parameter.');
}
/* istanbul ignore if */
if (tokenName == undefined) {
throw Error('tokenName is a required parameter.');
}
/* istanbul ignore if */
if (toAddress == undefined) {
throw Error('toAddress is a required parameter.');
}
const options = { verifyOnDevice: false };
/* istanbul ignore if */
if (config.debug) {
console.log('sendAmountUsingLedger', 'options', options);
}
const msg = await ledgerCommUtil.getPublicKey(config.transport, options);
/* istanbul ignore if */
if (config.debug) {
console.log('sendAmountUsingLedger', 'msg', msg);
}
if (msg.success) {
const publicKey = msg.publicKey;
/* istanbul ignore if */
if (config.debug) {
console.log('sendAmountUsingLedger', 'publicKey', publicKey);
}
const address = addressTranscodeUtil.getAddressFromPublicKey(publicKey);
/* istanbul ignore if */
if (config.debug) {
console.log('sendAmountUsingLedger', 'address', address);
}
const callback = {};
callback.signEncodedTx = async (encodedTx) => {
/* istanbul ignore if */
if (config.debug) {
console.log('sendAmountUsingLedger', 'signCallback', 'encodedTx', encodedTx);
console.log('sendAmountUsingLedger', 'signCallback', 'config.transport', config.transport);
}
const response = await ledgerCommUtil.sign(config.transport, encodedTx);
/* istanbul ignore if */
if (config.debug) {
console.log('sendAmountUsingLedger', 'signCallback', 'response', response);
}
if (response.success) {
return response.signature;
// resolve(Buffer.from(response.signature, 'hex'));
} else {
throw Error(response.message);
}
};
return await sendAmountUsingCallback(config, amount, tokenName, toAddress, address, publicKey, callback);
} else {
/* istanbul ignore if */
if (config.debug) {
console.log('getBalanceFromLedger', 'error ', msg);
}
return msg;
}
};
const sendAmountUsingCallback = async (config, amount, tokenName, toAddress, fromAddress, publicKey, callback) => {
amount = Number(amount);
const gasPrice = config.gasPrice;
const gasLimit = config.gasLimit;
const expirationDate = transactionTranscodeUtil.getExpirationDate();
// no payload, could be a message.
const payload = '20202020';
if (!config.tokenNames.includes(tokenName)) {
throw Error(`invalidTokenName tokenName:'${tokenName}', config.tokenNames:${JSON.stringify(config.tokenNames)}`);
}
console.log('amount', amount);
const txObject = transactionTranscodeUtil.getSendTxObject(fromAddress, toAddress, amount, tokenName, payload, gasPrice, gasLimit, expirationDate, config.nexusName, config.chainName);
const encodedTx = transactionTranscodeUtil.encodeSendTxWithoutSignature(txObject);
const decodedTx = transactionTranscodeUtil.decodeSendTxWithoutSignature(encodedTx);
/* istanbul ignore if */
if (config.debug) {
console.log('decodedTx', decodedTx);
}
try {
/* istanbul ignore if */
if (config.debug) {
console.log('sendAmountUsingCallback', 'encodedTx', encodedTx);
}
const signature = await callback.signEncodedTx(encodedTx);
// const hash = transactionSignUtil.getHash(encodedTx);
/* istanbul ignore if */
if (config.debug) {
console.log('sendAmountUsingCallback', 'signature', signature);
}
if (config.verifyResponse) {
const verifyResponse = transactionSignUtil.verify(encodedTx, signature, publicKey);
if (verifyResponse == false) {
throw Error(`invalidSignature encodedTx:'${encodedTx}', publicKey:'${publicKey}' signature:'${signature}'`);
}
/* istanbul ignore if */
if (config.debug) {
console.log('verifyResponse', verifyResponse);
}
}
let signatureBytes = Base16.decodeUint8Array(signature);
let binaryReader = new PBinaryReader(signatureBytes);
let mySignature = new Ed25519Signature(signatureBytes);
let myNewSignaturesArray = [];
myNewSignaturesArray.push(mySignature);
txObject.signatures = myNewSignaturesArray;
/* istanbul ignore if */
if (config.debug) {
console.log('signedTx', txObject);
}
const encodedSignedTx = Base16.encodeUint8Array(txObject.ToByteAray(true));
console.log('encoded signed tx: ', encodedSignedTx);
let transaction = new Transaction();
transaction = transaction.unserialize(encodedSignedTx);
console.log({ transaction });
const decodedSignedTx = transaction.ToByteAray(true);
//const decodedSignedTx = transactionTranscodeUtil.decodeSendTxWithSignature(encodedSignedTx);
if (config.debug) {
console.log('decodedSignedTx', decodedSignedTx);
}
const txHash = await config.rpc.sendRawTransaction(encodedSignedTx);
if (config.debug) {
console.log('sendAmountUsingCallback', 'txHash', txHash);
}
const response = {};
response.success = true;
response.message = txHash;
if (txHash.error !== undefined) {
response.success = false;
}
/* istanbul ignore if */
if (config.debug) {
console.log('response', response);
}
return response;
} catch (error) {
if (config.debug) {
console.log('error', error);
}
const errorResponse = {};
errorResponse.success = false;
errorResponse.message = error.message;
return errorResponse;
}
};
// STARTED BOTTOM nodejs/browser hack
const exports = (() => {
// // istanbul ignore if
const exports = {};
exports.getBalanceFromMnemonic = getBalanceFromMnemonic;
exports.getBalanceFromPrivateKey = getBalanceFromPrivateKey;
exports.getBalanceFromLedger = getBalanceFromLedger;
exports.getPoltergeistMnemonic = getPoltergeistMnemonic;
exports.sendAmountUsingMnemonic = sendAmountUsingMnemonic;
exports.sendAmountUsingLedger = sendAmountUsingLedger;
exports.getLedgerDeviceInfo = getLedgerDeviceInfo;
exports.getAddressFromLedeger = getAddressFromLedeger;
exports.getBip44Path = mnemonicUtil.getBip44Path;
exports.hexToBytes = hexToBytesTranscoder.hexToBytes;
exports.bytesToHex = hexToBytesTranscoder.bytesToHex;
exports.hexToBuffer = hexToBytesTranscoder.hexToBuffer;
exports.bufferToHex = hexToBytesTranscoder.bufferToHex;
exports.getBip44PathMessage = ledgerCommUtil.getBip44PathMessage;
exports.getAddressFromPublicKey = addressTranscodeUtil.getAddressFromPublicKey;
return exports;
})();
/* istanbul ignore else */
if (typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
module.exports = exports;
} else {
window.phantasmajshw = exports;
}
})();
// FINISHED BOTTOM nodejs/browser hack