https://github.com/sky0621/dapp_sample
https://github.com/sky0621/dapp_sample
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sky0621/dapp_sample
- Owner: sky0621
- Created: 2023-11-03T12:52:30.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-05T03:31:26.000Z (over 2 years ago)
- Last Synced: 2026-01-01T19:22:44.107Z (5 months ago)
- Language: TypeScript
- Size: 131 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dapp_sample
## project setup
### setup
```
npm init -y
```
```
npm install --save-dev hardhat
```
```
npm install --save-dev ethers@v5
npm install --save-dev ethereum-waffle
npm install --save-dev chai
npm install --save-dev @nomiclabs/hardhat-ethers @nomicfoundation/hardhat-toolbox@v2 @nomiclabs/hardhat-waffle @nomiclabs/hardhat-etherscan
npm install --save-dev @nomicfoundation/hardhat-toolbox@v2
npm install --save-dev dotenv
npm install --save-dev typescript ts-node @types/node nodemon
```
```
npm install @openzeppelin/contracts
```
```
npx hardhat
select: Create an empty hardhat.config.ts
```
```
npx tsc --init --rootDir . --outDir lib --esModuleInterop --resolveJsonModule --lib es6,dom --module commonjs
```