Web3js

是否有 sdk 通過 web3 在 Polygon 中創建新帳戶

  • August 10, 2022

是否有任何函式或 API 可以在多邊形中創建新帳戶,

像 hedera 中的雜湊圖一樣,是否有任何函式或 API 可以通過多邊形中的程式碼創建新帳戶?

我非常感謝您能提供的任何幫助。

你可以這樣做:

var ethers = require('ethers');  
var crypto = require('crypto');

var id = crypto.randomBytes(32).toString('hex');
var privateKey = "0x"+id;
console.log("SAVE BUT DO NOT SHARE THIS:", privateKey);

var wallet = new ethers.Wallet(privateKey);
console.log("Address: " + wallet.address);

然後使用指向 then 的 json rpc 提供程序與多邊形互動以簽署消息。

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