我一直在尝试使用bitcore-lib进行事务。我已经成功创建了交易对象。
let bitcore_transaction = new bitcore.Transaction()
.from(utxos[0])
.to(to, +amnt)
.fee(+gas)
.change(from)
.sign(pk);
我试图使用bitcore-explorers广播它,但这给了我SSL握手错误。还有其他替代方法吗?
谢谢