-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
918 lines (890 loc) · 24.6 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
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
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
import { Command } from 'commander';
import { hideBin } from 'yargs/helpers';
import yargs from 'yargs/yargs';
import inquirer from 'inquirer';
import ccx from 'conceal-api';
import path from 'path';
import fs from 'fs';
// creating a command instance
const program = new Command();
let config = {
daemonHost: 'http://127.0.0.1',
walletHost: 'http://127.0.0.1',
daemonRpcPort: 16000,
walletRpcPort: 6061,
timeout: 5000
}
// check if we have config.json present in same dir
if (fs.existsSync(path.join(process.cwd(), 'config.json'))) {
config = JSON.parse(fs.readFileSync(path.join(process.cwd(), 'config.json'), 'utf8'));
}
// parse arguments and options
const argv = yargs(hideBin(process.argv)).argv
if (argv.dh) { config.daemonHost = argv.dh; }
if (argv.dp) { config.daemonRpcPort = argv.dp; }
if (argv.wh) { config.walletHost = argv.wh; }
if (argv.wp) { config.walletRpcPort = argv.wp; }
if (argv.daemonHost) { config.daemonHost = argv.daemonHost; }
if (argv.daemonPort) { config.daemonRpcPort = argv.daemonPort; }
if (argv.walletdHost) { config.daemonHost = argv.walletdHost; }
if (argv.walletdPort) { config.walletRpcPort = argv.walletdPort; }
// create the api with the config
const ccxApi = new ccx(config);
// creating tool
program
.name("conceal-api-demo")
.description("A CLI demo for conceal api")
.option('--dh, --daemon-host <type>', 'Daemon Host (URL)')
.option('--dp, --daemon-port <type>', 'Daemon Port (Number)')
.option('--wh, --walletd-host <type>', 'Walletd Host (URL)')
.option('--wp, --walletd-port <type>', 'Walletd Host (Number)')
.version("1.0.0");
// ****************************************************
// adding deposit related commands
// *****************************************************
let deposit = program.command("deposit");
deposit.description("Deposit related commands....");
deposit
.command('createDeposit')
.description('The createDeposit method creates a new deposit with a source address and a term.')
.action(() => {
inquirer.prompt([
{
type: 'input',
name: 'address',
message: 'Enter source address:'
},{
type: 'number',
name: 'amount',
message: 'Enter ammount:'
},{
type: 'number',
name: 'term',
message: 'Enter term:'
}
]).then((answers) => {
ccxApi.createDeposit({
sourceAddress: answers.address,
amount: answers.amount,
term: answers.term
}).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
deposit
.command('sendDeposit')
.description('The sendDeposit method creates a new deposit with a source address and a term and sends it to another wallet.')
.action(() => {
inquirer.prompt([
{
type: 'input',
name: 'srcAddress',
message: 'Enter source address:'
},{
type: 'input',
name: 'destAddress',
message: 'Enter destionation address:'
},{
type: 'number',
name: 'amount',
message: 'Enter ammount:'
},{
type: 'number',
name: 'term',
message: 'Enter term:'
}
]).then((answers) => {
ccxApi.createDeposit({
sourceAddress: answers.srcAddress,
amount: answers.amount,
term: answers.term,
destinationAddress: answers.destAddress
}).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
deposit
.command('getDeposit')
.description('The getDeposit method returns the details of a deposit given the depositId.')
.action(() => {
inquirer.prompt([
{
type: 'number',
name: 'id',
message: 'Enter deposit id:'
}
]).then((answers) => {
ccxApi.getDeposit(answers.id).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
deposit
.command('withdrawDeposit ')
.description('The getDeposit method returns the details of a deposit given the depositId.')
.action(() => {
inquirer.prompt([
{
type: 'number',
name: 'id',
message: 'Enter deposit id:'
}
]).then((answers) => {
ccxApi.withdrawDeposit(answers.id).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
// ****************************************************
// adding wallet related commands
// *****************************************************
let wallet = program.command("wallet");
wallet.description("Wallet related commands....");
wallet
.command('getStatus')
.description('The getStatus method returns information about the current RPC Wallet state including the number of addresses, transactions, peers, and block information.')
.action(() => {
ccxApi.status().then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
wallet
.command('reset')
.description('The reset method allows you to re-sync (rescan) your wallet container including all the containers addresses.')
.action(() => {
inquirer.prompt([
{
type: 'input',
name: 'key',
message: 'Enter private view Key (optional):'
}
]).then((answers) => {
ccxApi.resetOrReplace(answers.key).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
wallet
.command('save')
.description('The save method allows you to save your wallet.')
.action(() => {
ccxApi.save().then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
wallet
.command('getBalance')
.description('The getBalance method returns a balance for a specified address. If address is not specified, returns the balance of the first address in the wallet.')
.action(() => {
inquirer.prompt([
{
type: 'input',
name: 'address',
message: 'Enter address:'
}
]).then((answers) => {
ccxApi.getBalance(answers.address).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
wallet
.command('exportWallet')
.description('The exportWallet method exports the wallet into a new file. The exported wallet is stored in the same folder as the running wallet.')
.action(() => {
inquirer.prompt([
{
type: 'input',
name: 'filename',
message: 'Enter filename:'
}
]).then((answers) => {
ccxApi.exportWallet({
exportFilename: filename
}).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
wallet
.command('exportWalletKeys')
.description('The exportWalletKeys method exports the keys of the wallet into a new file. The exported wallet is stored in the same folder as the running wallet.')
.action(() => {
inquirer.prompt([
{
type: 'input',
name: 'filename',
message: 'Enter filename:'
}
]).then((answers) => {
ccxApi.exportWallet({
exportFilename: filename
}).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
// ****************************************************
// adding address related commands
// *****************************************************
let address = program.command("address");
address.description("Address related commands....");
address
.command('getAddresses')
.description('The getAddresses method returns the array of addresses from the current container.')
.action(() => {
ccxApi.getAddresses().then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
address
.command('createAddress')
.description('The createAddress method creates an additional address in your wallet.')
.action(() => {
inquirer.prompt([
{
type: 'confirm',
name: 'import',
default: false,
message: 'Do you want to import your address?'
},{
type: 'input',
name: 'privateSpendKey',
message: 'Private spend key:',
when(answers) {
return answers.import;
}
},{
type: 'input',
name: 'publicSpendKey',
message: 'Public spend key:',
when(answers) {
return answers.import;
}
},
]).then((answers) => {
let opts = {};
if (answers.import) {
opts = {
privateSpendKey: answers.privateSpendKey,
publicSpendKey: answers.publicSpendKey
}
}
ccxApi.createAddress(opts).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
address
.command('createAddressList')
.description('The createAddressList method creates additional address in your wallet from the provided list of private keys.')
.action(() => {
inquirer.prompt([
{
type: 'input',
name: 'keyList',
message: 'Enter array of private spend keys (delimited by comma):'
},{
type: 'confirm',
name: 'reset',
default: false,
message: 'Reset the wallet?'
},
]).then((answers) => {
ccxApi.createAddressList({
privateSpendKeys: Array.from(answers.keyList),
reset: answers.reset
}).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
address
.command('deleteAddress')
.description('The deleteAddress method deletes a specified wallet address from the container.')
.argument('address <string>', 'Wallet address')
.action(() => {
inquirer.prompt([
{
type: 'input',
name: 'address',
message: 'Enter address:'
}
]).then((answers) => {
ccxApi.deleteAddress(answers.address).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
address
.command('createIntegrated')
.description('The deleteAddress method deletes a specified wallet address from the container.')
.action(() => {
inquirer.prompt([
{
type: 'input',
name: 'address',
message: 'Enter address:'
},
{
type: 'input',
name: 'paymentId',
message: 'Enter paymentId:'
}
]).then((answers) => {
ccxApi.createIntegrated(answers.address, answers.paymentId).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
address
.command('splitIntegrated')
.description('The splitIntegrated method takes an integrated address and returns its address and its payment ID.')
.action(() => {
inquirer.prompt([
{
type: 'input',
name: 'address',
message: 'Enter address:'
}
]).then((answers) => {
ccxApi.splitIntegrated(answers.address).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
// ****************************************************
// adding transaction related commands
// *****************************************************
let transaction = program.command("transaction");
transaction.description("Transaction related commands....");
transaction
.command('getTransaction')
.description('The getTransaction method returns information about a particular transaction.')
.action(() => {
inquirer.prompt([
{
type: 'input',
name: 'hash',
message: 'Enter tx hash:'
}
]).then((answers) => {
ccxApi.getTransaction(answers.hash).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
transaction
.command('getTransactions')
.description('The getTransactions method returns an array of block and transaction hashes.')
.action(() => {
inquirer.prompt([
{
type: 'input',
name: 'addressList',
message: 'Enter array of addressed to include (delimited by comma):'
},
{
type: 'number',
name: 'blockCount',
message: 'The number of blocks to return:'
},
{
type: 'input',
name: 'blockHash',
message: 'The hash of the first block to include: '
},
{
type: 'number',
name: 'firstBlockIndex',
message: 'The height of the first block to include:'
},
{
type: 'input',
name: 'paymentId',
message: 'A paymentId that must be used in the returned transaction hashes:'
}
]).then((answers) => {
ccxApi.getTransactions({
addresses: Array.from(answers.addressList),
blockCount: answers.blockCount,
blockHash: answers.blockHash,
firstBlockIndex: answers.firstBlockIndex,
paymentId: answers.paymentId
}).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
transaction
.command('getTransactionHashes')
.description('The getTransactionHashes method returns an array of block and transaction hashes.')
.action(() => {
inquirer.prompt([
{
type: 'input',
name: 'addressList',
message: 'Enter array of addressed to include (delimited by comma):'
},
{
type: 'number',
name: 'blockCount',
message: 'The number of blocks to return:'
},
{
type: 'input',
name: 'blockHash',
message: 'The hash of the first block to include: '
},
{
type: 'number',
name: 'firstBlockIndex',
message: 'The height of the first block to include:'
},
{
type: 'input',
name: 'paymentId',
message: 'A paymentId that must be used in the returned transaction hashes:'
}
]).then((answers) => {
ccxApi.getTransactionHashes({
addresses: Array.from(answers.addressList),
blockCount: answers.blockCount,
blockHash: answers.blockHash,
firstBlockIndex: answers.firstBlockIndex,
paymentId: answers.paymentId
}).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
transaction
.command('getUnconfirmedTransactionHashes')
.description('The getUnconfirmedTransactionHashes method returns an array of block and transaction hashes.')
.action(() => {
inquirer.prompt([
{
type: 'number',
name: 'addressList',
message: 'Addresses to check for unconfirmed transactions (delimited by comma). If addresses is empty, all addresses of the container will be checked:'
}
]).then((answers) => {
ccxApi.getUnconfirmedTransactionHashes(Array.from(answers.addressList)).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
transaction
.command('sendTransaction')
.description('The sendTransaction method allows you to send transaction to an address.')
.action(() => {
inquirer.prompt([
{
type: 'confirm',
name: 'simple',
message: 'Do you want simple version?',
},
{
type: 'input',
name: 'addressList',
message: 'Enter array of addressed to include (delimited by comma):',
when(answers) {
return !answers.simple;
}
},
{
type: 'input',
name: 'address',
message: 'Destination address:'
},
{
type: 'number',
name: 'amount',
message: 'Amount to transfer:'
},
{
type: 'input',
name: 'message',
message: 'Additional message (optional):'
},
{
type: 'input',
name: 'paymentId',
message: 'PaymentId:'
},
{
type: 'number',
name: 'unlockTime',
message: 'Height of the block until which transaction is going to be locked for spending:',
when(answers) {
return !answers.simple;
}
},
{
type: 'input',
name: 'changeAddress',
message: 'Valid and existing in this container, it will receive the change of the transaction (optional):',
when(answers) {
return !answers.simple;
}
}
]).then((answers) => {
let opts = {
anonymity: 5,
fee: 1000,
transfers: [
{
amount: answers.amount * 1000000,
address: answers.address
}
]
};
if (answers.changeAddress) { opts["changeAddress"] = answers.changeAddress; }
if (answers.addressList) { opts["addresses"] = Array.from(answers.addressList); }
if (answers.unlockTime) { opts["changeAddress"] = answers.unlockTime; }
if (answers.paymentId) { opts["paymentId"] = answers.paymentId; }
ccxApi.sendTransaction(opts).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
transaction
.command('createDelayedTransaction')
.description('The createDelayedTransaction method creates a delayed transaction.')
.action(() => {
inquirer.prompt([
{
type: 'confirm',
name: 'simple',
message: 'Do you want simple version?',
},
{
type: 'input',
name: 'addressList',
message: 'Enter array of addressed to include (delimited by comma):',
when(answers) {
return !answers.simple;
}
},
{
type: 'input',
name: 'address',
message: 'Destination address:'
},
{
type: 'number',
name: 'amount',
message: 'Amount to transfer:'
},
{
type: 'input',
name: 'message',
message: 'Additional message (optional):'
},
{
type: 'input',
name: 'paymentId',
message: 'PaymentId:'
},
{
type: 'number',
name: 'unlockTime',
message: 'Height of the block until which transaction is going to be locked for spending:',
when(answers) {
return !answers.simple;
}
},
{
type: 'input',
name: 'changeAddress',
message: 'Valid and existing in this container, it will receive the change of the transaction (optional):',
when(answers) {
return !answers.simple;
}
}
]).then((answers) => {
let opts = {
anonymity: 5,
fee: 1000,
transfers: [
{
amount: answers.amount * 1000000,
address: answers.address
}
]
};
if (answers.changeAddress) { opts["changeAddress"] = answers.changeAddress; }
if (answers.addressList) { opts["addresses"] = Array.from(answers.addressList); }
if (answers.unlockTime) { opts["changeAddress"] = answers.unlockTime; }
if (answers.paymentId) { opts["paymentId"] = answers.paymentId; }
ccxApi.sendTransaction(opts).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
transaction
.command('sendDelayedTransaction')
.description('The sendDelayedTransaction method sends a specified delayed transaction.')
.action(() => {
inquirer.prompt([
{
type: 'input',
name: 'hash',
message: 'Delayed transaction to send:'
}
]).then((answers) => {
ccxApi.sendDelayedTransaction (answers.hash).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
transaction
.command('deleteDelayedTransaction')
.description('The deleteDelayedTransaction method deletes a specified delayed transaction.')
.action(() => {
inquirer.prompt([
{
type: 'input',
name: 'hash',
message: 'Delayed transaction to delete:'
}
]).then((answers) => {
ccxApi.deleteDelayedTransaction (answers.hash).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
transaction
.command('getDelayedTransactionHashes')
.description('The getDelayedTransactionHashes method returns hashes of delayed transactions.')
.action(() => {
ccxApi.getDelayedTransactionHashes().then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
// ****************************************************
// adding daemon related commands
// *****************************************************
let daemon = program.command("daemon");
daemon.description("Daemon related commands....");
daemon
.command('getInfo')
.description('Get the current chain info.')
.action(() => {
ccxApi.info().then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
daemon
.command('getHeight')
.description('Get the current height.')
.action(() => {
ccxApi.index().then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
daemon
.command('getBlockCount')
.description('Get the block count.')
.action(() => {
ccxApi.count().then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
daemon
.command('getCurrencyId')
.description('Get the id of the CCX currency.')
.action(() => {
ccxApi.currencyId().then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
daemon
.command('getBlockHeaderByHeight')
.description('Get the block header at the given height.')
.action(() => {
inquirer.prompt([
{
type: 'number',
name: 'block',
message: 'Enter block number:'
}
]).then((answers) => {
ccxApi.blockHeaderByHeight(answers.block).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
daemon
.command('getBlockHeaderByHash')
.description('Get the block header for the given hash.')
.action(() => {
inquirer.prompt([
{
type: 'input',
name: 'hash',
message: 'Enter block hash:'
}
]).then((answers) => {
ccxApi.blockHeaderByHash(answers.hash).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
daemon
.command('getBlockHashByHeight')
.description('Get the block hash at the given height.')
.action(() => {
inquirer.prompt([
{
type: 'number',
name: 'block',
message: 'Enter block number:'
}
]).then((answers) => {
ccxApi.blockHashByHeight(answers.block).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
daemon
.command('getLastBlockHeader')
.description('Get the block header for the last block on the chain.')
.action(() => {
ccxApi.lastBlockHeader().then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
daemon
.command('getBlock')
.description('Get the block for the given hash.')
.action(() => {
inquirer.prompt([
{
type: 'input',
name: 'hash',
message: 'Enter block hash:'
}
]).then((answers) => {
ccxApi.block(answers.hash).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
daemon
.command('getBlocks')
.description('Get the blocks for the given height.')
.action(() => {
inquirer.prompt([
{
type: 'number',
name: 'height',
message: 'Enter tx hash:'
}
]).then((answers) => {
ccxApi.blocks(answers.height).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
daemon
.command('getTransaction')
.description('Get the transaction for the given hash.')
.action(() => {
inquirer.prompt([
{
type: 'input',
name: 'hash',
message: 'Enter tx hash:'
}
]).then((answers) => {
ccxApi.transaction(answers.hash).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
});
daemon
.command('getTransactionPool')
.description('Get the transactio pool status.')
.action(() => {
ccxApi.transactionPool().then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});
});
program.parse(process.argv);