mirror of
https://github.com/neynarxyz/create-farcaster-mini-app.git
synced 2025-11-16 08:08:56 -05:00
fix: https prefix for manifest fields
This commit is contained in:
parent
8ed98b604a
commit
089a5ad2b0
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "create-neynar-farcaster-frame",
|
"name": "create-neynar-farcaster-frame",
|
||||||
"version": "1.2.0",
|
"version": "1.2.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"files": [
|
"files": [
|
||||||
"bin/index.js"
|
"bin/index.js"
|
||||||
|
|||||||
@ -136,11 +136,11 @@ async function generateFarcasterMetadata(domain, accountAddress, seedPhrase, web
|
|||||||
frame: {
|
frame: {
|
||||||
version: "1",
|
version: "1",
|
||||||
name: process.env.NEXT_PUBLIC_FRAME_NAME,
|
name: process.env.NEXT_PUBLIC_FRAME_NAME,
|
||||||
iconUrl: `${domain}/icon.png`,
|
iconUrl: `https://${domain}/icon.png`,
|
||||||
homeUrl: domain,
|
homeUrl: `https://${domain}`,
|
||||||
imageUrl: `${domain}/opengraph-image`,
|
imageUrl: `https://${domain}/opengraph-image`,
|
||||||
buttonTitle: process.env.NEXT_PUBLIC_FRAME_BUTTON_TEXT,
|
buttonTitle: process.env.NEXT_PUBLIC_FRAME_BUTTON_TEXT,
|
||||||
splashImageUrl: `${domain}/splash.png`,
|
splashImageUrl: `https://${domain}/splash.png`,
|
||||||
splashBackgroundColor: "#f7f7f7",
|
splashBackgroundColor: "#f7f7f7",
|
||||||
webhookUrl,
|
webhookUrl,
|
||||||
},
|
},
|
||||||
|
|||||||
@ -53,7 +53,7 @@ async function generateFarcasterMetadata(domain, accountAddress, seedPhrase, web
|
|||||||
version: "1",
|
version: "1",
|
||||||
name: process.env.NEXT_PUBLIC_FRAME_NAME?.trim(),
|
name: process.env.NEXT_PUBLIC_FRAME_NAME?.trim(),
|
||||||
iconUrl: `https://${trimmedDomain}/icon.png`,
|
iconUrl: `https://${trimmedDomain}/icon.png`,
|
||||||
homeUrl: trimmedDomain,
|
homeUrl: `https://${trimmedDomain}`,
|
||||||
imageUrl: `https://${trimmedDomain}/opengraph-image`,
|
imageUrl: `https://${trimmedDomain}/opengraph-image`,
|
||||||
buttonTitle: process.env.NEXT_PUBLIC_FRAME_BUTTON_TEXT?.trim(),
|
buttonTitle: process.env.NEXT_PUBLIC_FRAME_BUTTON_TEXT?.trim(),
|
||||||
splashImageUrl: `https://${trimmedDomain}/splash.png`,
|
splashImageUrl: `https://${trimmedDomain}/splash.png`,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user