https://github.com/arrjunpradeep/erc20
https://github.com/arrjunpradeep/erc20
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/arrjunpradeep/erc20
- Owner: ArrjunPradeep
- Created: 2022-08-10T07:17:38.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-10T07:24:56.000Z (almost 3 years ago)
- Last Synced: 2025-01-20T17:35:58.789Z (5 months ago)
- Language: JavaScript
- Size: 141 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ERC20
## Setting Up :
**Step 1:** Download the repository using the command:
```
git clone -b wallet_nft "https://github.com/Arjun-Pradeep/ERC20.git"
```**Step 2:** Change the current working directory to "ERC20" :
```
cd ERC20
```**Step 3:** Install the dependecies :
```
npm i --save
```**Step 4:** Load environment variables from **.env** file
```
PRIVATE_KEY=""
PROVIDER=""
EXPLORER_API_KEY=""
```**Step 5:** Compile the smart contracts :
```
npx hardhat compile
```**Step 5:** Deploy the smart contracts :
```
npx hardhat run scripts/scripts --network testnet
```**Step 6:** Verify the smart contracts :
```
npx hardhat verify {CONTRACT_ADDRESS} --contract {CONTRACT_FILE_PATH:CONTRACT_NAME} --network testnet
```