diff --git a/docs/auth-kit/client/wallet/parse-sign-in-uri.md b/docs/auth-kit/client/wallet/parse-sign-in-uri.md index 9eebe2b1..ff4af479 100644 --- a/docs/auth-kit/client/wallet/parse-sign-in-uri.md +++ b/docs/auth-kit/client/wallet/parse-sign-in-uri.md @@ -4,7 +4,7 @@ Parse the Sign In With Farcaster URI provided by a connected app user. Returns the parsed parameters. Your app should use these to construct a Sign In With Farcaster message. -Returns an error if URI is invalid. +Returns an error if the URI is invalid. ```ts const params = walletClient.parseSignInURI({ diff --git a/docs/developers/frames/spec.md b/docs/developers/frames/spec.md index 69780f82..f7b1b80f 100644 --- a/docs/developers/frames/spec.md +++ b/docs/developers/frames/spec.md @@ -349,7 +349,7 @@ Apps should consider the following mechanisms to protect users against malicious 1. Transaction simulation. 2. Domain allowlisting and banlisting to stop known attackers. 3. Social graph analysis to detect potential bad or untrusted actors. -4. Educating users about the potential dangerous of transactions and using a wallet with limited balances. +4. Educating users about the potential dangers of transactions and using a wallet with limited balances. ## Data Structures diff --git a/docs/developers/frames/v2/getting-started.md b/docs/developers/frames/v2/getting-started.md index e68e1fb3..70cbbab2 100644 --- a/docs/developers/frames/v2/getting-started.md +++ b/docs/developers/frames/v2/getting-started.md @@ -16,7 +16,7 @@ Here's a full walkthrough of creating a frames v2 app: ## Tutorial -The following tutorial is based on the [Frames v2 Demo](https://github.com/farcasterxyz/frames-v2-demo) repo on Github. +The following tutorial is based on the [Frames v2 Demo](https://github.com/farcasterxyz/frames-v2-demo) repo on GitHub. ### Setup and dependencies @@ -286,7 +286,7 @@ $ ngrok http http://localhost:3000 ``` ::: info Tunneling gotchas -Some tunneling tools, like the ngrok free tier, insert an click-through interstitial between your dev server and the tunnel endpoint. Use a paid ngrok account or a different tool, like Tailscale funnel. +Some tunneling tools, like the ngrok free tier, insert a click-through interstitial between your dev server and the tunnel endpoint. Use a paid ngrok account or a different tool, like Tailscale funnel. ::: Now open the Frame Playground on Warpcast mobile, by visiting [https://warpcast.com/~/developers/frame](https://warpcast.com/~/developers/frames). diff --git a/docs/developers/frames/v2/index.md b/docs/developers/frames/v2/index.md index 83f83b01..0f2a703a 100644 --- a/docs/developers/frames/v2/index.md +++ b/docs/developers/frames/v2/index.md @@ -1,6 +1,6 @@ # Frames v2 Introduction -[Frames](../index.md) launched in January 2024 as a a way to build interactive apps that run directly in a Farcaster social feed. They enabled developers to identify users, connect wallets, and take limited actions on and offchain. +[Frames](../index.md) launched in January 2024 as a way to build interactive apps that run directly in a Farcaster social feed. They enabled developers to identify users, connect wallets, and take limited actions on and offchain. Although we saw many apps built, they were held back by several limitations: diff --git a/docs/developers/frames/v2/notifications_webhooks.md b/docs/developers/frames/v2/notifications_webhooks.md index f9b6aa46..afcd6600 100644 --- a/docs/developers/frames/v2/notifications_webhooks.md +++ b/docs/developers/frames/v2/notifications_webhooks.md @@ -4,7 +4,7 @@ title: Frames v2 Notifications & Webhooks # Frames v2 Notifications & Webhooks -Frames v2 allow developers to send notifications to users who have "added" the frame to their Farcaster client and enabled notifications. +Frames v2 allows developers to send notifications to users who have "added" the frame to their Farcaster client and enabled notifications. In Warpcast, these are **in-app notifications** that trigger the red dot on the notifications tab. At this stage there is no support for push notifications. diff --git a/docs/developers/frames/v2/spec.md b/docs/developers/frames/v2/spec.md index 625db11d..4ee117c8 100644 --- a/docs/developers/frames/v2/spec.md +++ b/docs/developers/frames/v2/spec.md @@ -509,7 +509,7 @@ bottom of the view. ### actions.ready -Indicates that the application is fully loaded and ready to displayed to users. Once this is called the loading screen will be hidden. Frame applications MUST call `ready()` to display their app. +Indicates that the application is fully loaded and ready to be displayed to users. Once this is called the loading screen will be hidden. Frame applications MUST call `ready()` to display their app. ```ts > await sdk.actions.ready();