I have been trying to do a transaction using bitcore-lib. I have successfully created transaction object.
let bitcore_transaction = new bitcore.Transaction()
.from(utxos[0])
.to(to, +amnt)
.fee(+gas)
.change(from)
.sign(pk);
I was trying to broadcast it using bitcore-explorers but it is giving me ssl handshake error. Is there any other alternate do do so?
Thank you