Skip to content

codingwithmanny/quick-vite-react-ts-siwe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Quick Vite React TypeScript Sign-In With Ethereum

A monorepo that implements Sign-In With Ethereum (SIWE) with an NodeJS TypeScript REST API and a client-side Single-Page Application in React with TypeScript.

If you like this content, please make sure to follow me:


ℹ️ Running Wagmi 0.2.8?

Looking for previous support for wagmi@0.2.8? Check out the wagmi-0.2.8 branch.


TOC


Requirements

  • NVM or Node v16.14.0
  • Yarn

Sign Up Alchemy Account

1 - Website Sign Up

Go to https://www.alchemy.com

2 - Create App

A - When logged in, in the top right, click on Create App

B - Set the Name to Quick Vite React TypeScript SIWE

C - Set the Environment to Development, Chain to Ethereum, and Network to Mainnet

D - Click Create App

3 - Add Environment Variable

In the Alchemy dashboard for your newly created project click VIEW KEY and opy the API KEY

File: .env

VITE_ALCHEMY_API_KEY="<YOUR_ALCHEMY_API_KEY>"
VITE_ETHERSCAN_API_KEY=""
VITE_INFURA_ID=""
VITE_APP_NAME="QUICK VITE REACT TYPESCRIPT SIWE"

Sign Up Etherscan Account

1 - Website Sign Up

Go to https://etherscan.io

2 - Create API Keys

A - In the left sidebar click API Keys

B - In My API Keys click Add

C - For App Name enter Quick Vite React SIWE

D - Click Create New API Key

E - Copy API Key Token

3 - Add Environment Variable

File: packages/react/.env

VITE_ALCHEMY_API_KEY=""
VITE_ETHERSCAN_API_KEY="<YOUR_ETHERSCAN_API_KEY>"
VITE_INFURA_ID=""
VITE_APP_NAME="QUICK VITE REACT TYPESCRIPT SIWE"

Sign Up Infura Account

1 - Website Sign Up

Go to https://infura.io/register

2 - Create New Project

A - When signed in, in the top right section, click Create New Project

B - Set the Product to Ethereum

C - Set the Project Name to Quick Vite React TypeScript SIWE

D - Click Create

E - When the project is create copy the Project ID

3 - Add Environment Variable

File: packages/react/.env

VITE_ALCHEMY_API_KEY=""
VITE_ETHERSCAN_API_KEY=""
INFURA_ID="<YOUR_INFURA_PROJECT_ID>"
APP_NAME="QUICK VITE REACT TYPESCRIPT SIWE"

Local Setup

1 - Node

cp packages/node/.env.example packages/node/.env;

2 - React

NOTE: You will need the different API keys mentioned above

cp packages/react/.env.example packages/react/.env;

3 - Start

yarn dev;

Debugging

In case you need to kill a port:

kill -9 $(lsof -ti:5001); # node
kill -9 $(lsof -ti:3000); # react

Deployment

TBD


License

MIT

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published