Merge
Create a merge transaction
const stasInput1 = {
txHex : 'previous transaction hex string',
vout : 'output index of the UTXO being spent'
}
const stasInput2 = {
txHex : 'previous transaction hex string',
vout : 'output index of the UTXO being spent'
}const mergeHex = await stasMerge.signed(
ownerPrivateKey1,
stasInput1,
ownerPrivateKey2,
stasInput2,
destinationAddr,
paymentPrivateKey,
paymentUtxo
)
Last updated