🔑密钥管理
本文是关于 FON智能链去中心化应用程序客户端密钥管理策略的指南
Last updated
const Web3 = require('web3');
async function main() {
const web3 = new Web3('https://fsc-dataseed1.fonscan.io:443');
const loader = setupLoader({ provider: web3 }).web3;
const account = web3.eth.accounts.create();
console.log(account);
}