https://github.com/sudo-self/web3-alchemy-dapp
https://github.com/sudo-self/web3-alchemy-dapp
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/sudo-self/web3-alchemy-dapp
- Owner: sudo-self
- Created: 2023-12-26T09:16:11.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-13T08:02:59.000Z (over 2 years ago)
- Last Synced: 2025-01-24T14:46:42.899Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://quiet-horse-453a83.netlify.app
- Size: 104 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# web3-alchemy-dapp
[](https://app.netlify.com/sites/quiet-horse-453a83/deploys)

This boilerplate has everything you need to start building a dapp:
- Next.js
- Wagmi Hooks
- Ethers.js
- Rainbowkit
- Alchemy SDK
The project supports all the major EVM chains:
- Ethereum
- Polygon
- Polygon zkEVM
- Arbitrum
- Optimism
1. Start the local development server:
```
yarn run dev
```
## Project Structure
The boilerplate project is a Next.js application with the following structure:
```
📦root
┣ 📂components
┃ ┣ 📂navigation
┃ ┃ ┗ 📜navbar.jsx
┃ ┗ 📜InstructionsComponent.jsx
┣ 📂layout
┃ ┗ 📜mainLayout.jsx
┣ 📂pages
┃ ┣ 📜_app.js
┃ ┗ 📜index.jsx
┣ 📂public
┃ ┗ 📜cw3d-logo.png
┣ 📂styles
┃ ┣ 📜Home.module.css
┃ ┣ 📜InstructionsComponent.module.css
┃ ┣ 📜Navbar.module.css
┃ ┗ 📜globals.css
┣ 📜.gitignore
┣ 📜README.md
┣ 📜next.config.js
┣ 📜package-lock.json
┗ 📜package.json
```
Start editing the `pages/index.jsx` file to customize the project according to your own needs!