2015-02-23 00:36:57 +01:00
|
|
|
/* global describe, it */
|
|
|
|
|
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
|
|
|
|
2015-11-06 00:49:06 +01:00
|
|
|
blockchain.t.faucet(address, 2e4, function (err, unspents) {
|
2014-11-25 04:21:48 +01:00
|
|
|
if (err) return done(err)
|
|
|
|
|
2015-11-06 00:49:06 +01:00
|
|
|
// use the oldest unspent
|
|
|
|
var unspent = unspents.pop()
|
|
|
|
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)
|
2015-08-25 06:11:49 +02:00
|
|
|
|
2015-11-06 00:49:06 +01:00
|
|
|
var txBuilt = tx.build()
|
2014-11-25 04:21:48 +01:00
|
|
|
|
2015-11-06 00:49:06 +01:00
|
|
|
blockchain.t.transactions.propagate(txBuilt.toHex(), function (err) {
|
|
|
|
if (err) return done(err)
|
2015-01-27 07:26:34 +01:00
|
|
|
|
2015-12-17 06:13:29 +01:00
|
|
|
// check that the transaction was propagated
|
2015-11-06 00:49:06 +01:00
|
|
|
blockchain.t.transactions.get(txBuilt.getId(), function (err, transaction) {
|
2014-11-25 04:21:48 +01:00
|
|
|
if (err) return done(err)
|
|
|
|
|
2015-11-06 00:49:06 +01:00
|
|
|
var actual = bitcoin.Transaction.fromHex(transaction.txHex)
|
2015-12-17 06:01:51 +01:00
|
|
|
var actualScript = actual.outs[0].script
|
|
|
|
assert.deepEqual(actualScript, dataScript)
|
2014-11-24 11:15:28 +01:00
|
|
|
|
2015-12-17 06:10:13 +01:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('can create a transaction using OP_CHECKLOCKTIMEVERIFY', function (done) {
|
|
|
|
this.timeout(30000)
|
|
|
|
|
|
|
|
var network = bitcoin.networks.testnet
|
|
|
|
var keyPair = bitcoin.ECPair.makeRandom({ network: network })
|
|
|
|
var address = keyPair.getAddress()
|
|
|
|
|
|
|
|
blockchain.t.faucet(address, 2e4, function (err, unspents) {
|
|
|
|
if (err) return done(err)
|
|
|
|
|
|
|
|
// use the oldest unspent
|
|
|
|
var unspent = unspents.pop()
|
|
|
|
var tx = new bitcoin.TransactionBuilder(network)
|
|
|
|
|
2015-12-22 04:17:41 +01:00
|
|
|
// now + 2 hours
|
|
|
|
var hodlDate = Math.floor((Date.now() + new Date(0).setSeconds(7200)) / 1000)
|
2015-12-17 06:10:13 +01:00
|
|
|
var hodlLockTimeBuffer = new Buffer(4)
|
|
|
|
hodlLockTimeBuffer.writeInt32LE(hodlDate | 0, 0)
|
|
|
|
|
|
|
|
// {signature} {signature} or
|
|
|
|
// OP_0 {signature} after 1 month
|
|
|
|
var hodlScript = bitcoin.script.compile([
|
|
|
|
bitcoin.opcodes.OP_IF,
|
|
|
|
hodlLockTimeBuffer,
|
|
|
|
bitcoin.opcodes.OP_CHECKLOCKTIMEVERIFY,
|
|
|
|
bitcoin.opcodes.OP_DROP,
|
|
|
|
bitcoin.opcodes.OP_ELSE,
|
|
|
|
keyPair.getPublicKeyBuffer(),
|
|
|
|
bitcoin.opcodes.OP_CHECKSIGVERIFY,
|
|
|
|
bitcoin.opcodes.OP_ENDIF,
|
|
|
|
keyPair.getPublicKeyBuffer(),
|
|
|
|
bitcoin.opcodes.OP_CHECKSIG
|
|
|
|
])
|
|
|
|
|
|
|
|
tx.addInput(unspent.txId, unspent.vout)
|
|
|
|
tx.addOutput(hodlScript, 1000)
|
|
|
|
tx.sign(0, keyPair)
|
|
|
|
|
|
|
|
var txBuilt = tx.build()
|
|
|
|
|
|
|
|
blockchain.t.transactions.propagate(txBuilt.toHex(), function (err) {
|
|
|
|
if (err) return done(err)
|
|
|
|
|
2015-12-17 06:13:29 +01:00
|
|
|
// check that the transaction was propagated
|
2015-12-17 06:10:13 +01:00
|
|
|
blockchain.t.transactions.get(txBuilt.getId(), function (err, transaction) {
|
|
|
|
if (err) return done(err)
|
|
|
|
|
|
|
|
var actual = bitcoin.Transaction.fromHex(transaction.txHex)
|
|
|
|
var actualScript = actual.outs[0].script
|
|
|
|
assert.deepEqual(actualScript, hodlScript)
|
2014-11-24 11:15:28 +01:00
|
|
|
|
2015-11-06 00:49:06 +01:00
|
|
|
done()
|
2014-11-25 04:21:48 +01:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2014-11-24 11:15:28 +01:00
|
|
|
})
|
|
|
|
})
|