Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/base-account/basenames/basename-transfer.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Basename Transfer Guide
slug: /basename-transfer
description: 'Step-by-step guide for Base App users to transfer their Basenames to new a wallet addresses.'
description: 'Step-by-step guide for Base App users to transfer their Basenames to new wallet addresses.'
---

# Basename Transfer Guide
Expand Down
4 changes: 2 additions & 2 deletions docs/base-account/guides/accept-payments.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export async function checkPayment(txId, testnet = false) {
testnet // Must match the testnet setting from the original pay() call
});
if (status.status === 'completed') {
// fulfil order
// fulfill order
}
}
```
Expand Down Expand Up @@ -179,4 +179,4 @@ If you intend on using the BasePayButton, please follow the [Brand Guidelines](/
2. Pass <code>testnet: true</code> in your <code>pay()</code> and <code>getPaymentStatus()</code> calls.
3. Use <a href="https://sepolia.basescan.org" target="_blank">Sepolia BaseScan</a> to watch the transaction.



4 changes: 2 additions & 2 deletions docs/cookbook/introduction-to-mini-apps.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ description: Mini Apps represent a paradigm shift in application development and

# Vibe Coding a Mini App

In the following sections you will be guided through the best practices for vibe coding a mini app game starting with te fundamentals of prompting, what documentation to leverage, to deployment and posting.
In the following sections you will be guided through the best practices for vibe coding a mini app game starting with the fundamentals of prompting, what documentation to leverage, to deployment and posting.

Mini Apps are lightweight web applications that run across Farcaster clients like Farcaster and TBA. Posting your mini app and TBA will populate on Farcaster and visa versa
Mini Apps are lightweight web applications that run across Farcaster clients like Farcaster and TBA. Posting your mini app and TBA will populate on Farcaster and vice versa

# Introduction to Mini Apps

Expand Down
6 changes: 3 additions & 3 deletions docs/cookbook/successful-miniapps-in-tba.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Mini Apps succeed when they create the smoothest possible user experience. **Min
| Batched Transactions | Reduce interaction complexity | Bundle related operations efficiently | Transaction completion rates |

<Steps>
<Step title='Audit Connect Walet touchpoints'>
<Step title='Audit Connect Wallet touchpoints'>
If you are using a custom wallet connection flow, you can replace it with
MiniKit + Base Account.
</Step>
Expand All @@ -24,11 +24,11 @@ Mini Apps succeed when they create the smoothest possible user experience. **Min
align with Base UI patterns and speed up development.
</Step>
<Step title='Implement Paymaster'>
If you app requires a user to mint a NFT or submit a transaction onchain,
If your app requires a user to mint a NFT or submit a transaction onchain,
ensure it is gasless by making that component interact with a Paymaster.
</Step>
<Step title='Use Batched Transactions'>
If you are using doing multiple transactions in a row, you can use batched
If you are doing multiple transactions in a row, you can use batched
transactions to reduce the number of popups and approvals.
</Step>
</Steps>
Expand Down