-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathbitcoinapi.cpp
1356 lines (1070 loc) · 35.8 KB
/
bitcoinapi.cpp
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
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* @file bitcoinapi.cpp
* @author Krzysztof Okupski
* @date 29.10.2014
* @version 1.0
*
* Implementation of a C++ wrapper for communication with
* a running instance of Bitcoin daemon over JSON-RPC.
*/
#include "bitcoinapi.h"
#include <string>
#include <stdexcept>
#include <cmath>
#include <jsonrpccpp/client.h>
#include <jsonrpccpp/client/connectors/httpclient.h>
using jsonrpc::Client;
using jsonrpc::JSONRPC_CLIENT_V1;
using jsonrpc::HttpClient;
using jsonrpc::JsonRpcException;
using Json::Value;
using Json::ValueIterator;
using std::map;
using std::string;
using std::vector;
BitcoinAPI::BitcoinAPI(const string& user, const string& password, const string& host, int port)
: httpClient(new HttpClient("http://" + user + ":" + password + "@" + host + ":" + IntegerToString(port))),
client(new Client(*httpClient, JSONRPC_CLIENT_V1))
{
httpClient->SetTimeout(50000);
}
BitcoinAPI::~BitcoinAPI()
{
delete client;
delete httpClient;
}
Value BitcoinAPI::sendcommand(const string& command, const Value& params){
Value result;
try{
result = client->CallMethod(command, params);
}
catch (JsonRpcException& e){
BitcoinException err(e.GetCode(), e.GetMessage());
throw err;
}
return result;
}
string BitcoinAPI::IntegerToString(int num){
std::ostringstream ss;
ss << num;
return ss.str();
}
std::string BitcoinAPI::RoundDouble(double num)
{
std::ostringstream ss;
ss.precision(8);
ss << std::fixed << num;
return ss.str();
}
/* === General functions === */
getinfo_t BitcoinAPI::getinfo() {
string command = "getinfo";
Value params, result;
getinfo_t ret;
result = sendcommand(command, params);
ret.version = result["version"].asInt();
ret.protocolversion = result["protocolversion"].asInt();
ret.walletversion = result["walletversion"].asInt();
ret.balance = result["balance"].asDouble();
ret.blocks = result["blocks"].asInt();
ret.timeoffset = result["timeoffset"].asInt();
ret.connections = result["connections"].asInt();
ret.proxy = result["proxy"].asString();
ret.difficulty = result["difficulty"].asDouble();
ret.testnet = result["testnet"].asBool();
ret.keypoololdest = result["keypoololdest"].asInt();
ret.keypoolsize = result["keypoolsize"].asInt();
ret.paytxfee = result["paytxfee"].asDouble();
ret.unlocked_until = result["unlocked_until"].asInt();
ret.errors = result["errors"].asString();
return ret;
}
void BitcoinAPI::stop() {
string command = "stop";
Value params;
sendcommand(command, params);
}
/* === Node functions === */
void BitcoinAPI::addnode(const string& node, const string& comm) {
if (!(comm == "add" || comm == "remove" || comm == "onetry")) {
throw std::runtime_error("Incorrect addnode parameter: " + comm);
}
string command = "addnode";
Value params;
params.append(node);
params.append(comm);
sendcommand(command, params);
}
vector<nodeinfo_t> BitcoinAPI::getaddednodeinfo(bool dns) {
string command = "getaddednodeinfo";
Value params, result;
vector<nodeinfo_t> ret;
params.append(dns);
result = sendcommand(command, params);
for (ValueIterator it1 = result.begin(); it1 != result.end(); it1++) {
Value val1 = (*it1);
nodeinfo_t node;
node.addednode = val1["addednode"].asString();
if (dns) {
node.connected = val1["connected"].asBool();
for (ValueIterator it2 = val1["addresses"].begin(); it2 != val1["addresses"].end(); it2++) {
Value val2 = (*it2);
netaddress_t net;
net.address = val2["address"].asString();
//TODO: Bug in here. Always shows true instead of false.
net.connected = val2["connected"].asString();
node.addresses.push_back(net);
}
}
ret.push_back(node);
}
return ret;
}
vector<nodeinfo_t> BitcoinAPI::getaddednodeinfo(bool dns, const std::string& node) {
string command = "getaddednodeinfo";
Value params, result;
vector<nodeinfo_t> ret;
params.append(dns);
params.append(node);
result = sendcommand(command, params);
for (ValueIterator it1 = result.begin(); it1 != result.end(); it1++) {
Value val1 = (*it1);
nodeinfo_t node;
node.addednode = val1["addednode"].asString();
if (dns) {
node.connected = val1["connected"].asBool();
for (ValueIterator it2 = val1["addresses"].begin(); it2 != val1["addresses"].end(); it2++) {
Value val2 = (*it2);
netaddress_t net;
net.address = val2["address"].asString();
net.connected = val2["connected"].asString();
node.addresses.push_back(net);
}
}
ret.push_back(node);
}
return ret;
}
int BitcoinAPI::getconnectioncount() {
string command = "getconnectioncount";
Value params, result;
result = sendcommand(command, params);
return result.asInt();
}
vector<peerinfo_t> BitcoinAPI::getpeerinfo() {
string command = "getpeerinfo";
Value params, result;
vector<peerinfo_t> ret;
result = sendcommand(command, params);
for(ValueIterator it = result.begin(); it != result.end(); it++){
Value val = (*it);
peerinfo_t peer;
peer.addr = val["addr"].asString();
peer.services = val["services"].asString();
peer.lastsend = val["lastsend"].asInt();
peer.lastrecv = val["lastrecv"].asInt();
peer.bytessent = val["bytessent"].asInt();
peer.bytesrecv = val["bytesrecv"].asInt();
peer.conntime = val["conntime"].asInt();
peer.pingtime = val["pingtime"].asDouble();
peer.version = val["version"].asInt();
peer.subver = val["subver"].asString();
peer.inbound = val["inbound"].asBool();
peer.startingheight = val["startingheight"].asInt();
peer.banscore = val["banscore"].asInt();
ret.push_back(peer);
}
return ret;
}
/* === Wallet functions === */
void BitcoinAPI::backupwallet(const string& destination) {
string command = "backupwallet";
Value params;
params.append(destination);
sendcommand(command, params);
}
string BitcoinAPI::encryptwallet(const string& passphrase) {
string command = "encryptwallet";
Value params, result;
params.append(passphrase);
result = sendcommand(command, params);
return result.asString();
}
void BitcoinAPI::walletlock() {
string command = "walletlock";
Value params;
sendcommand(command, params);
}
void BitcoinAPI::walletpassphrase(const string& passphrase, int timeout) {
string command = "walletpassphrase";
Value params;
params.append(passphrase);
params.append(timeout);
sendcommand(command, params);
}
void BitcoinAPI::walletpassphrasechange(const string& oldpassphrase, const string& newpassphrase) {
string command = "walletpassphrasechange";
Value params;
params.append(oldpassphrase);
params.append(newpassphrase);
sendcommand(command, params);
}
string BitcoinAPI::dumpprivkey(const string& bitcoinaddress) {
string command = "dumpprivkey";
Value params, result;
params.append(bitcoinaddress);
result = sendcommand(command, params);
return result.asString();
}
void BitcoinAPI::importprivkey(const string& bitcoinprivkey) {
string command = "importprivkey";
Value params;
params.append(bitcoinprivkey);
sendcommand(command, params);
}
void BitcoinAPI::importprivkey(const string& bitcoinprivkey, const string& label, bool rescan) {
string command = "importprivkey";
Value params;
params.append(bitcoinprivkey);
params.append(label);
params.append(rescan);
sendcommand(command, params);
}
string BitcoinAPI::addmultisigaddress(int nrequired, const vector<string>& keys) {
string command = "addmultisigaddress";
Value params, result;
Value arrParam(Json::arrayValue);
for(vector<string>::const_iterator it = keys.begin(); it != keys.end(); it++){
arrParam.append(*it);
}
params.append(nrequired);
params.append(arrParam);
result = sendcommand(command, params);
return result.asString();
}
string BitcoinAPI::addmultisigaddress(int nrequired, const vector<string>& keys, const string& account) {
string command = "addmultisigaddress";
Value params, result;
params.append(nrequired);
Value arrParam(Json::arrayValue);
for(vector<string>::const_iterator it = keys.begin(); it != keys.end(); it++){
arrParam.append(*it);
}
params.append(arrParam);
params.append(account);
result = sendcommand(command, params);
return result.asString();
}
multisig_t BitcoinAPI::createmultisig(int nrequired, const vector<string>& keys) {
string command = "createmultisig";
Value params, result;
multisig_t ret;
params.append(nrequired);
Value arrParam(Json::arrayValue);
for(vector<string>::const_iterator it = keys.begin(); it != keys.end(); it++){
arrParam.append(*it);
}
params.append(arrParam);
result = sendcommand(command, params);
ret.address = result["address"].asString();
ret.redeemScript = result["redeemScript"].asString();
return ret;
}
string BitcoinAPI::getnewaddress(const string& account) {
string command = "getnewaddress";
Value params, result;
params.append(account);
result = sendcommand(command, params);
return result.asString();
}
validateaddress_t BitcoinAPI::validateaddress(const string& bitcoinaddress) {
string command = "validateaddress";
Value params, result;
validateaddress_t ret;
params.append(bitcoinaddress);
result = sendcommand(command, params);
ret.isvalid = result["isvalid"].asBool();
ret.address = result["address"].asString();
ret.ismine = result["ismine"].asBool();
ret.isscript = result["isscript"].asBool();
ret.pubkey = result["pubkey"].asString();
ret.iscompressed = result["iscompressed"].asBool();
return ret;
}
void BitcoinAPI::keypoolrefill() {
string command = "keypoolrefill";
Value params;
sendcommand(command, params);
}
bool BitcoinAPI::settxfee(double amount) {
string command = "settxfee";
Value params, result;
params.append(RoundDouble(amount));
result = sendcommand(command, params);
return result.asBool();
}
double BitcoinAPI::estimatefee(int blocks) {
string command = "estimatefee";
Value params, result;
params.append(blocks);
result = sendcommand(command, params);
return result.asDouble();
}
string BitcoinAPI::signmessage(const std::string& bitcoinaddress, const std::string& message) {
string command = "signmessage";
Value params, result;
params.append(bitcoinaddress);
params.append(message);
result = sendcommand(command, params);
return result.asString();
}
bool BitcoinAPI::verifymessage(const std::string& bitcoinaddress, const std::string& signature, const std::string& message) {
string command = "verifymessage";
Value params, result;
params.append(bitcoinaddress);
params.append(signature);
params.append(message);
result = sendcommand(command, params);
return result.asBool();
}
/* === Accounting === */
double BitcoinAPI::getbalance() {
string command = "getbalance";
Value params, result;
result = sendcommand(command, params);
return result.asDouble();
}
double BitcoinAPI::getbalance(const string& account, int minconf) {
string command = "getbalance";
Value params, result;
params.append(account);
params.append(minconf);
result = sendcommand(command, params);
return result.asDouble();
}
double BitcoinAPI::getunconfirmedbalance() {
string command = "getunconfirmedbalance";
Value params, result;
result = sendcommand(command, params);
return result.asDouble();
}
double BitcoinAPI::getreceivedbyaccount(const string& account, int minconf) {
string command = "getreceivedbyaccount";
Value params, result;
params.append(account);
params.append(minconf);
result = sendcommand(command, params);
return result.asDouble();
}
double BitcoinAPI::getreceivedbyaddress(const string& bitcoinaddress, int minconf) {
string command = "getreceivedbyaddress";
Value params, result;
params.append(bitcoinaddress);
params.append(minconf);
result = sendcommand(command, params);
return result.asDouble();
}
vector<accountinfo_t> BitcoinAPI::listreceivedbyaccount(int minconf, bool includeempty) {
string command = "listreceivedbyaccount";
Value params, result;
vector<accountinfo_t> ret;
params.append(minconf);
params.append(includeempty);
result = sendcommand(command, params);
for (ValueIterator it = result.begin(); it != result.end(); it++) {
Value val = (*it);
accountinfo_t acct;
acct.account = val["account"].asString();
acct.amount = val["amount"].asDouble();
acct.confirmations = val["confirmations"].asInt();
ret.push_back(acct);
}
return ret;
}
vector<addressinfo_t> BitcoinAPI::listreceivedbyaddress(int minconf, bool includeempty) {
string command = "listreceivedbyaddress";
Value params, result;
vector<addressinfo_t> ret;
params.append(minconf);
params.append(includeempty);
result = sendcommand(command, params);
for (ValueIterator it1 = result.begin(); it1 != result.end(); it1++) {
Value val = (*it1);
addressinfo_t addr;
addr.address = val["address"].asString();
addr.account = val["account"].asString();
addr.amount = val["amount"].asDouble();
addr.confirmations = val["confirmations"].asInt();
for (ValueIterator it2 = val["txids"].begin(); it2 != val["txids"].end(); it2++) {
addr.txids.push_back((*it2).asString());
}
ret.push_back(addr);
}
return ret;
}
gettransaction_t BitcoinAPI::gettransaction(const string& tx, bool watch) {
string command = "gettransaction";
Value params, result;
gettransaction_t ret;
params.append(tx);
params.append(watch);
result = sendcommand(command, params);
ret.amount = result["amount"].asDouble();
ret.fee = result["fee"].asDouble();
ret.confirmations = result["confirmations"].asInt();
ret.blockhash = result["blockhash"].asString();
ret.blockindex = result["blockindex"].asInt();
ret.blocktime = result["blocktime"].asInt();
ret.txid = result["txid"].asString();
for (ValueIterator it = result["walletconflicts"].begin();
it != result["walletconflicts"].end(); it++) {
ret.walletconflicts.push_back((*it).asString());
}
ret.time = result["time"].asInt();
ret.timereceived = result["timereceived"].asInt();
for (ValueIterator it = result["details"].begin();
it != result["details"].end(); it++) {
Value val = (*it);
transactiondetails_t tmp;
tmp.account = val["account"].asString();
tmp.address = val["address"].asString();
tmp.category = val["category"].asString();
tmp.amount = val["amount"].asDouble();
tmp.vout = val["vout"].asInt();
tmp.fee = val["fee"].asDouble();
ret.details.push_back(tmp);
}
ret.hex = result["hex"].asString();
return ret;
}
vector<transactioninfo_t> BitcoinAPI::listtransactions() {
string command = "listtransactions";
Value params, result;
vector<transactioninfo_t> ret;
result = sendcommand(command, params);
for (ValueIterator it = result.begin(); it != result.end(); it++) {
Value val = (*it);
transactioninfo_t tmp;
tmp.account = val["account"].asString();
tmp.address = val["address"].asString();
tmp.category = val["category"].asString();
tmp.amount = val["amount"].asDouble();
tmp.confirmations = val["confirmations"].asInt();
tmp.blockhash = val["blockhash"].asString();
tmp.blockindex = val["blockindex"].asInt();
tmp.blocktime = val["blocktime"].asInt();
tmp.txid = val["txid"].asString();
for (ValueIterator it2 = val["walletconflicts"].begin();
it2 != val["walletconflicts"].end(); it2++) {
tmp.walletconflicts.push_back((*it2).asString());
}
tmp.time = val["time"].asInt();
tmp.timereceived = val["timereceived"].asInt();
tmp.vout = val["vout"].asInt();
ret.push_back(tmp);
}
return ret;
}
vector<transactioninfo_t> BitcoinAPI::listtransactions(const string& account, int count, int from) {
string command = "listtransactions";
Value params, result;
vector<transactioninfo_t> ret;
params.append(account);
params.append(count);
params.append(from);
result = sendcommand(command, params);
for (ValueIterator it = result.begin(); it != result.end(); it++) {
Value val = (*it);
transactioninfo_t tmp;
tmp.account = val["account"].asString();
tmp.address = val["address"].asString();
tmp.category = val["category"].asString();
tmp.amount = val["amount"].asDouble();
tmp.confirmations = val["confirmations"].asInt();
tmp.blockhash = val["blockhash"].asString();
tmp.blockindex = val["blockindex"].asInt();
tmp.blocktime = val["blocktime"].asInt();
tmp.txid = val["txid"].asString();
for (ValueIterator it2 = val["walletconflicts"].begin();
it2 != val["walletconflicts"].end(); it2++) {
tmp.walletconflicts.push_back((*it2).asString());
}
tmp.time = val["time"].asInt();
tmp.timereceived = val["timereceived"].asInt();
tmp.vout = val["vout"].asInt();
ret.push_back(tmp);
}
return ret;
}
string BitcoinAPI::getaccount(const string& bitcoinaddress) {
string command = "getaccount";
Value params, result;
params.append(bitcoinaddress);
result = sendcommand(command, params);
return result.asString();
}
string BitcoinAPI::getaccountaddress(const string& account) {
string command = "getaccountaddress";
Value params, result;
params.append(account);
result = sendcommand(command, params);
return result.asString();
}
vector<std::string> BitcoinAPI::getaddressesbyaccount(const string& account) {
string command = "getaddressesbyaccount";
Value params, result;
vector<string> ret;
params.append(account);
result = sendcommand(command, params);
for(ValueIterator it = result.begin(); it != result.end(); it++){
ret.push_back((*it).asString());
}
return ret;
}
map<string, double> BitcoinAPI::listaccounts(int minconf) {
string command = "listaccounts";
Value params, result;
Value account, amount;
map<string, double> ret;
params.append(minconf);
result = sendcommand(command, params);
for(ValueIterator it = result.begin(); it != result.end(); it++){
Value val = (*it);
std::pair<string, double> tmp;
tmp.first = it.key().asString();
tmp.second = result[tmp.first].asDouble();
ret.insert(tmp);
}
return ret;
}
vector< vector<addressgrouping_t> > BitcoinAPI::listaddressgroupings() {
string command = "listaddressgroupings";
Value params, result;
vector< vector<addressgrouping_t> > ret;
result = sendcommand(command, params);
for(ValueIterator it1 = result.begin(); it1 != result.end(); it1++){
Value val1 = (*it1);
vector<addressgrouping_t> tmp1;
for(ValueIterator it2 = val1.begin(); it2 != val1.end(); it2++){
Value val2 = (*it2);
addressgrouping_t tmp2;
tmp2.address = val2.operator []((uint)0).asString();
tmp2.balance = val2.operator []((uint)1).asDouble();
tmp2.account = (val2.isValidIndex(2) ? val2.operator []((uint)2).asString() : "");
tmp1.push_back(tmp2);
}
ret.push_back(tmp1);
}
return ret;
}
bool BitcoinAPI::move(const string& fromaccount, const string& toaccount, double amount, int minconf) {
string command = "move";
Value params, result;
params.append(fromaccount);
params.append(toaccount);
params.append(RoundDouble(amount));
params.append(minconf);
result = sendcommand(command, params);
return result.asBool();
}
bool BitcoinAPI::move(const string& fromaccount, const string& toaccount, double amount, const string& comment, int minconf) {
string command = "move";
Value params, result;
params.append(fromaccount);
params.append(toaccount);
params.append(RoundDouble(amount));
params.append(minconf);
params.append(comment);
result = sendcommand(command, params);
return result.asBool();
}
void BitcoinAPI::setaccount(const string& bitcoinaddress, const string& account){
string command = "setaccount";
Value params;
params.append(bitcoinaddress);
params.append(account);
sendcommand(command, params);
}
string BitcoinAPI::sendtoaddress(const string& bitcoinaddress, double amount) {
string command = "sendtoaddress";
Value params, result;
params.append(bitcoinaddress);
params.append(RoundDouble(amount));
result = sendcommand(command, params);
return result.asString();
}
string BitcoinAPI::sendtoaddress(const string& bitcoinaddress, double amount, const string& comment, const string& comment_to) {
string command = "sendtoaddress";
Value params, result;
params.append(bitcoinaddress);
params.append(RoundDouble(amount));
params.append(comment);
params.append(comment_to);
result = sendcommand(command, params);
return result.asString();
}
string BitcoinAPI::sendfrom(const string& fromaccount, const string& tobitcoinaddress, double amount) {
string command = "sendfrom";
Value params, result;
params.append(fromaccount);
params.append(tobitcoinaddress);
params.append(RoundDouble(amount));
result = sendcommand(command, params);
return result.asString();
}
string BitcoinAPI::sendfrom(const string& fromaccount, const string& tobitcoinaddress, double amount, const string& comment, const string& comment_to, int minconf) {
string command = "sendfrom";
Value params, result;
params.append(fromaccount);
params.append(tobitcoinaddress);
params.append(RoundDouble(amount));
params.append(minconf);
params.append(comment);
params.append(comment_to);
result = sendcommand(command, params);
return result.asString();
}
string BitcoinAPI::sendmany(const string& fromaccount, const map<string,double>& amounts) {
string command = "sendmany";
Value params, result;
params.append(fromaccount);
Value obj(Json::objectValue);
for(map<string,double>::const_iterator it = amounts.begin(); it != amounts.end(); it++){
obj[(*it).first] = RoundDouble((*it).second);
}
params.append(obj);
result = sendcommand(command, params);
return result.asString();
}
string BitcoinAPI::sendmany(const string& fromaccount, const map<string,double>& amounts, const string comment, int minconf) {
string command = "sendmany";
Value params, result;
params.append(fromaccount);
Value obj(Json::objectValue);
for(map<string,double>::const_iterator it = amounts.begin(); it != amounts.end(); it++){
obj[(*it).first] = RoundDouble((*it).second);
}
params.append(obj);
params.append(minconf);
params.append(comment);
result = sendcommand(command, params);
return result.asString();
}
vector<unspenttxout_t> BitcoinAPI::listunspent(int minconf, int maxconf) {
string command = "listunspent";
Value params, result;
vector<unspenttxout_t> ret;
params.append(minconf);
params.append(maxconf);
result = sendcommand(command, params);
for(ValueIterator it = result.begin(); it != result.end(); it++){
Value val = (*it);
unspenttxout_t tmp;
tmp.txid = val["txid"].asString();
tmp.n = val["vout"].asUInt();
tmp.address = val["address"].asString();
tmp.account = val["account"].asString();
tmp.scriptPubKey = val["scriptPubKey"].asString();
tmp.amount = val["amount"].asDouble();
tmp.confirmations = val["confirmations"].asInt();
ret.push_back(tmp);
}
return ret;
}
vector<txout_t> BitcoinAPI::listlockunspent() {
string command = "listlockunspent";
Value params, result;
vector<txout_t> ret;
result = sendcommand(command, params);
for(ValueIterator it = result.begin(); it != result.end(); it++){
Value val = (*it);
txout_t tmp;
tmp.txid = val["txid"].asString();
tmp.n = val["vout"].asUInt();
ret.push_back(tmp);
}
return ret;
}
bool BitcoinAPI::lockunspent(bool unlock, const vector<txout_t>& outputs) {
string command = "lockunspent";
Value params, result;
Value vec(Json::arrayValue);
for(vector<txout_t>::const_iterator it = outputs.begin(); it != outputs.end(); it++){
Value val;
txout_t tmp = (*it);
val["txid"] = tmp.txid;
val["vout"] = tmp.n;
vec.append(val);
}
params.append(unlock);
params.append(vec);
result = sendcommand(command, params);
return result.asBool();
}
/* === Mining functions === */
string BitcoinAPI::getbestblockhash() {
string command = "getbestblockhash";
Value params, result;
result = sendcommand(command, params);
return result.asString();
}
string BitcoinAPI::getblockhash(int blocknumber) {
string command = "getblockhash";
Value params, result;
params.append(blocknumber);
result = sendcommand(command, params);
return result.asString();
}
blockinfo_t BitcoinAPI::getblock(const string& blockhash) {
string command = "getblock";
Value params, result;
blockinfo_t ret;
params.append(blockhash);
result = sendcommand(command, params);
ret.hash = result["hash"].asString();
ret.confirmations = result["confirmations"].asInt();
ret.size = result["size"].asInt();
ret.height = result["height"].asInt();
ret.version = result["version"].asInt();
ret.merkleroot = result["merkleroot"].asString();
for(ValueIterator it = result["tx"].begin(); it != result["tx"].end(); it++){
ret.tx.push_back((*it).asString());
}
ret.time = result["time"].asUInt();
ret.nonce = result["nonce"].asUInt();
ret.bits = result["bits"].asString();
ret.difficulty = result["difficulty"].asDouble();
ret.chainwork = result["chainwork"].asString();
ret.previousblockhash = result["previousblockhash"].asString();
ret.nextblockhash = result["nextblockhash"].asString();
return ret;
}
int BitcoinAPI::getblockcount() {
string command = "getblockcount";
Value params, result;
result = sendcommand(command, params);
return result.asInt();
}
void BitcoinAPI::setgenerate(bool generate, int genproclimit) {
string command = "setgenerate";
Value params;
params.append(generate);
params.append(genproclimit);
sendcommand(command, params);
}
bool BitcoinAPI::getgenerate() {
string command = "getgenerate";
Value params, result;
result = sendcommand(command, params);
return result.asBool();
}
double BitcoinAPI::getdifficulty() {
string command = "getdifficulty";
Value params, result;
result = sendcommand(command, params);
return result.asDouble();
}
mininginfo_t BitcoinAPI::getmininginfo() {
string command = "getmininginfo";
Value params, result;
mininginfo_t ret;
result = sendcommand(command, params);
ret.blocks = result["blocks"].asInt();
ret.currentblocksize = result["currentblocksize"].asInt();
ret.currentblocktx = result["currentblocktx"].asInt();
ret.difficulty = result["difficulty"].asDouble();
ret.errors = result["errors"].asString();
ret.genproclimit = result["genproclimit"].asInt();
ret.networkhashps = result["networkhashps"].asDouble();
ret.pooledtx = result["pooledtx"].asInt();
ret.testnet = result["testnet"].asBool();
ret.generate = result["generate"].asBool();
ret.hashespersec = result["hashespersec"].asInt();
return ret;
}
txsinceblock_t BitcoinAPI::listsinceblock(const string& blockhash, int target_confirmations) {
string command = "listsinceblock";
Value params, result;