bnb-chain-tutorial
bnb-chain-tutorial copied to clipboard
Create Menim _1
**** async function main() { const [deployer] = await ethers.getSigners();
console.log("Deploying contracts with the account:", deployer.address);
const Token = await ethers.getContractFactory("BEP20Token"); const token = await Token.deploy();
console.log("Token address:", token.address); }
main() .then(() => process.exit(0)) .catch((error) => { console.error(error); process.exit(1); });
- [ ] - >
_****_@
Salam