Web3js

通過 infura 創建帳戶 - ropsten network

  • March 22, 2018

我通過 web3js 將節點與 infura 連接:

var currentProviderr = new web3.providers.HttpProvider("https://ropsten.infura.io/...");

如何在 infura 中創建帳戶?如何查看它們?

web3.eth.getAccounts(function(error, accounts) {
     if (error) {
       console.log(error);
     }

     infurawallet = accounts[0];
    }

infurawallet 顯示未定義…

你不能用 infura 生成錢包,因為他們不能為你持有私鑰。

您還需要在發送交易之前簽署交易。

您可能會發現 Infura 的文件很有用。

引用自:https://ethereum.stackexchange.com/questions/43510