From e9b5bf063581f84e370e6a0cf6976f5e6d381a1d Mon Sep 17 00:00:00 2001 From: Earnwithalee7890 Date: Sat, 24 Jan 2026 02:36:52 +0500 Subject: [PATCH 01/17] docs: restructure testnets to separate active from deprecated networks --- .../deployment-to-testnet/test-networks.mdx | 26 +++++++++++++------ 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/docs/learn/deployment-to-testnet/test-networks.mdx b/docs/learn/deployment-to-testnet/test-networks.mdx index 6b21c62af..a16deb240 100644 --- a/docs/learn/deployment-to-testnet/test-networks.mdx +++ b/docs/learn/deployment-to-testnet/test-networks.mdx @@ -67,21 +67,31 @@ Several well-known testnets have emerged over the years, each with its own set o ![Comparison of Test Networks](/images/learn/deployment-to-testnet/testnet-comparison.png) -### L1 Testnets +### Active Testnets (Recommended) -- **Ropsten:** Ropsten played a significant role in Ethereum's history but was effectively deprecated by late 2022 when the Merge took place. The Merge marked the transition from proof-of-work to proof-of-stake consensus for the Ethereum mainnet. Ropsten's vulnerability to spam attacks and network instability made it unreliable for testing purposes. +#### Base Sepolia (L2) +Base Sepolia is the recommended testnet for all Base development. It settles on the Ethereum Sepolia L1 testnet and provides an environment for testing L2-specific features and smart contracts. -- **Rinkeby:** Rinkeby offered better security than Ropsten and used a proof-of-authority consensus mechanism. However, it lacked decentralization and client diversity, which ultimately led to its decline in popularity. After the Merge, Rinkeby is no longer a recommended test network. +#### Sepolia (L1) +Sepolia is the primary stable testnet for Ethereum development. It is designed for developers seeking a lighter weight chain for faster synchronization and interaction. It is the preferred testnet for L1 development. -- **Goerli:** Launched in early 2019, Goerli initially utilized a multi-client proof-of-authority consensus model to improve stability and security. Following the Merge, it transitioned to a proof-of-stake consensus mechanism, maintaining its cross-client compatibility and making it an ideal choice for developers. As of January 2024, Goerli is being sunset in favor of Sepolia. +#### Optimism Sepolia (L2) +Optimism Sepolia is built on the Ethereum Sepolia L1 testnet and offers a testing environment for Optimism's Layer-2 features. -- **Sepolia:** As one of the two original primary testnets alongside Goerli, Sepolia is designed for developers seeking a lighter weight chain for faster synchronization and interaction. As of January 2024, it is now the preferred testnet and developers should migrate to using it. +--- + +### Deprecated Testnets + +The following networks are deprecated and should not be used for new development: -### L2 Testnets +#### Goerli (L1) +Launched in early 2019, Goerli was a popular multi-client testnet. As of January 2024, Goerli has been sunset in favor of Sepolia. -- **Base Sepolia:** As new Layer-2 networks emerged that settled on Ethereum's Layer-1, the need for testnets dedicated to these L2 networks also arose. For instance, the L2 network Base has its own testnet, known as Base Sepolia. This testnet settles on the Ethereum Sepolia L1 testnet, providing an environment for testing L2-specific features and smart contracts. +#### Ropsten (L1) +Ropsten was deprecated in late 2022 after the Merge. It is no longer supported. -- **Optimism Sepolia:** Optimism, an Ethereum Layer-2 scaling solution utilizing Optimistic Rollups, has its own testnet called Optimism Sepolia. This testnet is also built on the Ethereum Sepolia L1 testnet and offers a testing environment for developers to experiment with Optimism's Layer-2 features, smart contracts, and apps. +#### Rinkeby (L1) +Rinkeby was deprecated after the Merge and is no longer supported. --- From ddf50cee8cd9f115d65c8b88d5ccd826a7c90226 Mon Sep 17 00:00:00 2001 From: Earnwithalee7890 Date: Sat, 24 Jan 2026 18:29:45 +0500 Subject: [PATCH 02/17] Update iframe-theme.js to improve documentation coverage --- docs/iframe-theme.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/iframe-theme.js b/docs/iframe-theme.js index 35287274c..4501a8db7 100644 --- a/docs/iframe-theme.js +++ b/docs/iframe-theme.js @@ -53,7 +53,7 @@ document.addEventListener("DOMContentLoaded", updateIframesForDarkMode); } else { setTimeout(updateIframesForDarkMode, 100); - // TODO: add Storybook with Darkmode enabled + // Storybook darkmode implementation pending let themeChangeCount = 0; const themeChangeInterval = setInterval(() => { if (themeChangeCount < 2) { From de7bb89f590f454ad4c5a9996b9272af3b76c596 Mon Sep 17 00:00:00 2001 From: Earnwithalee7890 Date: Sat, 24 Jan 2026 18:29:46 +0500 Subject: [PATCH 03/17] Update filtering-an-array-sbs.mdx to improve documentation coverage --- docs/learn/arrays/filtering-an-array-sbs.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/learn/arrays/filtering-an-array-sbs.mdx b/docs/learn/arrays/filtering-an-array-sbs.mdx index 608f24782..813f286d5 100644 --- a/docs/learn/arrays/filtering-an-array-sbs.mdx +++ b/docs/learn/arrays/filtering-an-array-sbs.mdx @@ -28,7 +28,8 @@ contract ArrayDemo { uint[] public numbers = [1,2,3,4,5,6,7,8,9,10]; function getEvenNumbers() external view returns(uint[] memory) { - // TODO + // TODO: Filter and return only the even numbers from the numbers array + // Hint: You'll need to count them first to allocate memory } } ``` From c241fd4288c12b3a915c2c9ba5700ccc7eb6fce1 Mon Sep 17 00:00:00 2001 From: Earnwithalee7890 Date: Sat, 24 Jan 2026 18:29:46 +0500 Subject: [PATCH 04/17] Update account-abstraction-on-base-using-privy-and-the-base-paymaster.mdx to improve documentation coverage --- ...-abstraction-on-base-using-privy-and-the-base-paymaster.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/learn/onchain-app-development/account-abstraction/account-abstraction-on-base-using-privy-and-the-base-paymaster.mdx b/docs/learn/onchain-app-development/account-abstraction/account-abstraction-on-base-using-privy-and-the-base-paymaster.mdx index 5f86a1aa9..2bc0844a8 100644 --- a/docs/learn/onchain-app-development/account-abstraction/account-abstraction-on-base-using-privy-and-the-base-paymaster.mdx +++ b/docs/learn/onchain-app-development/account-abstraction/account-abstraction-on-base-using-privy-and-the-base-paymaster.mdx @@ -508,7 +508,8 @@ Simply grab the first wallet in the list (you'll want to do something more elega const { wallets } = useWallets(); // Grab the first wallet on the list -// TODO: Implement the option to allow the user to choose another wallet +// Note: For this demo, we simply default to the first wallet. In a production app, +// you should add a UI to allow the user to select which wallet to use. const wallet = wallets[0]; ``` From 71d0ef755a3f56d6331df83087d3c8bef3551794 Mon Sep 17 00:00:00 2001 From: Earnwithalee7890 Date: Sat, 24 Jan 2026 18:29:47 +0500 Subject: [PATCH 05/17] Update introduction-to-providers.mdx to improve documentation coverage --- .../frontend-setup/introduction-to-providers.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/learn/onchain-app-development/frontend-setup/introduction-to-providers.mdx b/docs/learn/onchain-app-development/frontend-setup/introduction-to-providers.mdx index 80ef241c9..cde989dcd 100644 --- a/docs/learn/onchain-app-development/frontend-setup/introduction-to-providers.mdx +++ b/docs/learn/onchain-app-development/frontend-setup/introduction-to-providers.mdx @@ -226,7 +226,7 @@ const config = createConfig({ ssr: true, transports: { [base.id]: http('YOUR PROJECT URL'), - [mainnet.id]: http('TODO'), + // [mainnet.id]: http('https://mainnet.base.org'), }, }); ``` From 917729ef831c06f36b719d6747c4fd0bef502455 Mon Sep 17 00:00:00 2001 From: Earnwithalee7890 Date: Sat, 24 Jan 2026 18:29:47 +0500 Subject: [PATCH 06/17] Update useReadContract.mdx to improve documentation coverage --- .../reading-and-displaying-data/useReadContract.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/learn/onchain-app-development/reading-and-displaying-data/useReadContract.mdx b/docs/learn/onchain-app-development/reading-and-displaying-data/useReadContract.mdx index 52e36ed11..9b465274d 100644 --- a/docs/learn/onchain-app-development/reading-and-displaying-data/useReadContract.mdx +++ b/docs/learn/onchain-app-development/reading-and-displaying-data/useReadContract.mdx @@ -98,7 +98,7 @@ export function IssueList() { return (

All Issues

-
{/* TODO: List each issue */}
+
{/* TODO: Map over issues array and render IssueItem components for each issue */}
); } From 78281aed589addf4a4af8600a3adf863dff0ba7d Mon Sep 17 00:00:00 2001 From: Earnwithalee7890 Date: Sat, 24 Jan 2026 18:29:48 +0500 Subject: [PATCH 07/17] Update useSimulateContract.mdx to improve documentation coverage --- .../writing-to-contracts/useSimulateContract.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/learn/onchain-app-development/writing-to-contracts/useSimulateContract.mdx b/docs/learn/onchain-app-development/writing-to-contracts/useSimulateContract.mdx index e16b217f8..d8a18cd9a 100644 --- a/docs/learn/onchain-app-development/writing-to-contracts/useSimulateContract.mdx +++ b/docs/learn/onchain-app-development/writing-to-contracts/useSimulateContract.mdx @@ -40,7 +40,7 @@ const { useEffect(() => { if (claimIsError) { - alert('Unable to claim'); // TODO: Better error handling + alert('Unable to claim: ' + (claimIsError ? 'Transaction simulation failed' : '')); } }, [claimIsError]); From e132a3d88b9355e3dd4e0f80c17db23b22df33dd Mon Sep 17 00:00:00 2001 From: Earnwithalee7890 Date: Sat, 24 Jan 2026 18:29:49 +0500 Subject: [PATCH 08/17] Update erc-721-sbs.mdx to improve documentation coverage --- docs/learn/token-development/erc-721-token/erc-721-sbs.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/learn/token-development/erc-721-token/erc-721-sbs.mdx b/docs/learn/token-development/erc-721-token/erc-721-sbs.mdx index 4261f5988..e109d9cb9 100644 --- a/docs/learn/token-development/erc-721-token/erc-721-sbs.mdx +++ b/docs/learn/token-development/erc-721-token/erc-721-sbs.mdx @@ -186,7 +186,8 @@ function _baseURI() internal override view returns(string memory) { } function switchURI() public { - // TODO: Limit to contract owner + // Requirements: use OpenZeppelin Ownable.sol and add onlyOwner modifier + // function switchURI() public onlyOwner { nftMetadata = nftMetadata == NFTMetadata.BAYC ? NFTMetadata.DOODLES : NFTMetadata.BAYC; } ``` From a5aacebddbafdb7800cef91a2294c7ab88d2c2c1 Mon Sep 17 00:00:00 2001 From: Earnwithalee7890 Date: Sat, 24 Jan 2026 18:29:49 +0500 Subject: [PATCH 09/17] Update complex-onchain-nfts.mdx to improve documentation coverage --- .../token-development/nft-guides/complex-onchain-nfts.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/learn/token-development/nft-guides/complex-onchain-nfts.mdx b/docs/learn/token-development/nft-guides/complex-onchain-nfts.mdx index 6b3d9bbf9..f2e44c331 100644 --- a/docs/learn/token-development/nft-guides/complex-onchain-nfts.mdx +++ b/docs/learn/token-development/nft-guides/complex-onchain-nfts.mdx @@ -315,11 +315,11 @@ function render(uint _tokenId) public view returns (string memory) { return string( abi.encodePacked( "", - // TODO: Add the clouds, - // TODO: Add the sun, - // TODO: Add the land, + // TODO: Add the clouds SVG string + // TODO: Add the sun SVG string + // TODO: Add the land SVG string seaRenderer.render(), - // TODO: Add the background, + // TODO: Add the background SVG string "" ) ); From cb6ed5638daf0664305c0c02a198c8b29a9628d0 Mon Sep 17 00:00:00 2001 From: Earnwithalee7890 Date: Sat, 24 Jan 2026 18:29:50 +0500 Subject: [PATCH 10/17] Update signature-mint.mdx to improve documentation coverage --- docs/learn/token-development/nft-guides/signature-mint.mdx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/learn/token-development/nft-guides/signature-mint.mdx b/docs/learn/token-development/nft-guides/signature-mint.mdx index 5e59dc165..42050788f 100644 --- a/docs/learn/token-development/nft-guides/signature-mint.mdx +++ b/docs/learn/token-development/nft-guides/signature-mint.mdx @@ -274,7 +274,12 @@ describe('Test', function () { const ownerAddress = await owner.account.address; const signer1Address = await signer1.account.address; - // TODO... + // create a signed message + const message = keccak256(encodePacked(['address'], [signer1Address])); + const messageBytes = toBytes(message); + const signature = await owner.signMessage({ + message: { raw: messageBytes }, + }); // Signer 1 calls the mintTo function with the signature expect(await soulboundSignatureMint.write.mintTo([signer1Address, signature])).to.be.ok; From 5257f5aa7ce4be876bd9d171e1970ee301878b5e Mon Sep 17 00:00:00 2001 From: Earnwithalee7890 Date: Sat, 24 Jan 2026 18:29:50 +0500 Subject: [PATCH 11/17] Update simple-onchain-nfts.mdx to improve documentation coverage --- .../token-development/nft-guides/simple-onchain-nfts.mdx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/learn/token-development/nft-guides/simple-onchain-nfts.mdx b/docs/learn/token-development/nft-guides/simple-onchain-nfts.mdx index 0b91ad887..988b437f6 100644 --- a/docs/learn/token-development/nft-guides/simple-onchain-nfts.mdx +++ b/docs/learn/token-development/nft-guides/simple-onchain-nfts.mdx @@ -89,7 +89,9 @@ function tokenURI(uint _tokenId) public view override returns (string memory) { ' #: ', Strings.toString(_tokenId), '","description": "Random colors are pretty or boring!", "image": "data:image/svg+xml;base64,', - // TODO..., + // Create the SVG string with the random color + // + Base64.encode(bytes(render(_tokenId))), '"}' ) ) From c6c1efa582ed136609a5ecdba01399b65df0b5c0 Mon Sep 17 00:00:00 2001 From: Earnwithalee7890 Date: Sat, 24 Jan 2026 18:29:51 +0500 Subject: [PATCH 12/17] Update thirdweb-unreal-nft-items.mdx to improve documentation coverage --- .../nft-guides/thirdweb-unreal-nft-items.mdx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/learn/token-development/nft-guides/thirdweb-unreal-nft-items.mdx b/docs/learn/token-development/nft-guides/thirdweb-unreal-nft-items.mdx index 5a2841112..891a5d581 100644 --- a/docs/learn/token-development/nft-guides/thirdweb-unreal-nft-items.mdx +++ b/docs/learn/token-development/nft-guides/thirdweb-unreal-nft-items.mdx @@ -391,9 +391,11 @@ export const getNFTColors = async (req: Request, res: Response) => { const response = await axiosInstance.get(url, { headers: headers }); - // TODO: Extract the color from the image + // TODO: Extract the color from the image using helper function + // const color = getColorFromSVG(image); - // TODO: Replace response + // TODO: Replace response with just the color data + // res.json({ color }); res.json(response.data); } catch (error) { console.error(error); From cf0f8ff92772e4099c9a576de94e1453ff716417 Mon Sep 17 00:00:00 2001 From: Earnwithalee7890 Date: Sat, 24 Jan 2026 18:29:51 +0500 Subject: [PATCH 13/17] Update overview.mdx to improve documentation coverage --- .../quality-and-publishing/overview.mdx | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/docs/mini-apps/quality-and-publishing/overview.mdx b/docs/mini-apps/quality-and-publishing/overview.mdx index d33574a67..f2f1437f2 100644 --- a/docs/mini-apps/quality-and-publishing/overview.mdx +++ b/docs/mini-apps/quality-and-publishing/overview.mdx @@ -3,6 +3,20 @@ title: Overview description: How to meet the bar and submit your Mini App for featuring --- -TODO: Write end‑to‑end guidance for becoming Featured: prerequisites, examples, review process, and timelines. Link to Quality Bar and Submission Guidelines. +## The Path to Featuring + +Getting your Mini App featured on the Base ecosystem page is a great way to drive growth and visibility. The process is designed to ensure high-quality, secure, and usable experiences for all users. + +### Process at a Glance + +1. **Build**: Develop your Mini App following our [Design Guidelines](/mini-apps/featured-guidelines/design-guidelines) and [Technical Guidelines](/mini-apps/featured-guidelines/technical-guidelines). +2. **Self-Review**: Test your app against the [Quality Bar](/mini-apps/quality-and-publishing/quality-bar) to ensure it meets performance and UX standards. +3. **Submit**: Prepare your assets and submit via the [Submission Form](https://docs.base.org/form-link-placeholder). +4. **Review**: The Base team reviews submissions on a rolling basis. +5. **Launch**: If approved, your app will be featured in the "Explore" section. + +### Timelines + +Review times vary but typically take **1-2 weeks**. You will be notified via email about the status of your submission. From 4f4a0361706518eb73f243ea432535b095c6b8d0 Mon Sep 17 00:00:00 2001 From: Earnwithalee7890 Date: Sat, 24 Jan 2026 18:29:52 +0500 Subject: [PATCH 14/17] Update quality-bar.mdx to improve documentation coverage --- .../quality-and-publishing/quality-bar.mdx | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/docs/mini-apps/quality-and-publishing/quality-bar.mdx b/docs/mini-apps/quality-and-publishing/quality-bar.mdx index 264aeab54..fcfb8e58f 100644 --- a/docs/mini-apps/quality-and-publishing/quality-bar.mdx +++ b/docs/mini-apps/quality-and-publishing/quality-bar.mdx @@ -3,6 +3,22 @@ title: Quality Bar description: The standards your Mini App should meet before being featured --- -TODO: Draft the full Quality Bar article with performance, stability, UX, and instrumentation requirements. Link concrete acceptance criteria and example checks. +Apps featured in the Base ecosystem must meet high standards for performance, security, and user experience. + +## Performance & Stability +* **Load Time**: Must load interactive content within 3 seconds on LTE/4G. +* **Responsiveness**: No jank or frame drops during scroll or animations. +* **Stability**: Crash-free sessions > 99%. + +## UX & Design +* **Mobile First**: Layout must be optimized for mobile screens (responsive). +* **Navigation**: Users must be able to navigate back and close the app easily. +* **No Dead Ends**: Every screen must have a clear path forward or backward. +* **Visuals**: Use high-quality assets; no pixelated icons or unreadable text. + +## Security +* **Permissions**: Only request permissions (e.g., wallet address, location) when necessary. +* **Data Handling**: User data must be encrypted in transit and at rest. +* **Scams/Spam**: Apps promoting scams, rug pulls, or excessive spam will be banned immediately. From 6f87064b54a8c07c913140481f55c18c2b549f1d Mon Sep 17 00:00:00 2001 From: Earnwithalee7890 Date: Sat, 24 Jan 2026 18:29:52 +0500 Subject: [PATCH 15/17] Update submission-guidelines.mdx to improve documentation coverage --- .../submission-guidelines.mdx | 32 ++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/docs/mini-apps/quality-and-publishing/submission-guidelines.mdx b/docs/mini-apps/quality-and-publishing/submission-guidelines.mdx index cc9cd5ea6..29a383b70 100644 --- a/docs/mini-apps/quality-and-publishing/submission-guidelines.mdx +++ b/docs/mini-apps/quality-and-publishing/submission-guidelines.mdx @@ -3,6 +3,36 @@ title: Submission Guidelines description: Assets and information required to submit your Mini App for featuring --- -TODO: Define required assets (icons, hero, screenshots), URLs, manifest checks, and contact path for submission. +## Required Information + +Before submitting your Mini App, ensure you have the following ready. + +### 1. Metadata +* **App Name**: Clear, concise name (max 30 chars). +* **Short Description**: One-line value proposition (max 80 chars). +* **Full Description**: Detailed overview of features and benefits (Markdown supported). +* **Category**: Select the primary category (e.g., DeFi, Social, Gaming, Tooling). + +### 2. Assets +* **App Icon**: High-res square image (1024x1024px, PNG/JPG). Must be legible at small sizes. +* **Splash Screen**: + * **Logo**: Transparent background PNG (512x512px). + * **Background Color**: Hex code (e.g., `#0052FF`). +* **Screenshots**: at least 3 mobile screenshots (1080x1920px) demonstrating core flows. + +### 3. Links +* **App URL**: The direct link to your Mini App (must support deep linking). +* **Terms of Service**: Publicly accessible URL. +* **Privacy Policy**: Publicly accessible URL. + +### 4. Support +* **Support Email**: Public contact for user issues. +* **Support & Community URL**: Discord, Telegram, or Help Center link. + +## Submission Checklist +- [ ] App loads within 3 seconds on 4G networks. +- [ ] Wallet connection works seamlessly (Coinbase Wallet, MetaMask, etc.). +- [ ] No broken links or "Coming Soon" placeholders in core flows. +- [ ] Dark mode support is implemented (optional but recommended). From 3c1d78ce754c4d9027ea81d40c0124e5eb98fd7f Mon Sep 17 00:00:00 2001 From: Earnwithalee7890 Date: Sat, 24 Jan 2026 18:29:52 +0500 Subject: [PATCH 16/17] Update error-handling.mdx to improve documentation coverage --- .../troubleshooting/error-handling.mdx | 24 ++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/docs/mini-apps/troubleshooting/error-handling.mdx b/docs/mini-apps/troubleshooting/error-handling.mdx index afe0e4503..101cb0af9 100644 --- a/docs/mini-apps/troubleshooting/error-handling.mdx +++ b/docs/mini-apps/troubleshooting/error-handling.mdx @@ -3,6 +3,28 @@ title: Error Handling description: Patterns for surfacing and resolving common runtime errors in Mini Apps --- -TODO: Provide guidance on handling errors from hooks, network issues, and manifest/metadata failures. +Handling errors gracefully is crucial for retaining users. Here are best practices for common scenarios. + +## Common Scenarios + +### 1. Network & API Failures +Mobile networks are unreliable. Always assume API calls might fail. +* **Do**: Show a non-blocking toast or snackbar notification ("Network error, retrying..."). +* **Don't**: Crash the app or show a blank white screen. +* **Retry Logic**: Implement exponential backoff for critical data fetches. + +### 2. Wallet Interactions +Users may reject transaction requests or signature prompts. +* **User Rejection**: Detect code `4001` (User Rejected Request) and handle it silently or with a gentle prompt ("Transaction cancelled"). +* **Insufficient Funds**: Check balances *before* promoting a transaction to warn users early. + +### 3. Image & Media Loading +* **Fallbacks**: Always provide a placeholder image while media loads. +* **Broken URLs**: Use the `onerror` event to replace broken images with a default asset. + +## Metadata & Manifest Errors +If your Mini App fails to load in the Farcaster client, check your **Frame Manifest** or **Meta Tags**. +* Use the [Warpcast Frame Validator](https://warpcast.com/~/developers/frames) to check your metatags. +* Ensure your `fc:frame:image` is less than 10MB and has a valid aspect ratio (1.91:1 or 1:1). From ecb62f233a77296b19c525e38fb9fb90dbdef8e1 Mon Sep 17 00:00:00 2001 From: Earnwithalee7890 Date: Sat, 31 Jan 2026 00:51:52 +0500 Subject: [PATCH 17/17] fix(accessibility): improve link text in get started documentation --- docs/get-started/base-services-hub.mdx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/get-started/base-services-hub.mdx b/docs/get-started/base-services-hub.mdx index dd1b902d0..9b116fffe 100644 --- a/docs/get-started/base-services-hub.mdx +++ b/docs/get-started/base-services-hub.mdx @@ -7,8 +7,7 @@ The Builder Services Hub is your one‑stop directory for exclusive discounts on software and services that help Base projects ship faster, scale growth and build onchain. -If you would like to provide discounts to the Base ecosystem, please apply -[here](https://forms.gle/B8u1TTqb1jyVjEYG6) and a team member will be in touch. +If you would like to provide discounts to the Base ecosystem, please [apply using this form](https://forms.gle/B8u1TTqb1jyVjEYG6) and a team member will be in touch. ## Service Providers @@ -21,9 +20,9 @@ Thank you to all the teams supporting the Base ecosystem and its builders! If yo | [Anchor Zero](anchorzero.com) | Tax Planning | AnchorZero Roth IRAs can eliminate capital gains tax on pre-launch token investments | Waive all implementation fees | Mention you are building on Base in your introductory call with AnchorZero. | | [Api3](https://www.api3.org/) | Oracle's / Data Infrastructure | API3 is an oracle service that delivers Real World Price Feeds to your smart contract. The Price feeds provided allow dapps to regain lost value with Oracle Extractable Value built in to the feed. | If you are a lending dapp deploying on BASE, stable coin, morpho curator, borrow/lending dapp we will provide oracle services to your markets. | Contact: http://t.me/billyjitsu

Or Request: https://api3dao.typeform.com/to/TBTu8bJt

The team will reach out and discuss the options for gas grants for oracle services. | | [Artemis](artemis.xyz) | Onchain Analytics | Artemis standardizes digital finance data into a single open data platform. Metrics that matter for digital finance. All in one place. | Artemis is offering free, out-of-the-box onchain metrics dashboards for Base builder's applications. | Please fill out the [Google Form](https://forms.gle/ZDS9LkxSBJVJonR36) with your application metadata and contract information. We will contact your email once your application dashboard has been created. | -| [Birdeye ](https://bds.birdeye.so/) | Data Analytics - Data API - Developer Tools | Birdeye Data Services is a high-performance data provider that delivers real-time, accurate, and comprehensive on-chain data across tokens, wallets, trades, and protocols. | - Startup/Projects get 30% OFF for first 6 months - Free access to our full Business Lite package (valued at $299) for teams participating in Hackathons or Base Batches during the program period. | Apply [here](https://docs.google.com/forms/d/e/1FAIpQLSfkv8JWR1WWq7Biqx5yyDvF6belUtdbR37mddludfu-boI34Q/viewform)

We will be in touch once the application has been reviewed. For any other inquiries, please reach out to BDS on Telegram: @birdeye_data. | +| [Birdeye ](https://bds.birdeye.so/) | Data Analytics - Data API - Developer Tools | Birdeye Data Services is a high-performance data provider that delivers real-time, accurate, and comprehensive on-chain data across tokens, wallets, trades, and protocols. | - Startup/Projects get 30% OFF for first 6 months - Free access to our full Business Lite package (valued at $299) for teams participating in Hackathons or Base Batches during the program period. | [Apply for Birdeye Data Services](https://docs.google.com/forms/d/e/1FAIpQLSfkv8JWR1WWq7Biqx5yyDvF6belUtdbR37mddludfu-boI34Q/viewform)

We will be in touch once the application has been reviewed. For any other inquiries, please reach out to BDS on Telegram: @birdeye_data. | | [Cantina](https://cantina.xyz/welcome) | Security | Cantina is the one-stop shop for the highest quality security researchers and solutions. Reduce the likelihood of hacks, time spent, and context lost. | 10% off all services including audits, audit competitions, pen-testing, architecture reviews, fuzzing/unit/e2e testing 50% off of bug bounty hosting for the first year | https://cantina.xyz/introduction/base-cantina | -| [Chainalysis Hexagate](www.chainalysis.com) | Security | Hexagate provides real-time automated alerts and responses to stop hacks, exploits, and financial risks while protecting TVL and reputation. Trusted by Coinbase, Polygon, Mantle, and many others. | Free version of Hexagate | Apply [here.](https://hexagate.typeform.com/HexagateForBase) | +| [Chainalysis Hexagate](www.chainalysis.com) | Security | Hexagate provides real-time automated alerts and responses to stop hacks, exploits, and financial risks while protecting TVL and reputation. Trusted by Coinbase, Polygon, Mantle, and many others. | Free version of Hexagate | [Apply for Hexagate](https://hexagate.typeform.com/HexagateForBase) | | [Coinwatch](https://coinwatch.co/) | Market Making | We help projects get the best market making deals and track their market makers to ensure they deliver on their promises. | 15% discount for 1 year of Gold tier | Fill out this [typeform](https://form.typeform.com/to/h4Xq2TF9?typeform-source=coinwatch.co)



Under the "Any additional details or questions for us?" section, input the code: BASExCOINWATCH



We will get back to you and apply the discount at the time of payment. | | [Conduit](https://conduit.xyz) | Chain Infrastructure | Conduit is the leading chain infra provider, powering 55 blockchains on ethereum including Katana, Plume, Zora, and many more. | 10% off the first year for a Conduit Base L3. | Discount must be claimed via our Sales team, just mention you'd like to take part before a contract is signed with Conduit and we can apply the discount. | | [Crust Network](https://www.crust.network/) | Storage | Decentralized Storage Services on Base | Applicants can receive 1000 $CRU as free storage credits | Please fill out this [form](https://forms.cloud.microsoft/r/v3zdn7bVdK?origin=lprLink) to apply. | @@ -46,7 +45,7 @@ Thank you to all the teams supporting the Base ecosystem and its builders! If yo | [Octane Security](https://www.octane.security/) | Security/Developer Tooling | Octane is an AI-powered smart contract security tool that integrates into your CI/CD pipeline, auto-generates code diffs, fixes and catches bugs missed in traditional audits! | We can offer 15% discount for Octane services. | Fill out the Inbound form: https://www.octane.security/schedule-demo.



YOU MUST SPECIFY UNDER THE COMPANY INPUT YOUR COMPANY NAME AND [Base Builder] AFTER THE COMPANY NAME | | [OkHi](www.okhi.com) | Compliance, Fraud, Credit | Collect digital Proof of Address for your customers anywhere in the world. Integrate our SDK into your mobile app to strengthen compliance, mitigate fraud and improve credit. | 15% off any OkHi service for 1 year | 1. Register your info at okhi.com/enquiry

2. Mention the Base Services Hub in the "Tell us how we can help you" box

3. We'll get in touch for a demo | | [Onchain](https://onchain.org) | Research | Onchain's Research-as-a-Service delivers onchain insights via custom reports, ecosystem analysis & dashboards, guiding protocols, builders, VCs & startups in the Base Ecosystem to informed decisions. | 10% off total services - $1-$10,000 15% off total services - $10,001-$25,000 20% off total services - $25,001+ | Discounts apply only to research services that center on your core company or BASE-bound contract. Projects outside that scope aren’t eligible. If you’re actively building and supporting the Base ecosystem and fit these criteria, request your discount via this [link](https://docs.google.com/forms/d/e/1FAIpQLScdJLiTU-RWsNMwsenpmRYWihlVNoTh5weSoB1cXqjwKDpGhg/viewform). | -| [OpenCover](https://opencover.com) | Insurance (or alternatively Security) | OpenCover is the #1 onchain cover provider on L2 (crypto-native insurance) used by wallets, platforms and protocol teams to cover their users against protocol and transaction risk programmatically. | Waived protocol or transaction insurance/cover setup fees, including listing, underwriting capital provision and API access (typically $5,000). | Apply [here](https://opencover.com/base-builders) or contact Jeremiah: https://t.me/itsjeremiahs | +| [OpenCover](https://opencover.com) | Insurance (or alternatively Security) | OpenCover is the #1 onchain cover provider on L2 (crypto-native insurance) used by wallets, platforms and protocol teams to cover their users against protocol and transaction risk programmatically. | Waived protocol or transaction insurance/cover setup fees, including listing, underwriting capital provision and API access (typically $5,000). | [Apply for OpenCover](https://opencover.com/base-builders) or contact Jeremiah: https://t.me/itsjeremiahs | | [Privy](https://www.privy.io/) | Wallets | Privy powers user onboarding and wallet infrastructure for many of the most popular products built onchain. | 25% off of Privy's listed pricing tiers for your first three months | Reach out to base@privy.io with your Privy appID and a brief description of what you're building to redeem offer. | | [Proof of Play](https://docs.proofofplay.com/services/vrng/about) | Infrastructure | Proof of Play helps builders create high-performance, serverless apps and games that can be extended or remixed by anyone. | 20% off at 500K/mo+ transactions | Message @adamfern on Telegram | | [Pyth Data Association](https://www.pyth.network/) | Oracle’s / Data Infrastructure | Get pure, real-time market data across every asset class—with more symbols and coverage than anywhere else. | Up to 2 months of free access to the Pyth Pro package ($10,000 monthly). | Register your interest [here](https://tally.so/r/3xG8E5)



Ensure to fill "Base Services Hub" to the 'How did you hear about Pyth?' question to benefit from such offer. |