/**
* A P2PKH witness example for estimating txn size before signing transaction.
*/
const P2WPKH_WITNESS_EXAMPLE: Witness = {
scripts: [
{ hex: '3044022000000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000001' },
{ hex: '000000000000000000000000000000000000000000000000000000000000000000' }
]
}
Are the first 30440220 and the middle 22 fixed values? What is the signature algorithm we use?
Are the first 30440220 and the middle 22 fixed values? What is the signature algorithm we use?