-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update dependencies and fix debugger issues (#534)
* feat: update dependencies, add new methods * fix: allow localhost as domain in account association * fix: typo * fix: load dev env variables from backend * fix: in non strict mode only warn instead of error on non https urls * test: correctly test non strict parser * feat: farcaster v2 sign in * chore: changeset * refactor: remove signer dependency from useFrameApp hook
- Loading branch information
1 parent
f19b6a6
commit 0e7244d
Showing
12 changed files
with
697 additions
and
298 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
"frames.js": patch | ||
"@frames.js/debugger": patch | ||
"@frames.js/render": patch | ||
--- | ||
|
||
feat: farcaster v2 sign in and libs update |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { z } from "zod"; | ||
|
||
export function GET() { | ||
return Response.json( | ||
{ | ||
fid: z.coerce | ||
.number() | ||
.int() | ||
.parse(process.env.FARCASTER_DEVELOPER_FID || "-1"), | ||
}, | ||
{ | ||
headers: { | ||
"Cache-Control": "no-store", | ||
}, | ||
} | ||
); | ||
} |
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
Oops, something went wrong.