Matias Alejo Garcia
10 years ago
5 changed files with 109 additions and 2 deletions
@ -0,0 +1,24 @@ |
|||
#!/usr/bin/env node |
|||
|
|||
var program = require('commander'); |
|||
var CliLib = require('../lib/clilib.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 CliLib({ |
|||
filename: program.config |
|||
}); |
|||
|
|||
cli.address(function(err, x) { |
|||
common.die(err); |
|||
console.log('* New Address %s ', x.address); |
|||
|
|||
if (program.verbose) |
|||
console.log('* Raw Server Response:\n', x); //TODO |
|||
}); |
@ -0,0 +1,29 @@ |
|||
#!/usr/bin/env node |
|||
|
|||
var _ = require('lodash'); |
|||
var program = require('commander'); |
|||
var CliLib = require('../lib/clilib.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 CliLib({ |
|||
filename: program.config |
|||
}); |
|||
|
|||
cli.addresses(function(err, x) { |
|||
common.die(err); |
|||
|
|||
console.log('* Addresses:'); |
|||
_.each(x, function(a){ |
|||
console.log(' ', a.address); |
|||
}); |
|||
|
|||
if (program.verbose) |
|||
console.log('* Raw Server Response:\n', x); //TODO |
|||
}); |
Loading…
Reference in new issue