|
|
|
#!/usr/bin/env node
|
|
|
|
|
|
|
|
var program = require('commander');
|
|
|
|
var ClientLib = require('../lib/clientlib.js');
|
|
|
|
var common = require('./common');
|
|
|
|
|
|
|
|
program
|
|
|
|
.version('0.0.1')
|
|
|
|
.option('-c, --config [file]', 'Wallet config filename')
|
|
|
|
.option('-v, --verbose', 'be verbose')
|
|
|
|
.parse(process.argv);
|
|
|
|
|
|
|
|
var args = program.args;
|
|
|
|
var cli = new ClientLib({
|
|
|
|
filename: program.config
|
|
|
|
});
|
|
|
|
|
|
|
|
cli.status(function(err, x) {
|
|
|
|
common.die(err);
|
|
|
|
console.log('* Wallet %s [%s]: %d-%d %s ', x.name, x.isTestnet ? 'testnet' : 'livenet', x.m, x.n, x.status);
|
|
|
|
|
|
|
|
if (program.verbose)
|
|
|
|
console.log('* Raw Server Response:\n', x); //TODO
|
|
|
|
|
|
|
|
|
|
|
|
cli.txProposals(function(err, x) {
|
|
|
|
console.log('[bit-status.27]', x); //TODO
|
|
|
|
|
|
|
|
if (program.verbose)
|
|
|
|
console.log('* Raw Server Response:\n', x); //TODO
|
|
|
|
});
|
|
|
|
});
|