https://github.com/stephancill/hardhat-typescript-template
Hardhat, typescript, typechain, hardhat-deploy, example tests
https://github.com/stephancill/hardhat-typescript-template
hardhat hardhat-deployment typechain typescript
Last synced: about 1 year ago
JSON representation
Hardhat, typescript, typechain, hardhat-deploy, example tests
- Host: GitHub
- URL: https://github.com/stephancill/hardhat-typescript-template
- Owner: stephancill
- Created: 2022-02-03T20:58:07.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-24T13:45:03.000Z (over 4 years ago)
- Last Synced: 2025-02-11T12:51:10.936Z (over 1 year ago)
- Topics: hardhat, hardhat-deployment, typechain, typescript
- Language: TypeScript
- Homepage:
- Size: 127 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Basic Sample Hardhat Typescript Project
### Run node
```
npx hardhat node
```
Optionally export ABIs:
```
npx hardhat deploy --export ../client/src/deployments.json --network localhost
```
Use `FORK=mainnet` to fork mainnet on the localhost network.
### Tests
```
npx hardhat test
```
### Deployment
```
npx hardhat deploy
```
### Generate types
```
npx hardhat typechain
```