-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBismuthSdk.js
More file actions
52 lines (52 loc) · 2.2 KB
/
BismuthSdk.js
File metadata and controls
52 lines (52 loc) · 2.2 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
"use strict";
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
const BismuthNative_1 = require("./BismuthNative");
exports.MIN_NODE_VERSION = '4.2.3.7';
class BismuthSdk extends BismuthNative_1.BismuthNative {
constructor(cfg) {
super(cfg);
this.getStatus().then(({ walletversion }) => {
if (parseInt(walletversion.split('.').join('')) < parseInt(exports.MIN_NODE_VERSION.split('.').join('')))
console.warn(`Your Bismuth wallet node is too old. Some API functions might not work !! \n Minimum version required is ${exports.MIN_NODE_VERSION}`);
});
}
getStatus() {
return __awaiter(this, void 0, void 0, function* () {
return yield this.command('statusjson');
});
}
getBlock(blockNumbers) {
return __awaiter(this, void 0, void 0, function* () {
return yield this.command('blockget', blockNumbers);
});
}
getLastDifficulty() {
return __awaiter(this, void 0, void 0, function* () {
return yield this.command('difflast');
});
}
getTxnDetails(txn) {
return __awaiter(this, void 0, void 0, function* () {
return yield this.command('api_gettransaction', txn);
});
}
getAddressListBalance(addressList) {
return __awaiter(this, void 0, void 0, function* () {
return yield this.command('api_listbalance', addressList);
});
}
getNewKeys() {
return __awaiter(this, void 0, void 0, function* () {
return yield this.command('keygen');
});
}
}
exports.BismuthSdk = BismuthSdk;