From 29486937f57b428bf5ae802d5b05128c79fc1310 Mon Sep 17 00:00:00 2001 From: oluwadareab12 Date: Wed, 22 Jul 2026 20:10:26 +0100 Subject: [PATCH] docs: fix broken verified-token list link in relay handler The relay handler page linked twice to /docs/api/verified-tokens#gettokenlist, which does not exist (no page, no redirect, no getTokenList anchor). Both links now point to the Tempo Token List Registry at /docs/quickstart/tokenlist and its "Token list API endpoints" section, which documents the /list/{chain_id} endpoint the relay uses to load fee-token candidates. --- src/pages/docs/server/relay-handler.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/docs/server/relay-handler.mdx b/src/pages/docs/server/relay-handler.mdx index 79713aaf..22de2cc5 100644 --- a/src/pages/docs/server/relay-handler.mdx +++ b/src/pages/docs/server/relay-handler.mdx @@ -21,7 +21,7 @@ const handler = Handler.relay({ }) ``` -By default, the relay configures Viem clients for Tempo mainnet and testnet and loads fee-token candidates from the [Tempo API verified-token list](/docs/api/verified-tokens#gettokenlist). Pass `apiKey` to authenticate the built-in RPC and verified-token requests. When you omit it, the clients use each chain's default Viem transport and the verified-token request is unauthenticated. +By default, the relay configures Viem clients for Tempo mainnet and testnet and loads fee-token candidates from the [Tempo API verified-token list](/docs/quickstart/tokenlist#token-list-api-endpoints). Pass `apiKey` to authenticate the built-in RPC and verified-token requests. When you omit it, the clients use each chain's default Viem transport and the verified-token request is unauthenticated. :::info The built-in client defaults to mainnet when a request does not specify a chain. Use testnet chain ID `42431` with Sandbox API keys. @@ -570,7 +570,7 @@ When you use [`Provider.relay`](https://accounts.tempo.xyz/docs/api/provider#rel - **Type:** `(chainId: number) => readonly Address[] | Promise` - **Optional** -Returns candidate token addresses for fee-token resolution. By default, the relay loads the [Tempo API verified-token list](/docs/api/verified-tokens#gettokenlist) for mainnet and testnet. Pass a resolver to replace these candidates. For additional chains, provide both `getClient` and `resolveTokens`. +Returns candidate token addresses for fee-token resolution. By default, the relay loads the [Tempo API verified-token list](/docs/quickstart/tokenlist#token-list-api-endpoints) for mainnet and testnet. Pass a resolver to replace these candidates. For additional chains, provide both `getClient` and `resolveTokens`. ```ts const handler = Handler.relay({