2016-02-28 05:30:56 +01:00
|
|
|
// Copyright (c) 2016 The btcsuite developers
|
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package txsizes
|
|
|
|
|
|
|
|
import (
|
2016-05-05 21:04:36 +02:00
|
|
|
"github.com/roasbeef/btcd/wire"
|
2016-02-28 05:30:56 +01:00
|
|
|
|
2016-05-05 21:04:36 +02:00
|
|
|
h "github.com/roasbeef/btcwallet/internal/helpers"
|
2016-02-28 05:30:56 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// Worst case script and input/output size estimates.
|
|
|
|
const (
|
|
|
|
// RedeemP2PKHSigScriptSize is the worst case (largest) serialize size
|
|
|
|
// of a transaction input script that redeems a compressed P2PKH output.
|
|
|
|
// It is calculated as:
|
|
|
|
//
|
|
|
|
// - OP_DATA_73
|
|
|
|
// - 72 bytes DER signature + 1 byte sighash
|
|
|
|
// - OP_DATA_33
|
|
|
|
// - 33 bytes serialized compressed pubkey
|
|
|
|
RedeemP2PKHSigScriptSize = 1 + 73 + 1 + 33
|
|
|
|
|
|
|
|
// P2PKHPkScriptSize is the size of a transaction output script that
|
|
|
|
// pays to a compressed pubkey hash. It is calculated as:
|
|
|
|
//
|
|
|
|
// - OP_DUP
|
|
|
|
// - OP_HASH160
|
|
|
|
// - OP_DATA_20
|
|
|
|
// - 20 bytes pubkey hash
|
|
|
|
// - OP_EQUALVERIFY
|
|
|
|
// - OP_CHECKSIG
|
|
|
|
P2PKHPkScriptSize = 1 + 1 + 1 + 20 + 1 + 1
|
|
|
|
|
|
|
|
// RedeemP2PKHInputSize is the worst case (largest) serialize size of a
|
|
|
|
// transaction input redeeming a compressed P2PKH output. It is
|
|
|
|
// calculated as:
|
|
|
|
//
|
|
|
|
// - 32 bytes previous tx
|
|
|
|
// - 4 bytes output index
|
|
|
|
// - 1 byte compact int encoding value 107
|
|
|
|
// - 107 bytes signature script
|
|
|
|
// - 4 bytes sequence
|
|
|
|
RedeemP2PKHInputSize = 32 + 4 + 1 + RedeemP2PKHSigScriptSize + 4
|
|
|
|
|
|
|
|
// P2PKHOutputSize is the serialize size of a transaction output with a
|
|
|
|
// P2PKH output script. It is calculated as:
|
|
|
|
//
|
|
|
|
// - 8 bytes output value
|
|
|
|
// - 1 byte compact int encoding value 25
|
|
|
|
// - 25 bytes P2PKH output script
|
|
|
|
P2PKHOutputSize = 8 + 1 + P2PKHPkScriptSize
|
2016-04-25 21:35:45 +02:00
|
|
|
|
|
|
|
// TODO(roasbeef): add estimates for nested p2wkh and p2pkh
|
2016-02-28 05:30:56 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// EstimateSerializeSize returns a worst case serialize size estimate for a
|
|
|
|
// signed transaction that spends inputCount number of compressed P2PKH outputs
|
|
|
|
// and contains each transaction output from txOuts. The estimated size is
|
|
|
|
// incremented for an additional P2PKH change output if addChangeOutput is true.
|
|
|
|
func EstimateSerializeSize(inputCount int, txOuts []*wire.TxOut, addChangeOutput bool) int {
|
|
|
|
changeSize := 0
|
|
|
|
outputCount := len(txOuts)
|
|
|
|
if addChangeOutput {
|
|
|
|
changeSize = P2PKHOutputSize
|
|
|
|
outputCount++
|
|
|
|
}
|
|
|
|
|
|
|
|
// 8 additional bytes are for version and locktime
|
|
|
|
return 8 + wire.VarIntSerializeSize(uint64(inputCount)) +
|
|
|
|
wire.VarIntSerializeSize(uint64(outputCount)) +
|
|
|
|
inputCount*RedeemP2PKHInputSize +
|
|
|
|
h.SumOutputSerializeSizes(txOuts) +
|
|
|
|
changeSize
|
|
|
|
}
|