From fe18de55457eece8ecf2191290eb9dfca555493b Mon Sep 17 00:00:00 2001 From: pytek <168726635+Pytkopff@users.noreply.github.com> Date: Thu, 22 Jan 2026 13:00:08 +0100 Subject: [PATCH 1/4] docs: fix typo (extra space) in builder-codes Removed unnecessary whitespace inside the parenthesis. --- docs/base-chain/quickstart/builder-codes.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/base-chain/quickstart/builder-codes.mdx b/docs/base-chain/quickstart/builder-codes.mdx index ce3f27b59..16f26af03 100644 --- a/docs/base-chain/quickstart/builder-codes.mdx +++ b/docs/base-chain/quickstart/builder-codes.mdx @@ -16,7 +16,7 @@ Once your app is registered on [Base.dev](http://base.dev/), the Base App will a ## For App Developers -When you register on [base.dev](https://base.dev/), you will receive a **Builder Code**—a random string (e.g., `bc_b7k3p9da` ) that you'll use to generate your attribution suffix. +When you register on [base.dev](https://base.dev/), you will receive a **Builder Code**—a random string (e.g., `bc_b7k3p9da`) that you'll use to generate your attribution suffix. You can find your code anytime under **Settings** → **Builder Code**. From b6a551c6e683d91678e281cbb26c3be979b0d407 Mon Sep 17 00:00:00 2001 From: pytek <168726635+Pytkopff@users.noreply.github.com> Date: Sat, 24 Jan 2026 23:57:26 +0100 Subject: [PATCH 2/4] fix: correct step numbering and add alt text Fixed skipped step in "Custom trading links" numbering and added missing accessibility descriptions for images. --- docs/base-chain/tools/tokens-in-wallet.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/base-chain/tools/tokens-in-wallet.mdx b/docs/base-chain/tools/tokens-in-wallet.mdx index bf84406ef..2cb713e38 100644 --- a/docs/base-chain/tools/tokens-in-wallet.mdx +++ b/docs/base-chain/tools/tokens-in-wallet.mdx @@ -77,15 +77,15 @@ By sharing a unique link to your token’s asset page, your community can easily **How to get your custom link:** -**Step 1:** Grab your custom link for your token by navigating to the asset page on Coinbase Wallet +**Step 1:** Grab your custom link for your token by navigating to the asset page on Coinbase Wallet  -**Step 2:** Click the share button +**Step 2:** Click the share button  -![][image1] +![Share button location][image1] -![][image2] +![Sharing options menu][image2] -**Step 4:** Share it with your community – either by posting it as an official link on your social accounts or as a CTA on your website. +**Step 3:** Share it with your community – either by posting it as an official link on your social accounts or as a CTA on your website. ## Trending Swaps on Base From a98d8ae87cb4ea557a6c2e093f93f7a4ed033de5 Mon Sep 17 00:00:00 2001 From: pytek <168726635+Pytkopff@users.noreply.github.com> Date: Mon, 26 Jan 2026 18:29:48 +0100 Subject: [PATCH 3/4] Add example usage for wagmi's sendCalls --- tmp-builder-codes-outline.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tmp-builder-codes-outline.mdx b/tmp-builder-codes-outline.mdx index 60a9c818c..070493d18 100644 --- a/tmp-builder-codes-outline.mdx +++ b/tmp-builder-codes-outline.mdx @@ -93,6 +93,7 @@ Assume: *(Recommended path — shortest, safest, wallet-native)* +// Import experimental hook for ERC-5792 `import { useSendCalls } from 'wagmi/experimental'` `const dataSuffix = "0x1234abcd..." // provided by base.dev` @@ -101,6 +102,7 @@ Assume: `const { sendCalls } = useSendCalls()` `async function submit() {` +// Execute the transaction with the capability `await sendCalls({` `calls: [` `{` From 225eda8441da97ac420b44bfaff8a8aedd648b77 Mon Sep 17 00:00:00 2001 From: pytek <168726635+Pytkopff@users.noreply.github.com> Date: Mon, 26 Jan 2026 18:55:16 +0100 Subject: [PATCH 4/4] style: replace arrows with colons for better readability --- tmp-builder-codes-outline.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tmp-builder-codes-outline.mdx b/tmp-builder-codes-outline.mdx index 070493d18..58952a9c2 100644 --- a/tmp-builder-codes-outline.mdx +++ b/tmp-builder-codes-outline.mdx @@ -5,8 +5,8 @@ When you register on **base.dev**, we give you: -* **Builder Code** → a random string (e.g., `"k3p9da"`) -* **ERC-8021 Suffix** → already fully encoded as a hex string (e.g., `"0x…"`) +* **Builder Code**: a random string (e.g., `"k3p9da"`) +* **ERC-8021 Suffix**: already fully encoded as a hex string (e.g., `"0x…"`) You do **not** build, validate, or encode anything — you just use the suffix we provide.