NeynarAuthNutton

This commit is contained in:
Shreyaschorge
2025-07-04 03:17:49 +05:30
parent 56517dc41a
commit 1fe4d30134
7 changed files with 861 additions and 71 deletions

View File

@@ -0,0 +1,10 @@
import { NextResponse } from 'next/server';
import { getNeynarClient } from '~/lib/neynar';
export async function GET() {
const client = getNeynarClient();
const response = await client.fetchNonce();
return NextResponse.json(response);
}