EtherForge is a simple Ethereum development project using Hardhat and Solidity for smart contracts. This project provides a basic structure for Ethereum development with an MVC architecture.
EtherForge/
│
├── contracts/
│ ├── ERC20Token.sol
│ └── YourContract.sol
│
├── test/
│ ├── ERC20Token.test.js
│ └── YourContract.test.js
│
├── scripts/
│ ├── deploy.js
│ └── interact.js
│
└── README.md
contracts/
: Contains the Solidity smart contracts for Ethereum.test/
: Houses test scripts for testing the smart contracts.scripts/
: Scripts to deploy and interact with the contracts.
npm install
npx hardhat compile
npx hardhat test
npx hardhat run scripts/deploy.js
npx hardhat run scripts/interact.js
EtherForge is a simple Ethereum development project using Hardhat and Solidity for smart contracts. This project provides a basic structure for Ethereum development with an MVC architecture.