https://github.com/lit-protocol/yellowstone-walletconnect-demo
https://github.com/lit-protocol/yellowstone-walletconnect-demo
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/lit-protocol/yellowstone-walletconnect-demo
- Owner: LIT-Protocol
- Created: 2025-01-08T20:49:04.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-08T20:55:55.000Z (over 1 year ago)
- Last Synced: 2025-02-04T12:04:11.189Z (over 1 year ago)
- Language: TypeScript
- Size: 1.24 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React dApp (with standalone v2 client)
🔗 Live dapp demo - https://react-app.walletconnect.com/
🔗 Live wallet demo - https://react-wallet.walletconnect.com/
📚 WalletConnect v2 Docs - https://docs.walletconnect.com/2.0
## Overview
This is an example implementation of a React dApp (generated via `create-react-app`) using the standalone
client for WalletConnect v2 to:
- handle pairings
- manage sessions
- send JSON-RPC requests to a paired wallet
## Running locally
Install the app's dependencies:
```bash
yarn
```
Set up your local environment variables by copying the example into your own `.env.local` file:
```bash
cp .env.local.example .env.local
```
Your `.env.local` now contains the following environment variables:
- `NEXT_PUBLIC_PROJECT_ID` (placeholder) - You can generate your own ProjectId at https://cloud.walletconnect.com
- `NEXT_PUBLIC_RELAY_URL` (already set)
## Develop
```bash
yarn dev
```
## Test
```bash
yarn test
```
## Build
```bash
yarn build
```