🔑Key management
This article is a guideline on client key management strategies for FON smart chain decentralized applications
FON setting Web3
Connect to the FSC network
// mainnet
const web3 = new Web3('https://fsc-dataseed1.fonscan.io:443');Set up account
const account = web3.eth.accounts.create();Recover account
const account = web3.eth.accounts.privateKeyToAccount("$private-key")Complete example
Last updated