2014-02-28 10:26:16 +01:00
|
|
|
var assert = require('assert')
|
2014-01-16 08:03:09 +01:00
|
|
|
|
2014-05-13 09:55:53 +02:00
|
|
|
var HDWallet = require('../src/hdwallet')
|
2014-05-25 03:48:16 +02:00
|
|
|
var fixtures = require('./fixtures/hdwallet.json')
|
2014-04-16 22:18:31 +02:00
|
|
|
|
|
|
|
function b2h(buf) {
|
|
|
|
assert(Buffer.isBuffer(buf))
|
|
|
|
return buf.toString('hex')
|
|
|
|
}
|
2014-01-16 08:03:09 +01:00
|
|
|
|
|
|
|
describe('HDWallet', function() {
|
2014-03-31 05:47:47 +02:00
|
|
|
describe('toBase58', function() {
|
|
|
|
it('reproduces input', function() {
|
|
|
|
var input = 'xpub6D4BDPcP2GT577Vvch3R8wDkScZWzQzMMUm3PWbmWvVJrZwQY4VUNgqFJPMM3No2dFDFGTsxxpG5uJh7n7epu4trkrX7x7DogT5Uv6fcLW5'
|
|
|
|
var output = HDWallet.fromBase58(input).toBase58(false)
|
|
|
|
assert.equal(output, input)
|
2014-01-16 08:03:09 +01:00
|
|
|
|
2014-03-31 05:47:47 +02:00
|
|
|
input = 'xprvA2JDeKCSNNZky6uBCviVfJSKyQ1mDYahRjijr5idH2WwLsEd4Hsb2Tyh8RfQMuPh7f7RtyzTtdrbdqqsunu5Mm3wDvUAKRHSC34sJ7in334'
|
|
|
|
output = HDWallet.fromBase58(input).toBase58(true)
|
|
|
|
assert.equal(output, input)
|
|
|
|
})
|
2014-01-16 08:03:09 +01:00
|
|
|
|
2014-03-31 05:47:47 +02:00
|
|
|
it('fails with priv=true when theres no private key', function() {
|
|
|
|
var hd = HDWallet.fromBase58('xpub6DF8uhdarytz3FWdA8TvFSvvAh8dP3283MY7p2V4SeE2wyWmG5mg5EwVvmdMVCQcoNJxGoWaU9DCWh89LojfZ537wTfunKau47EL2dhHKon')
|
|
|
|
try {
|
|
|
|
hd.toBase58(true)
|
|
|
|
} catch(e) {
|
|
|
|
assert(e.message.match(/private key/i))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
assert.fail()
|
2014-01-16 08:03:09 +01:00
|
|
|
})
|
2014-03-31 05:47:47 +02:00
|
|
|
})
|
2014-01-16 08:03:09 +01:00
|
|
|
|
2014-03-31 05:47:47 +02:00
|
|
|
describe('constructor & seed deserialization', function() {
|
2014-04-17 11:08:16 +02:00
|
|
|
var expectedPrivateKey = '0fd71c652e847ba7ea7956e3cf3fc0a0985871846b1b2c23b9c6a29a38cee860'
|
2014-04-16 22:18:31 +02:00
|
|
|
var seed = new Buffer([
|
2014-03-31 05:47:47 +02:00
|
|
|
99, 114, 97, 122, 121, 32, 104, 111, 114, 115, 101, 32, 98,
|
|
|
|
97, 116, 116, 101, 114, 121, 32, 115, 116, 97, 112, 108, 101
|
2014-04-16 22:18:31 +02:00
|
|
|
])
|
2014-03-11 15:41:20 +01:00
|
|
|
|
2014-03-31 05:47:47 +02:00
|
|
|
it('creates from binary seed', function() {
|
|
|
|
var hd = new HDWallet(seed)
|
2014-03-11 15:41:20 +01:00
|
|
|
|
2014-05-16 05:46:06 +02:00
|
|
|
assert.equal(hd.priv.D.toHex(), expectedPrivateKey)
|
2014-03-31 05:47:47 +02:00
|
|
|
assert(hd.pub)
|
|
|
|
})
|
2014-03-11 15:41:20 +01:00
|
|
|
|
2014-03-31 05:47:47 +02:00
|
|
|
describe('fromSeedHex', function() {
|
|
|
|
it('creates from hex seed', function() {
|
2014-04-16 22:18:31 +02:00
|
|
|
var hd = HDWallet.fromSeedHex(seed.toString('hex'))
|
2014-03-11 15:41:20 +01:00
|
|
|
|
2014-05-16 05:46:06 +02:00
|
|
|
assert.equal(hd.priv.D.toHex(), expectedPrivateKey)
|
2014-03-31 05:47:47 +02:00
|
|
|
assert(hd.pub)
|
|
|
|
})
|
2014-01-16 08:03:09 +01:00
|
|
|
})
|
2014-03-31 05:47:47 +02:00
|
|
|
})
|
2014-01-16 08:03:09 +01:00
|
|
|
|
2014-03-31 05:47:47 +02:00
|
|
|
describe('Test vectors', function() {
|
2014-05-25 03:48:16 +02:00
|
|
|
function verifyVector(hd, v) {
|
|
|
|
assert.equal(b2h(hd.getIdentifier()), v.identifier)
|
|
|
|
assert.equal(b2h(hd.getFingerprint()), v.fingerprint)
|
|
|
|
assert.equal(hd.getAddress().toString(), v.address)
|
|
|
|
assert.equal(hd.priv.toWIF(), v.wif)
|
|
|
|
assert.equal(hd.pub.toHex(), v.pubKey)
|
|
|
|
assert.equal(b2h(hd.chaincode), v.chaincode)
|
|
|
|
assert.equal(hd.toHex(false), v.hex)
|
|
|
|
assert.equal(hd.toHex(true), v.hexPriv)
|
|
|
|
assert.equal(hd.toBase58(false), v.base58)
|
|
|
|
assert.equal(hd.toBase58(true), v.base58Priv)
|
|
|
|
}
|
|
|
|
|
|
|
|
it('matches the test vectors', function() {
|
|
|
|
fixtures.valid.forEach(function(f) {
|
|
|
|
var hd = HDWallet.fromSeedHex(f.master.seed)
|
|
|
|
verifyVector(hd, f.master)
|
|
|
|
|
|
|
|
f.children.forEach(function(c) {
|
|
|
|
// FIXME: c.description could be shown
|
|
|
|
if (c.mPriv != undefined) {
|
|
|
|
hd = hd.derivePrivate(c.mPriv)
|
|
|
|
} else {
|
|
|
|
hd = hd.derive(c.m)
|
|
|
|
}
|
|
|
|
|
|
|
|
verifyVector(hd, c)
|
|
|
|
})
|
|
|
|
})
|
2014-01-16 08:03:09 +01:00
|
|
|
})
|
2014-03-31 05:47:47 +02:00
|
|
|
})
|
2014-02-28 10:26:16 +01:00
|
|
|
|
2014-05-04 03:40:48 +02:00
|
|
|
describe('derive', function() {
|
|
|
|
describe('m/0', function() {
|
2014-05-04 04:13:25 +02:00
|
|
|
var wallet = HDWallet.fromBase58('xpub6CxuB8ifZCMXeS3KbyNkYvrsJEHqxedCSiUhrNwH1nKtb8hcJpxDbDxkdoVCTR2bQ1G8hY4UMv85gef9SEpgFFUftBjt37FUSZxVx4AU9Qh').derive(0)
|
2014-05-04 03:40:48 +02:00
|
|
|
|
2014-05-04 04:13:25 +02:00
|
|
|
it('derives the correct public key', function() {
|
2014-05-04 07:15:22 +02:00
|
|
|
assert.equal(wallet.pub.toHex(), '02df843e6ae2017e0772d0584f76f56b8f2f5181a3045c7a7740a9d86dc7c80ce7')
|
2014-05-04 04:13:25 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
it('derives the correct depth', function() {
|
2014-05-04 03:40:48 +02:00
|
|
|
assert.equal(wallet.depth, 4)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2014-03-31 05:47:47 +02:00
|
|
|
describe('network types', function() {
|
2014-04-16 21:43:34 +02:00
|
|
|
it('ensures that a bitcoin Wallet generates bitcoin addresses', function() {
|
2014-04-29 21:07:41 +02:00
|
|
|
var wallet = new HDWallet(new Buffer('foobar'), 'bitcoin')
|
|
|
|
assert.equal(wallet.getAddress().toString(), '17SnB9hyGwJPoKpLb9eVPHjsujyEuBpMAA')
|
2014-03-31 05:47:47 +02:00
|
|
|
})
|
2014-02-28 10:26:16 +01:00
|
|
|
|
2014-03-31 05:47:47 +02:00
|
|
|
it('ensures that a testnet Wallet generates testnet addresses', function() {
|
2014-04-29 21:07:41 +02:00
|
|
|
var wallet = new HDWallet(new Buffer('foobar'), 'testnet')
|
|
|
|
assert.equal(wallet.getAddress().toString(), 'mmxjUCnx5xjeaSHxJicsDCxCmjZwq8KTbv')
|
2014-03-31 05:47:47 +02:00
|
|
|
})
|
2014-02-28 10:26:16 +01:00
|
|
|
|
2014-04-29 21:09:49 +02:00
|
|
|
it('throws an exception when unknown network type is passed in', function() {
|
2014-04-29 21:07:41 +02:00
|
|
|
assert.throws(function() { new HDWallet(new Buffer('foobar'), 'doge') })
|
2014-02-28 10:26:16 +01:00
|
|
|
})
|
2014-03-31 05:47:47 +02:00
|
|
|
})
|
2014-01-16 08:03:09 +01:00
|
|
|
})
|