DeveloperBreeze

Tutorials Programming Tutorials, Guides & Best Practices

Explore 149+ expertly crafted tutorials tutorials, components, and code examples. Stay productive and build faster with proven implementation strategies and design patterns from DeveloperBreeze.

Writing an ERC-20 Token Contract with OpenZeppelin

Tutorial August 22, 2024
solidity

     require("@nomiclabs/hardhat-waffle");

     module.exports = {
         solidity: "0.8.0",
         networks: {
             ropsten: {
                 url: "https://ropsten.infura.io/v3/YOUR_INFURA_PROJECT_ID",
                 accounts: [`0x${YOUR_PRIVATE_KEY}`]
             }
         }
     };
  • Deploy the contract to the testnet:

Creating a Decentralized Application (dApp) with Solidity, Ethereum, and IPFS: From Smart Contracts to Front-End

Tutorial August 20, 2024
javascript solidity

In another terminal window:

truffle migrate