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/cookbook/successful-miniapps-in-tba.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ 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 your app requires a user to mint a NFT or submit a transaction onchain,
If your app requires a user to mint an NFT or submit a transaction onchain,
ensure it is gasless by making that component interact with a Paymaster.
</Step>
<Step title='Use Batched Transactions'>
Expand Down
4 changes: 2 additions & 2 deletions docs/get-started/deploy-smart-contracts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ This installs Foundry and updates it to the latest version.
forge init
```

Your Foundry project is now ready. You'll find an example contract in the `src` directory, which you can replace with your own contracts. For the purposes of this guide, we'll use the Counter contract provided in `/src/Counter.sol`
Your Foundry project is now ready. You'll find an example contract in the `src` directory, which you can replace with your own contracts. For the purposes of this guide, we'll use the Counter contract provided in `src/Counter.sol`

<Tip>
Foundry provides a suite of tools for Ethereum application development, including Forge (for testing), Cast (for interacting with the chain), and Anvil (for setting up a local node). You can learn more about Foundry [here](https://book.getfoundry.sh/).
Expand Down Expand Up @@ -139,5 +139,5 @@ This will return the initial value of the Counter contract's `number` storage va

## Next Steps

- Use [Onchainkit](https://onchainkit.com) to connect your frontend to your contracts! Onchainkit is a library of ready-to-use React components and Typescript utilities.
- Use [Onchainkit](https://onchainkit.com) to connect your frontend to your contracts! Onchainkit is a library of ready-to-use React components and TypeScript utilities.
- Learn more about interacting with your contracts in the command line using Foundry from our [Foundry tutorial](/learn/foundry/deploy-with-foundry).