mirror of
https://github.com/neynarxyz/create-farcaster-mini-app.git
synced 2025-11-16 08:08:56 -05:00
fix: constants format
This commit is contained in:
parent
ea7ee37e71
commit
98579bcea9
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@neynar/create-farcaster-mini-app",
|
"name": "@neynar/create-farcaster-mini-app",
|
||||||
"version": "1.8.2",
|
"version": "1.8.3",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"private": false,
|
"private": false,
|
||||||
"access": "public",
|
"access": "public",
|
||||||
|
|||||||
@ -80,7 +80,7 @@ export const APP_ACCOUNT_ASSOCIATION: AccountAssociation | undefined =
|
|||||||
* Text displayed on the main action button.
|
* Text displayed on the main action button.
|
||||||
* Used for the primary call-to-action in the mini app.
|
* Used for the primary call-to-action in the mini app.
|
||||||
*/
|
*/
|
||||||
export const APP_BUTTON_TEXT = 'Launch Mini App';
|
export const APP_BUTTON_TEXT: string = 'Launch Mini App';
|
||||||
|
|
||||||
// --- Integration Configuration ---
|
// --- Integration Configuration ---
|
||||||
/**
|
/**
|
||||||
@ -102,7 +102,7 @@ export const APP_WEBHOOK_URL: string =
|
|||||||
* When false, wallet functionality is completely hidden from the UI.
|
* When false, wallet functionality is completely hidden from the UI.
|
||||||
* Useful for mini apps that don't require wallet integration.
|
* Useful for mini apps that don't require wallet integration.
|
||||||
*/
|
*/
|
||||||
export const USE_WALLET = false;
|
export const USE_WALLET: boolean = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Flag to enable/disable analytics tracking.
|
* Flag to enable/disable analytics tracking.
|
||||||
@ -111,7 +111,7 @@ export const USE_WALLET = false;
|
|||||||
* When false, analytics collection is disabled.
|
* When false, analytics collection is disabled.
|
||||||
* Useful for privacy-conscious users or development environments.
|
* Useful for privacy-conscious users or development environments.
|
||||||
*/
|
*/
|
||||||
export const ANALYTICS_ENABLED = true;
|
export const ANALYTICS_ENABLED: boolean = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Required chains for the mini app.
|
* Required chains for the mini app.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user