Farcaster Frames in less than 100 lines, and ready to be deployed to Vercel.
Have fun! ⛵️
import { getFrameMetadata } from '@coinbase/onchainkit';
import type { Metadata } from 'next';
const NEXT_PUBLIC_URL = 'https://eltontay.eth';
const frameMetadata = getFrameMetadata({
buttons: [
{
label: 'Click Me',
},
],
image: `${NEXT_PUBLIC_URL}/park-1.png`,
post_url: `${NEXT_PUBLIC_URL}/api/frame`,
});
export const metadata: Metadata = {
title: 'eltontay.eth',
description: 'LFG',
openGraph: {
title: 'eltontay.eth',
description: 'LFG',
images: [`${NEXT_PUBLIC_URL}/park-1.png`],
},
other: {
...frameMetadata,
},
};
export default function Page() {
return (
<>
<h1>eltontay.eth</h1>
</>
);
}
export const viewport = {
width: 'device-width',
initialScale: 1.0,
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}
import {
FrameRequest,
getFrameAccountAddress,
getFrameMessage,
getFrameHtmlResponse,
} from '@coinbase/onchainkit';
import { NextRequest, NextResponse } from 'next/server';
const NEXT_PUBLIC_URL = 'https://eltontay.eth';
async function getResponse(req: NextRequest): Promise<NextResponse> {
let accountAddress: string | undefined = '';
const body: FrameRequest = await req.json();
const { isValid, message } = await getFrameMessage(body);
if (isValid) {
try {
accountAddress = await getFrameAccountAddress(message, { NEYNAR_API_KEY: 'NEYNAR_API_DOCS' });
} catch (err) {
console.error(err);
}
}
return new NextResponse(
getFrameHtmlResponse({
buttons: [
{
label: `🌊 ${accountAddress} 🌊`,
},
],
image: `${NEXT_PUBLIC_URL}/park-2.png`,
post_url: `${NEXT_PUBLIC_URL}/api/frame`,
}),
);
}
export async function POST(req: NextRequest): Promise<Response> {
return getResponse(req);
}
export const dynamic = 'force-dynamic';
A Farcaster Frame in 100 Lines is all about community. If you have any questions, feel free to reach out to the core maintainers on Twitter or through Farcaster.
Leonardo Zizzamia |
Chris Nascone |
Rob Polak |
This project is licensed under the MIT License - see the LICENSE.md file for details