From c44f3318a851480d5351616b8d37441c749832d3 Mon Sep 17 00:00:00 2001 From: wamimi Date: Fri, 25 Apr 2025 23:53:41 +0300 Subject: [PATCH 1/4] docs: fix typos in MiniKit quickstart guide --- apps/base-docs/docs/pages/builderkits/minikit/quickstart.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/base-docs/docs/pages/builderkits/minikit/quickstart.mdx b/apps/base-docs/docs/pages/builderkits/minikit/quickstart.mdx index 9d420f490e..0c0c0ff709 100644 --- a/apps/base-docs/docs/pages/builderkits/minikit/quickstart.mdx +++ b/apps/base-docs/docs/pages/builderkits/minikit/quickstart.mdx @@ -1,6 +1,6 @@ # MiniKit Quickstart -This guide shows you how to get started with MiniKit, the easist way to build mini apps on Base! It can also be used to update an exisitng standalone app to a mini app. We'll start by setting up the template project with the CLI tool and then explore both built-in and additional features of MiniKit. +This guide shows you how to get started with MiniKit, the easiest way to build mini apps on Base! It can also be used to update an existing standalone app to a mini app. We'll start by setting up the template project with the CLI tool and then explore both built-in and additional features of MiniKit. ## Prerequisites From 85bbe3d5f46d28f6ef48acd82c98235dd400fcbd Mon Sep 17 00:00:00 2001 From: wamimi Date: Sat, 26 Apr 2025 00:37:59 +0300 Subject: [PATCH 2/4] docs: fix typos in MiniKit and Basenames documentation --- .../docs/pages/builderkits/minikit/overview.mdx | 2 +- .../docs/pages/builderkits/minikit/quickstart.mdx | 12 ++++++------ .../basenames/basenames-onchainkit-tutorial.mdx | 9 ++++----- 3 files changed, 11 insertions(+), 12 deletions(-) diff --git a/apps/base-docs/docs/pages/builderkits/minikit/overview.mdx b/apps/base-docs/docs/pages/builderkits/minikit/overview.mdx index 15c9dc33b9..3d26364638 100644 --- a/apps/base-docs/docs/pages/builderkits/minikit/overview.mdx +++ b/apps/base-docs/docs/pages/builderkits/minikit/overview.mdx @@ -9,7 +9,7 @@ description: Easiest way to build Mini Apps on Base src="/images/minikit/minikit-cli.gif" height="364"/> -MiniKit is easiest way to build Mini Apps on Base, allowing developers to easily build applications without needing to know the details of the SDK implementation. It integrates seamlessly with OnchainKit components and provides Coinbase Wallet-specific hooks. +MiniKit is the easiest way to build Mini Apps on Base, allowing developers to easily build applications without needing to know the details of the SDK implementation. It integrates seamlessly with OnchainKit components and provides Coinbase Wallet-specific hooks. ## Why MiniKit? diff --git a/apps/base-docs/docs/pages/builderkits/minikit/quickstart.mdx b/apps/base-docs/docs/pages/builderkits/minikit/quickstart.mdx index 0c0c0ff709..16d71bc0d3 100644 --- a/apps/base-docs/docs/pages/builderkits/minikit/quickstart.mdx +++ b/apps/base-docs/docs/pages/builderkits/minikit/quickstart.mdx @@ -110,7 +110,7 @@ The template comes with several pre-implemented features. Let's explore where th ### MiniKitProvider -The `MiniKitProvider` is set up in your `providers.tsx` file. It wraps your application to handle initialization, events, and automatically applie client safeAreaInsets to ensure your app doesn't overlap parent application elements. +The `MiniKitProvider` is set up in your `providers.tsx` file. It wraps your application to handle initialization, events, and automatically applies client safeAreaInsets to ensure your app doesn't overlap parent application elements. ```tsx [app/providers.tsx] import { MiniKitProvider } from '@coinbase/onchainkit/minikit'; @@ -135,7 +135,7 @@ export function Providers(props: { children: ReactNode }) { } ``` -The MiniKitProvider also sets up your wagmi and react-query providers automatically, elimintaing that initial setup work. +The MiniKitProvider also sets up your wagmi and react-query providers automatically, eliminating that initial setup work. ### useMiniKit @@ -170,7 +170,7 @@ Enter `y` to proceed with the setup and your browser will open to the following height="364" /> -The wallet that you connect must be your Farcaster custody wallet. You can import this wallet to your prefered wallet using the recovery phrase. You can find your recovery phrase in the Warpcast app under Settings -> Advanced -> Farcster recovery phrase. +The wallet that you connect must be your Farcaster custody wallet. You can import this wallet to your prefered wallet using the recovery phrase. You can find your recovery phrase in the Warpcast app under Settings -> Advanced -> Farcaster recovery phrase. Once connected, add the vercel url and sign the manifest. This will automatically update your .env variables locally, but we'll need to update Vercel's .env variables. @@ -229,7 +229,7 @@ const openUrl = useOpenUrl() ``` -Now that we've reviewed the MiniKit teamplate and the functionality already implemented, lets add some additional MiniKit features. +Now that we've reviewed the MiniKit template and the functionality already implemented, lets add some additional MiniKit features. ## Additional MiniKit Features @@ -280,7 +280,7 @@ usePrimaryButton( ) ``` -You'll notice that adding the Primary button takes up space at the bottom of the frame, which causes the "BUILT ON BASE WITH MINIKIT" button to move upwards and overlap with the contorls. +You'll notice that adding the Primary button takes up space at the bottom of the frame, which causes the "BUILT ON BASE WITH MINIKIT" button to move upwards and overlap with the controls. We can quickly fix that by changing the text to "BUILT WITH MINIKIT" and removing the `ml-4` style in the `className` of the `