Skip to content
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion apps/dashboard/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,10 @@ STRIPE_SECRET_KEY=""

# required for server wallet management
NEXT_PUBLIC_THIRDWEB_VAULT_URL=""
NEXT_PUBLIC_ENGINE_CLOUD_URL=""
NEXT_PUBLIC_ENGINE_CLOUD_URL=""

# farcaster frame env variables
NEXT_PUBLIC_APP_URL=
NEXT_PUBLIC_FARCASTER_HEADER=
NEXT_PUBLIC_FARCASTER_PAYLOAD=
NEXT_PUBLIC_FARCASTER_SIGNATURE=
3 changes: 2 additions & 1 deletion apps/dashboard/next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ const securityHeaders = [
},
{
key: "X-Frame-Options",
value: "SAMEORIGIN",
// allow farcaster.xyz as a frame ancestor for the browser mini app
value: "frame-ancestors 'self' https://farcaster.xyz; default 'self'",
},
{
key: "Referrer-Policy",
Expand Down
3 changes: 3 additions & 0 deletions apps/dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
"@chakra-ui/theme-tools": "^2.1.2",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@farcaster/frame-core": "^0.1.8",
"@farcaster/frame-sdk": "^0.0.60",
"@hookform/resolvers": "^3.9.1",
"@marsidev/react-turnstile": "^1.1.0",
"@radix-ui/react-accordion": "^1.2.11",
Expand Down Expand Up @@ -54,6 +56,7 @@
"@thirdweb-dev/vault-sdk": "workspace:*",
"@vercel/functions": "2.1.0",
"@vercel/og": "^0.6.8",
"@worldcoin/minikit-js": "^1.9.5",
"abitype": "1.0.8",
"chakra-react-select": "^4.7.6",
"class-variance-authority": "^0.7.1",
Expand Down
30 changes: 0 additions & 30 deletions apps/dashboard/public/.well-known/apple-app-site-association

This file was deleted.

15 changes: 0 additions & 15 deletions apps/dashboard/public/.well-known/assetlinks.json

This file was deleted.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions apps/dashboard/public/assets/nebula/frame/ask-nebula-pfp.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions apps/dashboard/public/assets/nebula/frame/farcaster-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions apps/dashboard/public/assets/nebula/frame/hero.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions apps/dashboard/public/assets/nebula/frame/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions apps/dashboard/public/assets/nebula/frame/og.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
69 changes: 69 additions & 0 deletions apps/dashboard/public/assets/nebula/frame/screenshot.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions apps/dashboard/public/assets/nebula/frame/splash.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions apps/dashboard/public/assets/nebula/frame/user-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
import { NextResponse } from "next/server";

export async function GET() {
return NextResponse.json({
applinks: {
apps: ["XYHGSFAMHX.com.thirdweb.demo"],
details: [
{
appIDs: ["XYHGSFAMHX.com.thirdweb.demo"],
components: [
{
"#": "no_universal_links",
exclude: true,
comment:
"Matches any URL with a fragment that equals no_universal_links and instructs the system not to open it as a universal link.",
},
{
"/": "/mobile-wallet-protocol",
comment:
"Matches any URL with a path that starts with /mobile-wallet-protocol for coinbase wallet mobile redirects.",
},
{
"/": "/dashboard/*",
exclude: true,
comment: "no universal link for dashboard",
},
],
},
],
},
webcredentials: {
apps: ["XYHGSFAMHX.com.thirdweb.demo"],
},
appclips: {},
});
}
Loading
Loading