From 4010b678c776f54297197e472aab5e7c7052b258 Mon Sep 17 00:00:00 2001 From: kuzey <61727501+0xkuzeydurden@users.noreply.github.com> Date: Wed, 28 Jan 2026 15:51:46 +0300 Subject: [PATCH 1/2] fix file path error and standardize TypeScript capitalization --- docs/get-started/deploy-smart-contracts.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/get-started/deploy-smart-contracts.mdx b/docs/get-started/deploy-smart-contracts.mdx index 7554b28ad..4652aadf6 100644 --- a/docs/get-started/deploy-smart-contracts.mdx +++ b/docs/get-started/deploy-smart-contracts.mdx @@ -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` 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/). @@ -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). From fd8fbd5687846101b7c03359caf67da6c3d1222b Mon Sep 17 00:00:00 2001 From: kuzey <61727501+0xkuzeydurden@users.noreply.github.com> Date: Wed, 28 Jan 2026 15:59:44 +0300 Subject: [PATCH 2/2] Fix typo in NFT minting instructions --- docs/cookbook/successful-miniapps-in-tba.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cookbook/successful-miniapps-in-tba.mdx b/docs/cookbook/successful-miniapps-in-tba.mdx index f9ce19d20..2b1b1f73c 100644 --- a/docs/cookbook/successful-miniapps-in-tba.mdx +++ b/docs/cookbook/successful-miniapps-in-tba.mdx @@ -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. - 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.