diff --git a/README.md b/README.md
index c45915f..38255d0 100644
--- a/README.md
+++ b/README.md
@@ -295,11 +295,11 @@ Now open the Frame Playground on Warpcast mobile, by visiting [https://warpcast.
Enter your ngrok URL:
-
+
..and tap "Launch" to open your app.
-
+
If you watch your dev server and ngrok logs, you'll see a request to your server. But nothing will load until we signal to Warpcast that our app is `ready()`.
@@ -307,11 +307,11 @@ If you watch your dev server and ngrok logs, you'll see a request to your server
To give frames a consistent loading experience, clients display a splash screen and image until the app calls `sdk.actions.ready()`. In order to make it more visible here, let's add a splash image and loading color:
-
+
Now we get a nice background color and splash image:
-
+
Let's call `ready()` to load our app. We'll call `sdk.actions.ready()` in an effect on render, which tells the parent Farcaster app that our frame is ready to render and hides the splash screen:
@@ -342,7 +342,7 @@ export default function Demo() {
Try again in the playground and we'll see our app:
-
+
### Viewing context
@@ -379,11 +379,27 @@ export default function Demo() {
- {JSON.stringify(context, null, 2)}
-
-
+ {JSON.stringify(context, null, 2)}
+
+
This is a lot of data, so let's hide it behind a simple toggle:
@@ -457,7 +473,7 @@ export default function Demo() {
}
```
-
+
### Invoking actions
@@ -516,11 +532,11 @@ export default function Demo() {
}
```
-
+
Tap the button and you'll be directed to an external URL.
-
+
Let's add another button to call `close()`:
@@ -585,7 +601,7 @@ export default function Demo() {
}
```
-
+
When you tap this, the frame should close.
@@ -641,7 +657,7 @@ export default function Demo() {
}
```
-
+
If your wallet is connected to Warpcast, you should see its address. In case it's not, let's add a connect/disconnect button. Note that we'll need to import our Wagmi config to `connect`:
@@ -845,11 +861,11 @@ export default function Demo() {
}
```
-
+
Tap "Send Transaction" and you'll be directed to your wallet.
-
+
### Signatures