Web3js

帳戶私鑰未在瀏覽器上使用純 Javascript 和 HTML 使用 Web3.js 進行記錄

  • March 5, 2020

這是下面的程式碼,我想使用 web3 js 創建帳戶並記錄私鑰。但是我有一個錯誤參考錯誤和鍵沒有記錄。我遵循了https://web3js.readthedocs.io/en/v1.2.6/web3-eth-accounts.html#上的文件,我想從客戶端執行此操作,不需要節點 JS

<!DOCTYPE html>
<html>
<head>
   <title></title>
   <script type="text/javascript" src="web3.min.js"></script>
</head>
<body>


<script>


var Accounts = require('web3-eth-accounts');

// Passing in the eth or web3 package is necessary to allow retrieving chainId, gasPrice and nonce automatically
// for accounts.signTransaction().
var accounts = new Accounts('ws://localhost:8546');

console.log(web3.eth.accounts.create());


   </script>
</body>
</html>

請檢查工具。您需要使您的 javascript 瀏覽器兼容才能使用require()功能。

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