-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace WalletConnect with Google and GitHub authentication #36
Open
0xaaiden
wants to merge
11
commits into
main
Choose a base branch
from
0xaaiden/replace-wallet-connect
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+23,749
−5,680
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Replace WalletConnect with Google and GitHub authentication using NextAuth.js. * **Dashboard Layout**: - Remove `WalletConnect` component. - Add `useSession` and `signIn` from `next-auth/react`. - Replace `WalletConnect` with buttons for Google and GitHub sign-in. * **General Layout**: - Remove `WalletConnect` component. - Add `useSession` and `signIn` from `next-auth/react`. - Replace `WalletConnect` with buttons for Google and GitHub sign-in. * **Site Header**: - Remove `WalletConnect` component. - Add `useSession` and `signIn` from `next-auth/react`. - Replace `WalletConnect` with buttons for Google and GitHub sign-in. * **Session Management**: - Update `getSession` function in `lib/session.ts` to support NextAuth.js sessions. * **NextAuth.js Configuration**: - Add `pages/api/auth/[...nextauth].ts` to configure Google and GitHub OAuth providers. * **Remove SIWE Components**: - Delete `button-siwe-login.tsx`, `button-siwe-logout.tsx`, `is-signed-in.tsx`, `is-signed-out.tsx`, `siwe-login.ts`, `siwe-logout.ts`, `siwe-message.ts`, `index.ts`, `logout.ts`, `nonce.ts`, and `verify.ts` from `integrations/siwe`. --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/function03-labs/WalletLabels?shareId=XXXX-XXXX-XXXX-XXXX).
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
* **Dashboard Layout**: Replace `WalletConnect` with buttons for Google, GitHub, and email sign-in. * **General Layout**: Replace `WalletConnect` with buttons for Google, GitHub, and email sign-in. * **Site Header**: Replace `WalletConnect` with buttons for Google, GitHub, and email sign-in. * **NextAuth Configuration**: Add email provider configuration to `pages/api/auth/[...nextauth].ts`.
- Added console logs for debugging in dashboard layout and profile pages. - Updated session handling to use NextAuth.js in `lib/session.ts`. - Changed user retrieval in the submit page to use user ID instead of email. - Removed unused blockchain components and cleaned up imports. - Deleted several wallet-related components to streamline the codebase.
- one sign in button - Improved the sign-in page layout with a new design and form validation using Zod. - Adjusted email sign-in link validity duration from 24 hours to 1 hour
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Replace WalletConnect with Google and GitHub authentication using NextAuth.js.
Dashboard Layout:
WalletConnect
component.useSession
andsignIn
fromnext-auth/react
.WalletConnect
with buttons for Google and GitHub sign-in.General Layout:
WalletConnect
component.useSession
andsignIn
fromnext-auth/react
.WalletConnect
with buttons for Google and GitHub sign-in.Site Header:
WalletConnect
component.useSession
andsignIn
fromnext-auth/react
.WalletConnect
with buttons for Google and GitHub sign-in.Session Management:
getSession
function inlib/session.ts
to support NextAuth.js sessions.NextAuth.js Configuration:
pages/api/auth/[...nextauth].ts
to configure Google and GitHub OAuth providers.Remove SIWE Components:
button-siwe-login.tsx
,button-siwe-logout.tsx
,is-signed-in.tsx
,is-signed-out.tsx
,siwe-login.ts
,siwe-logout.ts
,siwe-message.ts
,index.ts
,logout.ts
,nonce.ts
, andverify.ts
fromintegrations/siwe
.For more details, open the Copilot Workspace session.