https://github.com/hzhu/remix-dapp
💿 A Remix starter app for web3 development—batteries included 🔋.
https://github.com/hzhu/remix-dapp
blockchain ethereum remix remix-run viem wagmi web3
Last synced: 3 months ago
JSON representation
💿 A Remix starter app for web3 development—batteries included 🔋.
- Host: GitHub
- URL: https://github.com/hzhu/remix-dapp
- Owner: hzhu
- Created: 2023-09-30T20:25:58.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-24T06:28:33.000Z (over 1 year ago)
- Last Synced: 2025-04-05T06:41:22.936Z (6 months ago)
- Topics: blockchain, ethereum, remix, remix-run, viem, wagmi, web3
- Language: TypeScript
- Homepage: https://remix-dapp.vercel.app
- Size: 315 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# remix-dapp
This project was bootstrapped with [Create Remix dApp](https://github.com/hzhu/create-remix-dapp). Refer to the official Remix [documentation](https://remix.run/docs/en/main/discussion/introduction) for guidance on building idiomatic Remix apps. This dApp comes with the essentials already configured, allowing you to focus on building your app:
* 🔗 Blockchain interaction with [viem](https://viem.sh) and [wagmi](https://wagmi.sh)
* 🌈 Wallet management with [RainbowKit](https://www.rainbowkit.com)
* 🔑 Authentication with [Sign-In with Ethereum](https://login.xyz)
* 🌍 Internationalization and localization
* 💅 Styling with [tailwindcss](https://tailwindcss.com)
* 🌓 Light and dark mode## Quick start
### Install dependencies
```sh
npm install
```### Setup environment variables
Ensure the `.env` file is correctly populated. See [`.env.example`](/.env.example) for more information.
### Run development server
```sh
npm run dev
```### Navigate to the app
```sh
open http://localhost:3000
```