Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const generateTx = ({ utxos, fromAddress, toAddress, privateKey, amount }) => {
const tx = Transaction();
tx.from(utxos);
tx.to(toAddress, toSatoshi(amount));
tx.change(fromAddress);
try {
tx.sign(privateKey);
tx.serialize();
} catch (err) {
throw new Error(`Could not sign & serialize transaction: ${err}`);
}
return tx;
};