An open API service indexing awesome lists of open source software.

https://github.com/sudo-self/web3-alchemy-dapp


https://github.com/sudo-self/web3-alchemy-dapp

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# web3-alchemy-dapp

[![Netlify Status](https://api.netlify.com/api/v1/badges/575173a2-e88d-401c-856f-c90c66e05899/deploy-status)](https://app.netlify.com/sites/quiet-horse-453a83/deploys)
Screenshot 2023-12-26 at 2 52 15 AM

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!