Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/masb0ymas/learn-hardhat
Deployment Smart-Contract with Hardhat
https://github.com/masb0ymas/learn-hardhat
Last synced: 12 days ago
JSON representation
Deployment Smart-Contract with Hardhat
- Host: GitHub
- URL: https://github.com/masb0ymas/learn-hardhat
- Owner: masb0ymas
- Created: 2024-07-27T08:24:36.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-07-28T03:58:13.000Z (5 months ago)
- Last Synced: 2024-12-06T14:09:00.784Z (16 days ago)
- Language: TypeScript
- Size: 58.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Learn Hardhat
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 vars set INFURA_API_KEYnpx hardhat vars set SEPOLIA_PRIVATE_KEY
npx hardhat vars set ETHERSCAN_API_KEY
```#### For Compile
```shell
yarn compile
```#### For Deploy
```shell
yarn deploy:sepolia
```#### For Verify Deploy Contract
```shell
yarn verify:sepolia --
```