bitcore/examples/Address.js

20 lines
480 B
JavaScript
Raw Normal View History

2014-02-24 04:06:54 -08:00
'use strict';
2014-02-24 04:06:54 -08:00
// Replace '..' with 'bitcore' if you plan on using this code elsewhere.
2014-03-05 11:18:44 -08:00
var Address = require('../Address');
var addrs = [
'1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa',
'1A1zP1eP5QGefi2DMPTfTL5SLmv7Dixxxx',
'A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa',
'1600 Pennsylvania Ave NW',
2014-02-24 04:06:54 -08:00
].map(function(addr) {
return new Address(addr);
});
addrs.forEach(function(addr) {
var valid = addr.isValid();
console.log(addr.data + ' is ' + (valid ? '' : 'not ') + 'valid');
});