Transactions
使用 web3 簽署交易而不連接到 geth
是否可以在客戶端瀏覽器中使用 web3.js 庫讓他們生成地址並簽署交易,而無需連接到乙太坊節點?
不在 web3.js 中。 編輯:正如@Andromelus 所回答,web3js 1.0 可以使用以下功能:
web3.eth.accounts.signTransaction(tx, privateKey [, callback]);
還有其他可以使用的庫,例如https://github.com/ethereumjs/ethereumjs-tx>和<https://github.com/SilentCicero/ethereumjs-accounts。請參閱創建和簽署離線原始交易?
可以使用 web3js 簽署交易,檢查1.0.0 版本