From df43f15c91e1b15f07abf2ef90432d3733e3c90f Mon Sep 17 00:00:00 2001 From: alchemy-bot <80712764+alchemy-bot@users.noreply.github.com> Date: Mon, 13 Jul 2026 17:52:10 +0000 Subject: [PATCH] [docs-agent] Fix weekly link check: empty URLs + third-party excludes * debug-api-quickstart.mdx: point prestatetracer link to trace_call-vs-debug_tracecall#prestatetracer (was empty href). * throughput.mdx: render wss:// endpoints as inline code instead of empty-href markdown links. * lychee.toml: exclude tenderly.co (429), learnmeabitcoin.com (SSL to crawlers), bscscan.com (403 bot protection). Refs DOCS-138 --- content/api-reference/debug-api/debug-api-quickstart.mdx | 2 +- .../api-reference/pricing-resources/resources/throughput.mdx | 4 ++-- lychee.toml | 3 +++ 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/content/api-reference/debug-api/debug-api-quickstart.mdx b/content/api-reference/debug-api/debug-api-quickstart.mdx index 4b84dca2a..e7d9d321c 100644 --- a/content/api-reference/debug-api/debug-api-quickstart.mdx +++ b/content/api-reference/debug-api/debug-api-quickstart.mdx @@ -39,7 +39,7 @@ Common use cases for the Debug API come in all flavors. Below are popular ones: | Type | Parameter | Description | | ----------------- | ------------------------------------------------------------------- | ----------------------------------------------- | | Transaction Trace | [`callTracer`](/docs/reference/trace_call-vs-debug_tracecall#calltracer) | Trace of your transaction. | -| State difference | [`prestatetracer`]() | Ethereum state changed values of a transaction. | +| State difference | [`prestatetracer`](/docs/reference/trace_call-vs-debug_tracecall#prestatetracer) | Ethereum state changed values of a transaction. | ## Trace actions types diff --git a/content/api-reference/pricing-resources/resources/throughput.mdx b/content/api-reference/pricing-resources/resources/throughput.mdx index 7663ebe42..5049a4b98 100644 --- a/content/api-reference/pricing-resources/resources/throughput.mdx +++ b/content/api-reference/pricing-resources/resources/throughput.mdx @@ -100,7 +100,7 @@ To test out your implementation of retries, we created a test app on each networ #### WebSocket -[wss://eth-mainnet.g.alchemy.com/v2/J038e3gaccJC6Ue0BrvmpjzxsdfGly9n]() +`wss://eth-mainnet.g.alchemy.com/v2/J038e3gaccJC6Ue0BrvmpjzxsdfGly9n` ### Ethereum Sepolia, Polygon Amoy (and other testnets) @@ -110,7 +110,7 @@ To test out your implementation of retries, we created a test app on each networ #### WebSocket -[\]() +`wss://eth-sepolia.g.alchemy.com/v2/AxnmGEYn7VDkC4KqfNSFbSW9pHFR7PDO` *** diff --git a/lychee.toml b/lychee.toml index b08b0ebb9..950f8fbe8 100644 --- a/lychee.toml +++ b/lychee.toml @@ -57,6 +57,9 @@ exclude = [ ".*portal\\.zksync\\.io.*", # Intermittent ERR (CDN edge / bot challenge); page loads fine in browser ".*celoscan\\.io.*", # Bot protection blocks crawlers with 403 (Etherscan-family explorer) ".*bitsofco\\.de.*", # Intermittent connection failures from crawlers (page loads fine in browser) + ".*tenderly\\.co.*", # Rate-limits crawlers with 429 (page loads fine in browser) + ".*learnmeabitcoin\\.com.*", # SSL certificate error for crawler clients (page loads fine in browser) + ".*bscscan\\.com.*", # Bot protection blocks crawlers with 403 (Etherscan-family explorer) ]