🔑Key management
This article is a guideline on client key management strategies for FON smart chain decentralized applications
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);
}