bitcoinjs-lib/src/block.js

143 lines
3.1 KiB
JavaScript
Raw Normal View History

2014-10-16 06:30:57 +02:00
var bufferutils = require('./bufferutils')
var bcrypto = require('./crypto')
var compare = require('buffer-compare')
2014-10-16 06:30:57 +02:00
var Transaction = require('./transaction')
2015-02-23 00:36:57 +01:00
function Block () {
2014-10-16 06:30:57 +02:00
this.version = 1
this.prevHash = null
this.merkleRoot = null
this.timestamp = 0
this.bits = 0
this.nonce = 0
}
2015-02-23 00:36:57 +01:00
Block.fromBuffer = function (buffer) {
2015-08-11 09:03:46 +02:00
if (buffer.length < 80) throw new Error('Buffer too small (< 80 bytes)')
2014-10-16 06:30:57 +02:00
var offset = 0
2015-02-23 00:36:57 +01:00
function readSlice (n) {
2014-10-16 06:30:57 +02:00
offset += n
return buffer.slice(offset - n, offset)
}
2015-02-23 00:36:57 +01:00
function readUInt32 () {
2014-10-16 06:30:57 +02:00
var i = buffer.readUInt32LE(offset)
offset += 4
return i
}
var block = new Block()
block.version = readUInt32()
block.prevHash = readSlice(32)
block.merkleRoot = readSlice(32)
block.timestamp = readUInt32()
block.bits = readUInt32()
block.nonce = readUInt32()
if (buffer.length === 80) return block
2015-02-23 00:36:57 +01:00
function readVarInt () {
2014-10-16 06:30:57 +02:00
var vi = bufferutils.readVarInt(buffer, offset)
offset += vi.size
return vi.number
}
2015-02-23 00:36:57 +01:00
function readTransaction () {
2015-02-19 08:59:56 +01:00
var tx = Transaction.fromBuffer(buffer.slice(offset), true)
2014-10-16 06:30:57 +02:00
offset += tx.byteLength()
2014-10-16 06:30:57 +02:00
return tx
}
var nTransactions = readVarInt()
block.transactions = []
for (var i = 0; i < nTransactions; ++i) {
var tx = readTransaction()
block.transactions.push(tx)
}
return block
}
2015-02-23 00:36:57 +01:00
Block.fromHex = function (hex) {
2014-10-16 06:30:57 +02:00
return Block.fromBuffer(new Buffer(hex, 'hex'))
}
2015-02-23 00:36:57 +01:00
Block.prototype.getHash = function () {
return bcrypto.hash256(this.toBuffer(true))
}
2015-02-23 00:36:57 +01:00
Block.prototype.getId = function () {
2015-09-27 15:36:31 +02:00
return [].reverse.call(this.getHash()).toString('hex')
}
2015-02-23 00:36:57 +01:00
Block.prototype.getUTCDate = function () {
var date = new Date(0) // epoch
date.setUTCSeconds(this.timestamp)
return date
}
2015-02-23 00:36:57 +01:00
Block.prototype.toBuffer = function (headersOnly) {
2014-10-16 06:30:57 +02:00
var buffer = new Buffer(80)
var offset = 0
2015-02-23 00:36:57 +01:00
function writeSlice (slice) {
2014-10-16 06:30:57 +02:00
slice.copy(buffer, offset)
offset += slice.length
}
2015-02-23 00:36:57 +01:00
function writeUInt32 (i) {
2014-10-16 06:30:57 +02:00
buffer.writeUInt32LE(i, offset)
offset += 4
}
writeUInt32(this.version)
writeSlice(this.prevHash)
writeSlice(this.merkleRoot)
writeUInt32(this.timestamp)
writeUInt32(this.bits)
writeUInt32(this.nonce)
if (headersOnly || !this.transactions) return buffer
2014-10-17 04:07:14 +02:00
var txLenBuffer = bufferutils.varIntBuffer(this.transactions.length)
2015-02-23 00:36:57 +01:00
var txBuffers = this.transactions.map(function (tx) {
2014-10-16 06:30:57 +02:00
return tx.toBuffer()
})
return Buffer.concat([buffer, txLenBuffer].concat(txBuffers))
}
2015-02-23 00:36:57 +01:00
Block.prototype.toHex = function (headersOnly) {
2014-10-16 06:30:57 +02:00
return this.toBuffer(headersOnly).toString('hex')
}
Block.calculateTarget = function (bits) {
var exponent = ((bits & 0xff000000) >> 24) - 3
2015-12-09 22:02:58 +01:00
var mantissa = bits & 0x007fffff
var i = 31 - exponent
var target = new Buffer(32)
target.fill(0)
target[i] = mantissa & 0xff
target[i - 1] = mantissa >> 8
target[i - 2] = mantissa >> 16
target[i - 3] = mantissa >> 24
2015-12-09 22:02:58 +01:00
return target
}
Block.prototype.checkProofOfWork = function () {
var hash = [].reverse.call(this.getHash())
2015-12-11 02:39:09 +01:00
var target = Block.calculateTarget(this.bits)
2015-12-08 08:51:35 +01:00
2015-12-11 02:39:09 +01:00
return compare(hash, target) <= 0
2015-12-08 08:51:35 +01:00
}
2014-10-16 06:30:57 +02:00
module.exports = Block