https://github.com/xiaoluoboding/my-first-web3-demo
[WIP] Just for learning Web 3 Tech Stack.
https://github.com/xiaoluoboding/my-first-web3-demo
Last synced: 18 days ago
JSON representation
[WIP] Just for learning Web 3 Tech Stack.
- Host: GitHub
- URL: https://github.com/xiaoluoboding/my-first-web3-demo
- Owner: xiaoluoboding
- License: mit
- Created: 2022-06-13T13:11:32.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-12-30T08:56:56.000Z (over 3 years ago)
- Last Synced: 2025-05-30T13:11:09.100Z (10 months ago)
- Language: Vue
- Homepage:
- Size: 245 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Web 3 + Vue 3 Demo
> Just for learning Web 3 Tech Stack.
## Web 3 Setup
### Start the hardhat node
Starts a JSON-RPC server on top of Hardhat Network
```sh
pnpm hh:node
```
### Start the hardhat for Localhost
The network to connect to Localhost Node
```sh
pnpm hh:dev
```
Test the smart contracts
```sh
pnpm hh:test
```
## Front-end Setup
### Compile and Hot-Reload for Development
```sh
pnpm run dev
```
### Type-Check, Compile and Minify for Production
```sh
pnpm run build
```
### Run Unit Tests with [Vitest](https://vitest.dev/)
```sh
pnpm run test:unit
```
### Lint with [ESLint](https://eslint.org/)
```sh
pnpm run lint
```
## License
[MIT](./LICENSE) - [@xiaoluoboding](https://github.com/xiaoluoboding)