ZaK3939 / eth-farcaster

Home Page:https://privy-frames-demo.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Privy x Frames Demo

This is an example Frame to demonstrate how you can use Frames alongside Privy's Farcaster login feature to create novel, cross-app experiences for your users.

When a user first sees this demo Frame in their Farcaster client, they can click a button to redeem a testnet NFT. Behind the scenes, Privy creates an embedded wallet associater with the current Farcaster user and airdrops an NFT to it. Users can view their NFT by signing in with their Farcaster account to the Privy Demo. This is a testnet NFT on the Optimism Sepolia testnet.

This app is built with NextJS, and makes uses of libraries like @coinbase/onchainkit, @farcaster/hub-node-js, and viem for interacting with the blockchain and the Farcaster protocol.

Live Demo

To see this demo in action, share https://privy-frames-demo.vercel.app in any Farcaster client that supports Frames (e.g. Warpcast) and interact with it. You can then login to https://demo.privy.io to view your NFT.

Setup

  1. Fork this repository, clone it, and open it in your command line:
git clone https://github.com/<your-github-handle>/privy-frames-demo
  1. Install the necessary dependencies using your preferred package manager:
npm i 
  1. Using a fresh development wallet, deploy an ERC-721 contract at to the Optimism Sepolia testnet. Do not use a real wallet, as you must store the development wallet's seed phrase as an environment secret. You can use a tool like Remix or hardhat to deploy your contract.

  2. Initialize your environment variables by copying the contents of .env.example.local to a new .env.local file, and fill in the required values. You'll need to set a base URL, your NFT contract address, the seed phrase for your development wallet, and your Privy app ID and secret.

NEXT_PUBLIC_BASE_URL=<insert-the-url-for-your-frame>
NFT_CONTRACT_ADDRESS=<insert-the-nft-address>
NFT_WALLET_MNEMONIC=<insert-the-seed-phrase-for-your-dev-wallet>
PRIVY_APP_ID=<insert-your-privy-app-id>
PRIVY_APP_SECRET=<insert-your-privy-app-secret>

That's it! To run the demo locally, execute npm run dev and open http://localhost:3000.

Testing the frame

You can test this Frame using Warpcast Embed Tools to preview the frame interaction. Please note that a localhost URL will not work with Warpcast Embed Tools, so you should set up a public tunnel to your local app using a tool like ngrok or Cloudflare.

Check out

  • lib/embedded-wallet.ts to see how to use Privy to pre-generate embedded wallets for a user's Farcaster accounts
  • lib/farcaster.ts to see how Frames are generated and how to verify a user's Farcaster account and query the protocol for their Farcaster data
  • lib/nft.ts to see how to airdrop the ERC-721 you deployed to a user's wallet address
  • api/wallet/route.ts to see how the first Frame interaction generates an embedded wallet for the user
  • api/mint/[address].ts to see how the second Frame interaction airdrops an NFT to the user
  • contracts/FrameDrop.sol for the sample contract used, from OpenZeppelin

About

https://privy-frames-demo.vercel.app


Languages

Language:TypeScript 92.8%Language:CSS 4.5%Language:Solidity 1.4%Language:JavaScript 1.3%