BEP20 Token
constructor() public {
_name = {{TOKEN_NAME}};
_symbol = {{TOKEN_SYMBOL}};
_decimals = {{DECIMALS}};
_totalSupply = {{TOTAL_SUPPLY}};
_balances[msg.sender] = _totalSupply;
emit Transfer(address(0), msg.sender, _totalSupply);
}Interact with Contract with Web3 and NodeJS.
Connect to Binance Smart Chain's public RPC endpoint
const Web3 = require('web3');
// testnet
const web3 = new Web3('https://fncy-seed1.fncy.world');Create a wallet
Recover a wallet
Create transaction
Issue BEP20 Tokens




