2016-01-05 04:40:51 +01:00
|
|
|
/* global describe, it, beforeEach */
|
2015-02-23 00:36:57 +01:00
|
|
|
|
2014-11-24 11:15:28 +01:00
|
|
|
var assert = require('assert')
|
|
|
|
var bitcoin = require('../../')
|
2015-08-07 06:47:07 +02:00
|
|
|
var blockchain = require('./_blockchain')
|
2014-11-24 11:15:28 +01:00
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
describe('bitcoinjs-lib (advanced)', function () {
|
|
|
|
it('can sign a Bitcoin message', function () {
|
2015-03-02 06:48:36 +01:00
|
|
|
var keyPair = bitcoin.ECPair.fromWIF('5KYZdUEo39z3FPrtuX2QbbwGnNP5zTd7yyr2SC1j299sBCnWjss')
|
2014-11-24 11:15:28 +01:00
|
|
|
var message = 'This is an example of a signed message.'
|
|
|
|
|
2015-03-02 06:48:36 +01:00
|
|
|
var signature = bitcoin.message.sign(keyPair, message)
|
2015-05-07 03:29:20 +02:00
|
|
|
assert.strictEqual(signature.toString('base64'), 'G9L5yLFjti0QTHhPyFrZCT1V/MMnBtXKmoiKDZ78NDBjERki6ZTQZdSMCtkgoNmp17By9ItJr8o7ChX0XxY91nk=')
|
2014-11-24 11:15:28 +01:00
|
|
|
})
|
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
it('can verify a Bitcoin message', function () {
|
2014-11-24 11:15:28 +01:00
|
|
|
var address = '1HZwkjkeaoZfTSaJxDw6aKkxp45agDiEzN'
|
|
|
|
var signature = 'HJLQlDWLyb1Ef8bQKEISzFbDAKctIlaqOpGbrk3YVtRsjmC61lpE5ErkPRUFtDKtx98vHFGUWlFhsh3DiW6N0rE'
|
|
|
|
var message = 'This is an example of a signed message.'
|
|
|
|
|
2014-10-18 12:54:13 +02:00
|
|
|
assert(bitcoin.message.verify(address, signature, message))
|
2014-11-24 11:15:28 +01:00
|
|
|
})
|
|
|
|
|
2015-12-17 06:01:51 +01:00
|
|
|
it('can create a transaction using OP_RETURN', function (done) {
|
2015-11-06 00:49:06 +01:00
|
|
|
this.timeout(30000)
|
2014-11-25 04:21:48 +01:00
|
|
|
|
2015-08-07 12:39:58 +02:00
|
|
|
var network = bitcoin.networks.testnet
|
|
|
|
var keyPair = bitcoin.ECPair.makeRandom({ network: network })
|
2015-07-08 07:56:21 +02:00
|
|
|
var address = keyPair.getAddress()
|
2014-11-25 04:21:48 +01:00
|
|
|
|
2016-01-06 02:46:02 +01:00
|
|
|
blockchain.t.faucet(address, 2e4, function (err, unspent) {
|
2014-11-25 04:21:48 +01:00
|
|
|
if (err) return done(err)
|
|
|
|
|
2015-11-06 00:49:06 +01:00
|
|
|
var tx = new bitcoin.TransactionBuilder(network)
|
|
|
|
var data = new Buffer('bitcoinjs-lib')
|
|
|
|
var dataScript = bitcoin.script.nullDataOutput(data)
|
2015-08-25 06:11:49 +02:00
|
|
|
|
2015-11-06 00:49:06 +01:00
|
|
|
tx.addInput(unspent.txId, unspent.vout)
|
|
|
|
tx.addOutput(dataScript, 1000)
|
|
|
|
tx.sign(0, keyPair)
|
2016-01-05 04:40:51 +01:00
|
|
|
var txRaw = tx.build()
|
2015-08-25 06:11:49 +02:00
|
|
|
|
2016-01-05 04:40:51 +01:00
|
|
|
blockchain.t.transactions.propagate(txRaw.toHex(), done)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('can create transactions using OP_CHECKLOCKTIMEVERIFY', function (done) {
|
|
|
|
var network = bitcoin.networks.testnet
|
|
|
|
var alice = bitcoin.ECPair.fromWIF('cScfkGjbzzoeewVWmU2hYPUHeVGJRDdFt7WhmrVVGkxpmPP8BHWe', network)
|
|
|
|
var bob = bitcoin.ECPair.fromWIF('cMkopUXKWsEzAjfa1zApksGRwjVpJRB3831qM9W4gKZsLwjHXA9x', network)
|
|
|
|
|
|
|
|
// now - 3 hours
|
|
|
|
var threeHoursAgo = Math.floor(Date.now() / 1000) - (3600 * 3)
|
|
|
|
var redeemScript = bitcoin.script.compile([
|
|
|
|
bitcoin.opcodes.OP_IF,
|
|
|
|
|
|
|
|
bitcoin.script.number.encode(threeHoursAgo),
|
|
|
|
bitcoin.opcodes.OP_CHECKLOCKTIMEVERIFY,
|
|
|
|
bitcoin.opcodes.OP_DROP,
|
|
|
|
|
|
|
|
bitcoin.opcodes.OP_ELSE,
|
|
|
|
|
|
|
|
bob.getPublicKeyBuffer(),
|
|
|
|
bitcoin.opcodes.OP_CHECKSIGVERIFY,
|
2014-11-25 04:21:48 +01:00
|
|
|
|
2016-01-05 04:40:51 +01:00
|
|
|
bitcoin.opcodes.OP_ENDIF,
|
|
|
|
|
|
|
|
alice.getPublicKeyBuffer(),
|
|
|
|
bitcoin.opcodes.OP_CHECKSIG
|
|
|
|
])
|
|
|
|
var scriptPubKey = bitcoin.script.scriptHashOutput(bitcoin.crypto.hash160(redeemScript))
|
|
|
|
|
|
|
|
var txId
|
|
|
|
beforeEach(function (done) {
|
|
|
|
this.timeout(10000)
|
|
|
|
|
2016-01-06 02:46:02 +01:00
|
|
|
blockchain.t.faucet(alice.getAddress(), 2e4, function (err, unspent) {
|
2015-11-06 00:49:06 +01:00
|
|
|
if (err) return done(err)
|
2015-01-27 07:26:34 +01:00
|
|
|
|
2016-01-05 04:40:51 +01:00
|
|
|
// build the transaction
|
|
|
|
var tx = new bitcoin.TransactionBuilder(network)
|
|
|
|
tx.addInput(unspent.txId, unspent.vout)
|
|
|
|
tx.addOutput(scriptPubKey, 1e4)
|
|
|
|
tx.sign(0, alice)
|
|
|
|
var txRaw = tx.build()
|
2014-11-25 04:21:48 +01:00
|
|
|
|
2016-01-05 04:40:51 +01:00
|
|
|
txId = txRaw.getId()
|
2014-11-24 11:15:28 +01:00
|
|
|
|
2016-01-05 04:40:51 +01:00
|
|
|
blockchain.t.transactions.propagate(txRaw.toHex(), done)
|
2015-12-17 06:10:13 +01:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-01-05 04:40:51 +01:00
|
|
|
// expiry past, {Alice's signature} OP_TRUE
|
|
|
|
it('where Alice can redeem after the expiry is past', function (done) {
|
|
|
|
this.timeout(30000)
|
2015-12-17 06:10:13 +01:00
|
|
|
|
2016-01-05 04:40:51 +01:00
|
|
|
var tx2 = new bitcoin.TransactionBuilder(network)
|
|
|
|
// tx2.setLockTime(threeHoursAgo) // TODO
|
|
|
|
tx2.addInput(txId, 0, 0xfffffffe)
|
|
|
|
tx2.addOutput(alice.getAddress(), 1000)
|
2015-12-17 06:10:13 +01:00
|
|
|
|
2016-01-05 04:40:51 +01:00
|
|
|
var tx2Raw = tx2.buildIncomplete()
|
|
|
|
tx2Raw.locktime = threeHoursAgo // TODO
|
2015-12-17 06:10:13 +01:00
|
|
|
|
2016-01-05 04:40:51 +01:00
|
|
|
var hashType = bitcoin.Transaction.SIGHASH_ALL
|
|
|
|
var signatureHash = tx2Raw.hashForSignature(0, redeemScript, hashType)
|
|
|
|
var signature = alice.sign(signatureHash)
|
2015-12-17 06:10:13 +01:00
|
|
|
|
2016-01-05 04:40:51 +01:00
|
|
|
var redeemScriptSig = bitcoin.script.scriptHashInput([
|
|
|
|
signature.toScriptSignature(hashType), bitcoin.opcodes.OP_TRUE
|
|
|
|
], redeemScript)
|
2015-12-17 06:10:13 +01:00
|
|
|
|
2016-01-05 04:40:51 +01:00
|
|
|
tx2Raw.setInputScript(0, redeemScriptSig)
|
2015-12-17 06:10:13 +01:00
|
|
|
|
2016-01-05 04:40:51 +01:00
|
|
|
blockchain.t.transactions.propagate(tx2Raw.toHex(), done)
|
|
|
|
})
|
2015-12-17 06:10:13 +01:00
|
|
|
|
2016-01-05 04:40:51 +01:00
|
|
|
// {Bob's signature} {Alice's signature} OP_FALSE
|
|
|
|
it('where Alice and Bob can redeem at any time', function (done) {
|
|
|
|
this.timeout(30000)
|
2015-12-17 06:10:13 +01:00
|
|
|
|
2016-01-05 04:40:51 +01:00
|
|
|
var tx2 = new bitcoin.TransactionBuilder(network)
|
|
|
|
// tx2.setLockTime(threeHoursAgo) // TODO
|
|
|
|
tx2.addInput(txId, 0, 0xfffffffe)
|
|
|
|
tx2.addOutput(alice.getAddress(), 1000)
|
2015-12-17 06:10:13 +01:00
|
|
|
|
2016-01-05 04:40:51 +01:00
|
|
|
var tx2Raw = tx2.buildIncomplete()
|
|
|
|
tx2Raw.locktime = threeHoursAgo // TODO
|
2014-11-24 11:15:28 +01:00
|
|
|
|
2016-01-05 04:40:51 +01:00
|
|
|
var hashType = bitcoin.Transaction.SIGHASH_ALL
|
|
|
|
var signatureHash = tx2Raw.hashForSignature(0, redeemScript, hashType)
|
|
|
|
var signatureA = alice.sign(signatureHash)
|
|
|
|
var signatureB = bob.sign(signatureHash)
|
|
|
|
var redeemScriptSig = bitcoin.script.scriptHashInput([
|
|
|
|
signatureA.toScriptSignature(hashType), signatureB.toScriptSignature(hashType), bitcoin.opcodes.OP_FALSE
|
|
|
|
], redeemScript)
|
|
|
|
|
|
|
|
tx2Raw.setInputScript(0, redeemScriptSig)
|
|
|
|
|
|
|
|
blockchain.t.transactions.propagate(tx2Raw.toHex(), done)
|
2014-11-25 04:21:48 +01:00
|
|
|
})
|
2014-11-24 11:15:28 +01:00
|
|
|
})
|
|
|
|
})
|