2018-12-27 10:26:08 +01:00
|
|
|
import * as bcrypto from './crypto'
|
2018-06-25 08:25:12 +02:00
|
|
|
const Buffer = require('safe-buffer').Buffer
|
|
|
|
const bscript = require('./script')
|
|
|
|
const bufferutils = require('./bufferutils')
|
|
|
|
const opcodes = require('bitcoin-ops')
|
|
|
|
const typeforce = require('typeforce')
|
|
|
|
const types = require('./types')
|
|
|
|
const varuint = require('varuint-bitcoin')
|
2014-06-04 06:07:29 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
function varSliceSize (someScript: Buffer): number {
|
2018-06-25 08:37:45 +02:00
|
|
|
const length = someScript.length
|
2016-07-14 11:50:35 +02:00
|
|
|
|
2017-04-19 06:41:59 +02:00
|
|
|
return varuint.encodingLength(length) + length
|
2016-07-14 11:50:35 +02:00
|
|
|
}
|
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
function vectorSize (someVector: Array<Buffer>): number {
|
2018-06-25 08:37:45 +02:00
|
|
|
const length = someVector.length
|
2016-07-14 11:50:35 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
return varuint.encodingLength(length) + someVector.reduce((sum, witness) => {
|
2016-07-14 11:50:35 +02:00
|
|
|
return sum + varSliceSize(witness)
|
|
|
|
}, 0)
|
|
|
|
}
|
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
const EMPTY_SCRIPT: Buffer = Buffer.allocUnsafe(0)
|
|
|
|
const EMPTY_WITNESS: Array<Buffer> = []
|
|
|
|
const ZERO: Buffer = Buffer.from('0000000000000000000000000000000000000000000000000000000000000000', 'hex')
|
|
|
|
const ONE: Buffer = Buffer.from('0000000000000000000000000000000000000000000000000000000000000001', 'hex')
|
|
|
|
const VALUE_UINT64_MAX: Buffer = Buffer.from('ffffffffffffffff', 'hex')
|
|
|
|
const BLANK_OUTPUT: BlankOutput = {
|
2016-07-14 11:50:35 +02:00
|
|
|
script: EMPTY_SCRIPT,
|
|
|
|
valueBuffer: VALUE_UINT64_MAX
|
|
|
|
}
|
2014-09-15 06:21:01 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
function isOutput(out: Output | BlankOutput): out is Output {
|
|
|
|
return (<Output>out).value !== undefined
|
|
|
|
}
|
2014-10-24 04:58:32 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
export type BlankOutput = {
|
|
|
|
script: Buffer
|
|
|
|
valueBuffer: Buffer
|
|
|
|
}
|
2015-02-19 02:30:23 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
export type Output = {
|
|
|
|
script: Buffer
|
|
|
|
value: number
|
|
|
|
}
|
2016-07-14 11:50:35 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
export type Input = {
|
|
|
|
hash: Buffer
|
|
|
|
index: number
|
|
|
|
script: Buffer
|
|
|
|
sequence: number
|
|
|
|
witness: Array<Buffer>
|
|
|
|
}
|
2016-07-14 11:50:35 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
export class Transaction {
|
|
|
|
version: number
|
|
|
|
locktime: number
|
|
|
|
ins: Array<Input>
|
|
|
|
outs: Array<Output | BlankOutput>
|
|
|
|
|
|
|
|
static readonly DEFAULT_SEQUENCE = 0xffffffff
|
|
|
|
static readonly SIGHASH_ALL = 0x01
|
|
|
|
static readonly SIGHASH_NONE = 0x02
|
|
|
|
static readonly SIGHASH_SINGLE = 0x03
|
|
|
|
static readonly SIGHASH_ANYONECANPAY = 0x80
|
|
|
|
static readonly ADVANCED_TRANSACTION_MARKER = 0x00
|
|
|
|
static readonly ADVANCED_TRANSACTION_FLAG = 0x01
|
|
|
|
|
|
|
|
constructor () {
|
|
|
|
this.version = 1
|
|
|
|
this.locktime = 0
|
|
|
|
this.ins = []
|
|
|
|
this.outs = []
|
2014-10-24 04:58:32 +02:00
|
|
|
}
|
2018-12-27 10:26:08 +01:00
|
|
|
|
|
|
|
static fromBuffer (buffer: Buffer, __noStrict: boolean): Transaction {
|
|
|
|
let offset: number = 0
|
2014-10-24 04:58:32 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
function readSlice (n: number): Buffer {
|
|
|
|
offset += n
|
|
|
|
return buffer.slice(offset - n, offset)
|
|
|
|
}
|
2014-10-24 04:58:32 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
function readUInt32 (): number {
|
|
|
|
const i = buffer.readUInt32LE(offset)
|
|
|
|
offset += 4
|
|
|
|
return i
|
|
|
|
}
|
2016-11-08 13:43:45 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
function readInt32 (): number {
|
|
|
|
const i = buffer.readInt32LE(offset)
|
|
|
|
offset += 4
|
|
|
|
return i
|
|
|
|
}
|
2016-07-14 11:50:35 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
function readUInt64 (): number {
|
|
|
|
const i = bufferutils.readUInt64LE(buffer, offset)
|
|
|
|
offset += 8
|
|
|
|
return i
|
|
|
|
}
|
2015-02-19 02:03:41 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
function readVarInt (): number {
|
|
|
|
const vi = varuint.decode(buffer, offset)
|
|
|
|
offset += varuint.decode.bytes
|
|
|
|
return vi
|
|
|
|
}
|
|
|
|
|
|
|
|
function readVarSlice (): Buffer {
|
|
|
|
return readSlice(readVarInt())
|
|
|
|
}
|
|
|
|
|
|
|
|
function readVector (): Array<Buffer> {
|
|
|
|
const count = readVarInt()
|
|
|
|
const vector: Array<Buffer> = []
|
|
|
|
for (var i = 0; i < count; i++) vector.push(readVarSlice())
|
|
|
|
return vector
|
|
|
|
}
|
|
|
|
|
|
|
|
const tx = new Transaction()
|
|
|
|
tx.version = readInt32()
|
|
|
|
|
|
|
|
const marker = buffer.readUInt8(offset)
|
|
|
|
const flag = buffer.readUInt8(offset + 1)
|
|
|
|
|
|
|
|
let hasWitnesses = false
|
|
|
|
if (marker === Transaction.ADVANCED_TRANSACTION_MARKER &&
|
2018-12-18 16:16:48 +01:00
|
|
|
flag === Transaction.ADVANCED_TRANSACTION_FLAG) {
|
2018-12-27 10:26:08 +01:00
|
|
|
offset += 2
|
|
|
|
hasWitnesses = true
|
|
|
|
}
|
2014-10-24 04:58:32 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
const vinLen = readVarInt()
|
|
|
|
for (var i = 0; i < vinLen; ++i) {
|
|
|
|
tx.ins.push({
|
|
|
|
hash: readSlice(32),
|
|
|
|
index: readUInt32(),
|
|
|
|
script: readVarSlice(),
|
|
|
|
sequence: readUInt32(),
|
|
|
|
witness: EMPTY_WITNESS
|
|
|
|
})
|
|
|
|
}
|
2014-10-24 04:58:32 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
const voutLen = readVarInt()
|
|
|
|
for (i = 0; i < voutLen; ++i) {
|
|
|
|
tx.outs.push({
|
|
|
|
value: readUInt64(),
|
|
|
|
script: readVarSlice()
|
|
|
|
})
|
|
|
|
}
|
2015-02-19 02:04:37 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
if (hasWitnesses) {
|
|
|
|
for (i = 0; i < vinLen; ++i) {
|
|
|
|
tx.ins[i].witness = readVector()
|
|
|
|
}
|
|
|
|
|
|
|
|
// was this pointless?
|
|
|
|
if (!tx.hasWitnesses()) throw new Error('Transaction has superfluous witness data')
|
2018-09-26 07:54:53 +02:00
|
|
|
}
|
2013-02-17 06:39:15 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
tx.locktime = readUInt32()
|
2013-02-17 06:39:15 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
if (__noStrict) return tx
|
|
|
|
if (offset !== buffer.length) throw new Error('Transaction has unexpected data')
|
2017-06-20 13:46:46 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
return tx
|
|
|
|
}
|
2017-06-20 13:46:46 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
static fromHex (hex: string): Transaction {
|
|
|
|
return Transaction.fromBuffer(Buffer.from(hex, 'hex'), false)
|
|
|
|
}
|
2016-11-14 01:37:45 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
static isCoinbaseHash (buffer: Buffer): boolean {
|
|
|
|
typeforce(types.Hash256bit, buffer)
|
|
|
|
for (var i = 0; i < 32; ++i) {
|
|
|
|
if (buffer[i] !== 0) return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
2015-03-16 00:50:47 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
isCoinbase (): boolean {
|
|
|
|
return this.ins.length === 1 && Transaction.isCoinbaseHash(this.ins[0].hash)
|
2018-12-18 16:16:48 +01:00
|
|
|
}
|
2014-03-23 20:03:58 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
addInput (hash: Buffer, index: number, sequence: number, scriptSig: Buffer): number {
|
|
|
|
typeforce(types.tuple(
|
|
|
|
types.Hash256bit,
|
|
|
|
types.UInt32,
|
|
|
|
types.maybe(types.UInt32),
|
|
|
|
types.maybe(types.Buffer)
|
|
|
|
), arguments)
|
2014-03-23 20:01:33 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
if (types.Null(sequence)) {
|
|
|
|
sequence = Transaction.DEFAULT_SEQUENCE
|
|
|
|
}
|
2018-12-18 16:16:48 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
// Add the input and return the input's index
|
|
|
|
return (this.ins.push({
|
|
|
|
hash: hash,
|
|
|
|
index: index,
|
|
|
|
script: scriptSig || EMPTY_SCRIPT,
|
|
|
|
sequence: sequence,
|
|
|
|
witness: EMPTY_WITNESS
|
|
|
|
}) - 1)
|
2018-12-18 16:16:48 +01:00
|
|
|
}
|
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
addOutput (scriptPubKey: Buffer, value: number): number {
|
|
|
|
typeforce(types.tuple(types.Buffer, types.Satoshi), arguments)
|
2013-11-20 19:00:49 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
// Add the output and return the output's index
|
|
|
|
return (this.outs.push({
|
|
|
|
script: scriptPubKey,
|
|
|
|
value: value
|
|
|
|
}) - 1)
|
|
|
|
}
|
2015-04-28 02:35:32 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
hasWitnesses (): boolean {
|
|
|
|
return this.ins.some((x) => {
|
|
|
|
return x.witness.length !== 0
|
|
|
|
})
|
|
|
|
}
|
2013-02-17 06:39:15 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
weight (): number {
|
|
|
|
const base = this.__byteLength(false)
|
|
|
|
const total = this.__byteLength(true)
|
|
|
|
return base * 3 + total
|
|
|
|
}
|
2013-02-17 06:39:15 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
virtualSize (): number {
|
|
|
|
return Math.ceil(this.weight() / 4)
|
|
|
|
}
|
2013-02-17 06:39:15 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
byteLength (): number {
|
|
|
|
return this.__byteLength(true)
|
|
|
|
}
|
2015-04-28 02:35:32 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
__byteLength (__allowWitness: boolean): number {
|
|
|
|
const hasWitnesses = __allowWitness && this.hasWitnesses()
|
|
|
|
|
|
|
|
return (
|
|
|
|
(hasWitnesses ? 10 : 8) +
|
|
|
|
varuint.encodingLength(this.ins.length) +
|
|
|
|
varuint.encodingLength(this.outs.length) +
|
|
|
|
this.ins.reduce((sum, input) => {
|
|
|
|
return sum + 40 + varSliceSize(input.script)
|
|
|
|
}, 0) +
|
|
|
|
this.outs.reduce((sum, output) => {
|
|
|
|
return sum + 8 + varSliceSize(output.script)
|
|
|
|
}, 0) +
|
|
|
|
(hasWitnesses ? this.ins.reduce((sum, input) => {
|
|
|
|
return sum + vectorSize(input.witness)
|
|
|
|
}, 0) : 0)
|
|
|
|
)
|
|
|
|
}
|
2016-06-22 05:54:55 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
clone (): Transaction {
|
|
|
|
const newTx = new Transaction()
|
|
|
|
newTx.version = this.version
|
|
|
|
newTx.locktime = this.locktime
|
|
|
|
|
|
|
|
newTx.ins = this.ins.map((txIn) => {
|
|
|
|
return {
|
|
|
|
hash: txIn.hash,
|
|
|
|
index: txIn.index,
|
|
|
|
script: txIn.script,
|
|
|
|
sequence: txIn.sequence,
|
|
|
|
witness: txIn.witness
|
|
|
|
}
|
|
|
|
})
|
2018-09-26 07:54:53 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
newTx.outs = this.outs.map((txOut) => {
|
|
|
|
return {
|
|
|
|
script: txOut.script,
|
|
|
|
value: (<Output>txOut).value
|
|
|
|
}
|
|
|
|
})
|
2018-12-18 16:16:48 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
return newTx
|
|
|
|
}
|
2015-04-28 02:35:32 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
/**
|
|
|
|
* Hash transaction for signing a specific input.
|
|
|
|
*
|
|
|
|
* Bitcoin uses a different hash for each signed transaction input.
|
|
|
|
* This method copies the transaction, makes the necessary changes based on the
|
|
|
|
* hashType, and then hashes the result.
|
|
|
|
* This hash can then be used to sign the provided transaction input.
|
|
|
|
*/
|
|
|
|
hashForSignature (inIndex: number, prevOutScript: Buffer, hashType: number): Buffer {
|
|
|
|
typeforce(types.tuple(types.UInt32, types.Buffer, /* types.UInt8 */ types.Number), arguments)
|
|
|
|
|
|
|
|
// https://github.com/bitcoin/bitcoin/blob/master/src/test/sighash_tests.cpp#L29
|
|
|
|
if (inIndex >= this.ins.length) return ONE
|
|
|
|
|
|
|
|
// ignore OP_CODESEPARATOR
|
|
|
|
const ourScript = bscript.compile(bscript.decompile(prevOutScript).filter((x) => {
|
|
|
|
return x !== opcodes.OP_CODESEPARATOR
|
|
|
|
}))
|
|
|
|
|
|
|
|
const txTmp = this.clone()
|
|
|
|
|
|
|
|
// SIGHASH_NONE: ignore all outputs? (wildcard payee)
|
|
|
|
if ((hashType & 0x1f) === Transaction.SIGHASH_NONE) {
|
|
|
|
txTmp.outs = []
|
|
|
|
|
|
|
|
// ignore sequence numbers (except at inIndex)
|
|
|
|
txTmp.ins.forEach((input, i) => {
|
|
|
|
if (i === inIndex) return
|
|
|
|
|
|
|
|
input.sequence = 0
|
|
|
|
})
|
|
|
|
|
|
|
|
// SIGHASH_SINGLE: ignore all outputs, except at the same index?
|
|
|
|
} else if ((hashType & 0x1f) === Transaction.SIGHASH_SINGLE) {
|
|
|
|
// https://github.com/bitcoin/bitcoin/blob/master/src/test/sighash_tests.cpp#L60
|
|
|
|
if (inIndex >= this.outs.length) return ONE
|
|
|
|
|
|
|
|
// truncate outputs after
|
|
|
|
txTmp.outs.length = inIndex + 1
|
|
|
|
|
|
|
|
// "blank" outputs before
|
|
|
|
for (var i = 0; i < inIndex; i++) {
|
|
|
|
txTmp.outs[i] = BLANK_OUTPUT
|
|
|
|
}
|
|
|
|
|
|
|
|
// ignore sequence numbers (except at inIndex)
|
|
|
|
txTmp.ins.forEach((input, y) => {
|
|
|
|
if (y === inIndex) return
|
|
|
|
|
|
|
|
input.sequence = 0
|
|
|
|
})
|
2018-12-18 16:16:48 +01:00
|
|
|
}
|
2015-04-28 02:35:32 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
// SIGHASH_ANYONECANPAY: ignore inputs entirely?
|
|
|
|
if (hashType & Transaction.SIGHASH_ANYONECANPAY) {
|
|
|
|
txTmp.ins = [txTmp.ins[inIndex]]
|
|
|
|
txTmp.ins[0].script = ourScript
|
2015-02-23 00:36:57 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
// SIGHASH_ALL: only ignore input scripts
|
|
|
|
} else {
|
|
|
|
// "blank" others input scripts
|
|
|
|
txTmp.ins.forEach((input) => {
|
|
|
|
input.script = EMPTY_SCRIPT
|
|
|
|
})
|
|
|
|
txTmp.ins[inIndex].script = ourScript
|
|
|
|
}
|
2018-09-26 07:54:53 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
// serialize and hash
|
|
|
|
const buffer: Buffer = Buffer.allocUnsafe(txTmp.__byteLength(false) + 4)
|
|
|
|
buffer.writeInt32LE(hashType, buffer.length - 4)
|
|
|
|
txTmp.__toBuffer(buffer, 0, false)
|
2015-04-28 02:35:32 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
return bcrypto.hash256(buffer)
|
|
|
|
}
|
2016-06-22 05:54:55 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
hashForWitnessV0 (inIndex: number, prevOutScript: Buffer, value: number, hashType: number): Buffer {
|
|
|
|
typeforce(types.tuple(types.UInt32, types.Buffer, types.Satoshi, types.UInt32), arguments)
|
2014-03-21 03:15:15 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
let tbuffer: Buffer = Buffer.from([])
|
|
|
|
let toffset: number = 0
|
2016-06-22 05:54:55 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
function writeSlice (slice: Buffer): void {
|
|
|
|
toffset += slice.copy(tbuffer, toffset)
|
|
|
|
}
|
2014-03-21 03:15:15 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
function writeUInt32 (i: number): void {
|
|
|
|
toffset = tbuffer.writeUInt32LE(i, toffset)
|
|
|
|
}
|
2014-03-23 20:01:33 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
function writeUInt64 (i: number): void {
|
|
|
|
toffset = bufferutils.writeUInt64LE(tbuffer, i, toffset)
|
|
|
|
}
|
2013-02-17 06:39:15 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
function writeVarInt (i: number): void {
|
|
|
|
varuint.encode(i, tbuffer, toffset)
|
|
|
|
toffset += varuint.encode.bytes
|
|
|
|
}
|
2016-07-14 11:50:35 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
function writeVarSlice (slice: Buffer): void {
|
|
|
|
writeVarInt(slice.length)
|
|
|
|
writeSlice(slice)
|
2018-09-26 07:54:53 +02:00
|
|
|
}
|
2016-07-14 11:50:35 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
let hashOutputs = ZERO
|
|
|
|
let hashPrevouts = ZERO
|
|
|
|
let hashSequence = ZERO
|
2016-11-09 01:54:17 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
if (!(hashType & Transaction.SIGHASH_ANYONECANPAY)) {
|
|
|
|
tbuffer = Buffer.allocUnsafe(36 * this.ins.length)
|
|
|
|
toffset = 0
|
2018-09-26 07:54:53 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
this.ins.forEach((txIn) => {
|
|
|
|
writeSlice(txIn.hash)
|
|
|
|
writeUInt32(txIn.index)
|
|
|
|
})
|
2018-09-26 07:54:53 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
hashPrevouts = bcrypto.hash256(tbuffer)
|
|
|
|
}
|
2018-09-26 07:54:53 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
if (!(hashType & Transaction.SIGHASH_ANYONECANPAY) &&
|
|
|
|
(hashType & 0x1f) !== Transaction.SIGHASH_SINGLE &&
|
|
|
|
(hashType & 0x1f) !== Transaction.SIGHASH_NONE) {
|
|
|
|
tbuffer = Buffer.allocUnsafe(4 * this.ins.length)
|
|
|
|
toffset = 0
|
2018-09-26 07:54:53 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
this.ins.forEach((txIn) => {
|
|
|
|
writeUInt32(txIn.sequence)
|
|
|
|
})
|
2018-09-26 07:54:53 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
hashSequence = bcrypto.hash256(tbuffer)
|
|
|
|
}
|
2018-09-26 07:54:53 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
if ((hashType & 0x1f) !== Transaction.SIGHASH_SINGLE &&
|
|
|
|
(hashType & 0x1f) !== Transaction.SIGHASH_NONE) {
|
|
|
|
const txOutsSize = this.outs.reduce((sum, output) => {
|
|
|
|
return sum + 8 + varSliceSize(output.script)
|
|
|
|
}, 0)
|
2018-09-26 07:54:53 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
tbuffer = Buffer.allocUnsafe(txOutsSize)
|
|
|
|
toffset = 0
|
2016-07-14 11:50:35 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
this.outs.forEach((out) => {
|
|
|
|
writeUInt64((<Output>out).value)
|
|
|
|
writeVarSlice(out.script)
|
|
|
|
})
|
2018-09-26 07:54:53 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
hashOutputs = bcrypto.hash256(tbuffer)
|
|
|
|
} else if ((hashType & 0x1f) === Transaction.SIGHASH_SINGLE && inIndex < this.outs.length) {
|
|
|
|
const output = this.outs[inIndex]
|
2016-07-14 11:50:35 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
tbuffer = Buffer.allocUnsafe(8 + varSliceSize(output.script))
|
|
|
|
toffset = 0
|
|
|
|
writeUInt64((<Output>output).value)
|
|
|
|
writeVarSlice(output.script)
|
2016-07-14 11:50:35 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
hashOutputs = bcrypto.hash256(tbuffer)
|
|
|
|
}
|
|
|
|
|
|
|
|
tbuffer = Buffer.allocUnsafe(156 + varSliceSize(prevOutScript))
|
2018-12-18 16:16:48 +01:00
|
|
|
toffset = 0
|
2018-09-26 07:54:53 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
const input = this.ins[inIndex]
|
|
|
|
writeUInt32(this.version)
|
|
|
|
writeSlice(hashPrevouts)
|
|
|
|
writeSlice(hashSequence)
|
|
|
|
writeSlice(input.hash)
|
|
|
|
writeUInt32(input.index)
|
|
|
|
writeVarSlice(prevOutScript)
|
|
|
|
writeUInt64(value)
|
|
|
|
writeUInt32(input.sequence)
|
|
|
|
writeSlice(hashOutputs)
|
|
|
|
writeUInt32(this.locktime)
|
|
|
|
writeUInt32(hashType)
|
|
|
|
return bcrypto.hash256(tbuffer)
|
|
|
|
}
|
2018-09-26 07:54:53 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
getHash (forWitness: boolean): Buffer {
|
|
|
|
// wtxid for coinbase is always 32 bytes of 0x00
|
|
|
|
if (forWitness && this.isCoinbase()) return Buffer.alloc(32, 0)
|
|
|
|
return bcrypto.hash256(this.__toBuffer(undefined, undefined, forWitness))
|
2016-07-14 11:50:35 +02:00
|
|
|
}
|
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
getId (): string {
|
|
|
|
// transaction hash's are displayed in reverse order
|
|
|
|
return Buffer.from(this.getHash(false).reverse()).toString('hex')
|
|
|
|
}
|
2016-07-14 11:50:35 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
toBuffer (buffer: Buffer | void, initialOffset: number | void): Buffer {
|
|
|
|
return this.__toBuffer(buffer, initialOffset, true)
|
|
|
|
}
|
2016-07-14 11:50:35 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
__toBuffer (buffer: Buffer | void, initialOffset: number | void, __allowWitness: boolean | void): Buffer {
|
|
|
|
if (!buffer) buffer = <Buffer> Buffer.allocUnsafe(this.__byteLength((<boolean>__allowWitness)))
|
2016-07-14 11:50:35 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
let offset = initialOffset || 0
|
2016-07-14 11:50:35 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
function writeSlice (slice) {
|
|
|
|
offset += slice.copy(buffer, offset)
|
|
|
|
}
|
2018-12-18 16:16:48 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
function writeUInt8 (i) {
|
|
|
|
offset = (<Buffer>buffer).writeUInt8(i, offset)
|
|
|
|
}
|
2018-12-18 16:16:48 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
function writeUInt32 (i) {
|
|
|
|
offset = (<Buffer>buffer).writeUInt32LE(i, offset)
|
|
|
|
}
|
2016-07-14 11:50:35 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
function writeInt32 (i) {
|
|
|
|
offset = (<Buffer>buffer).writeInt32LE(i, offset)
|
|
|
|
}
|
2014-06-16 10:52:06 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
function writeUInt64 (i) {
|
|
|
|
offset = bufferutils.writeUInt64LE(buffer, i, offset)
|
|
|
|
}
|
2013-02-17 06:39:15 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
function writeVarInt (i) {
|
|
|
|
varuint.encode(i, buffer, offset)
|
|
|
|
offset += varuint.encode.bytes
|
|
|
|
}
|
2016-11-14 01:37:45 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
function writeVarSlice (slice) {
|
|
|
|
writeVarInt(slice.length)
|
|
|
|
writeSlice(slice)
|
|
|
|
}
|
2014-10-16 06:30:12 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
function writeVector (vector) {
|
|
|
|
writeVarInt(vector.length)
|
|
|
|
vector.forEach(writeVarSlice)
|
|
|
|
}
|
2016-07-14 11:50:35 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
writeInt32(this.version)
|
2016-07-14 11:50:35 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
const hasWitnesses = __allowWitness && this.hasWitnesses()
|
2016-07-14 11:50:35 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
if (hasWitnesses) {
|
|
|
|
writeUInt8(Transaction.ADVANCED_TRANSACTION_MARKER)
|
|
|
|
writeUInt8(Transaction.ADVANCED_TRANSACTION_FLAG)
|
|
|
|
}
|
2014-05-01 22:36:21 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
writeVarInt(this.ins.length)
|
2014-03-23 20:02:31 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
this.ins.forEach((txIn) => {
|
|
|
|
writeSlice(txIn.hash)
|
|
|
|
writeUInt32(txIn.index)
|
|
|
|
writeVarSlice(txIn.script)
|
|
|
|
writeUInt32(txIn.sequence)
|
|
|
|
})
|
2015-04-28 02:35:32 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
writeVarInt(this.outs.length)
|
|
|
|
this.outs.forEach((txOut) => {
|
|
|
|
if (isOutput(txOut)) {
|
|
|
|
writeUInt64(txOut.value)
|
|
|
|
} else {
|
|
|
|
writeSlice(txOut.valueBuffer)
|
|
|
|
}
|
2014-03-23 20:02:31 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
writeVarSlice(txOut.script)
|
2016-07-14 11:50:35 +02:00
|
|
|
})
|
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
if (hasWitnesses) {
|
|
|
|
this.ins.forEach((input) => {
|
|
|
|
writeVector(input.witness)
|
|
|
|
})
|
|
|
|
}
|
2014-03-09 06:46:20 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
writeUInt32(this.locktime)
|
2013-10-07 14:21:00 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
// avoid slicing unless necessary
|
|
|
|
if (initialOffset !== undefined) return buffer.slice((<number>initialOffset), offset)
|
|
|
|
return buffer
|
|
|
|
}
|
2014-05-08 02:44:35 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
toHex () {
|
|
|
|
return this.toBuffer(undefined, undefined).toString('hex')
|
|
|
|
}
|
2015-02-05 04:33:31 +01:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
setInputScript (index, scriptSig) {
|
|
|
|
typeforce(types.tuple(types.Number, types.Buffer), arguments)
|
2014-07-25 08:11:45 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
this.ins[index].script = scriptSig
|
|
|
|
}
|
2016-07-14 11:50:35 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
setWitness (index, witness) {
|
|
|
|
typeforce(types.tuple(types.Number, [types.Buffer]), arguments)
|
2016-07-14 11:50:35 +02:00
|
|
|
|
2018-12-27 10:26:08 +01:00
|
|
|
this.ins[index].witness = witness
|
|
|
|
}
|
|
|
|
}
|