Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rithik2211/banking-dapp
https://github.com/rithik2211/banking-dapp
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/rithik2211/banking-dapp
- Owner: Rithik2211
- Created: 2024-11-23T18:26:56.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-11-25T18:36:10.000Z (about 1 month ago)
- Last Synced: 2024-11-25T19:21:55.325Z (about 1 month ago)
- Language: CSS
- Size: 208 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sample Hardhat Project
This project demonstrates a basic Hardhat use case. It comes with a sample contract, a test for that contract, and a Hardhat Ignition module that deploys that contract.
Try running some of the following tasks:
```shell
npx hardhat help
npx hardhat test
REPORT_GAS=true npx hardhat test
npx hardhat node
npx hardhat ignition deploy ./ignition/modules/Lock.js
```Use for the Deployments for Contracts :
# 1. Install dependencies if you haven't
npm install --save-dev hardhat @nomicfoundation/hardhat-toolbox dotenv# 2. Compile your contracts
npx hardhat compile# 3. Run tests if you have them
npx hardhat test# 4. Deploy
npx hardhat run scripts/deploy.js --network your_network# 5. Verify contract (for testnets/mainnet)
npx hardhat verify --network your_network YOUR_CONTRACT_ADDRESS