From 82db5dacbe2ebb7bb7e465e3de71dfafd0232fd4 Mon Sep 17 00:00:00 2001 From: Soheima Date: Thu, 31 Jul 2025 14:55:18 +0200 Subject: [PATCH] removed frames language --- docs/base-app/build-with-minikit/overview.mdx | 14 +++++++------- docs/base-app/build-with-minikit/quickstart.mdx | 6 +++--- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/base-app/build-with-minikit/overview.mdx b/docs/base-app/build-with-minikit/overview.mdx index 2f07576e9..206fc7500 100644 --- a/docs/base-app/build-with-minikit/overview.mdx +++ b/docs/base-app/build-with-minikit/overview.mdx @@ -13,11 +13,11 @@ MiniKit is easiest way to build Mini Apps on Base, allowing developers to easily ## Why MiniKit? -MiniKit streamlines mini-app development by providing a comprehensive toolkit that makes complex Frames SDK interactions intuitive: +MiniKit streamlines mini-app development by providing a comprehensive toolkit that makes complex Farcaster SDK interactions intuitive: -Build apps with minimal knowledge of the Frames SDK +Build apps with minimal knowledge of the Farcaster SDK @@ -78,7 +78,7 @@ Create a demo app showcasing onchain abilities using OnchainKit After running the command, follow the prompts to configure your project. -We recommend using [Vercel](https://vercel.com) to deploy your MiniKit app, as it integrates seamlessly with the upstash/redis backend required for frames, webhooks, and notifications. The CLI will guide you through setting up the necessary environment variables for your Redis database. +We recommend using [Vercel](https://vercel.com) to deploy your MiniKit app, as it integrates seamlessly with the upstash/redis backend required for webhooks, and notifications. The CLI will guide you through setting up the necessary environment variables for your Redis database. ## Provider @@ -116,7 +116,7 @@ Optional URL to override the default `/api/notification` proxy All props from `OnchainKitProvider` are also supported -The provider sets up wagmi and react-query providers automatically. It configures connectors to use the Farcaster connector if `sdk.context` is set, with a fallback to CoinbaseWallet. This allows the same application to run both in frames and as a standalone application. +The provider sets up wagmi and react-query providers automatically. It configures connectors to use the Farcaster connector if `sdk.context` is set, with a fallback to CoinbaseWallet. This allows the same application to run both as a Mini App and as a standalone application. ## Hooks @@ -161,7 +161,7 @@ The notification proxy URL ### useAddFrame -This hook adds a frame to the user's list of frames and returns notification details. +This hook adds a Mini App to the user's list of Mini Apps and returns notification details. ```tsx const addFrame = useAddFrame(); @@ -374,10 +374,10 @@ The CLI creates an application with: -Complete setup for adding frames, webhooks, and notifications using upstash/redis for data storage (compatible with Vercel). Requires users to sign up for an upstash/redis account and add their key and URL to the .env file. +Complete setup for adding Mini Apps, webhooks, and notifications using upstash/redis for data storage (compatible with Vercel). Requires users to sign up for an upstash/redis account and add their key and URL to the .env file. -The CLI creates both frontend and backend components to support adding frames, webhooks, and notifications. While a frontend-only option was considered, the ability to add frames and handle notifications requires backend support. If you don't need these features, you can easily remove the database and related routes after project creation. +The CLI creates both frontend and backend components to support adding Mini Apps, webhooks, and notifications. While a frontend-only option was considered, the ability to add Mini Apps and handle notifications requires backend support. If you don't need these features, you can easily remove the database and related routes after project creation. diff --git a/docs/base-app/build-with-minikit/quickstart.mdx b/docs/base-app/build-with-minikit/quickstart.mdx index 101380036..2463ed189 100644 --- a/docs/base-app/build-with-minikit/quickstart.mdx +++ b/docs/base-app/build-with-minikit/quickstart.mdx @@ -15,7 +15,7 @@ Before you begin developing with MiniKit, you'll need: ## What is a Mini App? -A mini app is a lightweight web app that runs directly inside [Farcaster Frames](https://docs.farcaster.xyz/developers/frames/v2/), without needing to open a browser or download anything. Built using familiar tools like Next.js and minikit, mini apps behave just like normal apps — but launch instantly from posts, making them feel native to the Farcaster experience. +A mini app is a lightweight web app that runs directly inside [Farcaster](https://docs.farcaster.xyz/developers/frames/v2/), without needing to open a browser or download anything. Built using familiar tools like Next.js and minikit, mini apps behave just like normal apps — but launch instantly from posts, making them feel native to the Farcaster experience. ## Initial Setup @@ -30,7 +30,7 @@ npx create-onchain --mini You can get a CDP API key by going to the [CDP Portal](https://www.coinbase.com/developer-platform) and navigating API Keys → Client API Key. - + You will be asked if you'd like to set up your manifest. You can skip the manifest setup step as we'll handle that separately once we know our project's URL. @@ -51,7 +51,7 @@ These docs are LLM-friendly—reference [llms.txt](https://docs.base.org/base-ap To test your Mini App in Farcaster, you'll need a live URL. -We recommend using [Vercel](https://vercel.com) to deploy your MiniKit app, as it integrates seamlessly with the upstash/redis backend required for stateful frames, webhooks, and notifications. +We recommend using [Vercel](https://vercel.com) to deploy your MiniKit app, as it integrates seamlessly with the upstash/redis backend required for stateful Mini Apps, webhooks, and notifications. Alternatively, you can use ngrok to tunnel your localhost to a live url.