From 549e3c0d8a123bb9efe91d5c924b164fa3a0cab2 Mon Sep 17 00:00:00 2001 From: qingyangkong Date: Mon, 11 May 2026 21:00:59 +0800 Subject: [PATCH 1/4] fix bug in sample codes --- src/content/data-feeds/svr-feeds/searcher-onboarding-atlas.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/content/data-feeds/svr-feeds/searcher-onboarding-atlas.mdx b/src/content/data-feeds/svr-feeds/searcher-onboarding-atlas.mdx index cab9e7c6ef4..a3776ec5d9e 100644 --- a/src/content/data-feeds/svr-feeds/searcher-onboarding-atlas.mdx +++ b/src/content/data-feeds/svr-feeds/searcher-onboarding-atlas.mdx @@ -737,6 +737,8 @@ func runSearcherGateway() { } } + subscribe() + // Main loop for { select { From 3369b30bad780b5f72bea33cf7657535d278a24e Mon Sep 17 00:00:00 2001 From: qingyangkong Date: Mon, 11 May 2026 21:13:00 +0800 Subject: [PATCH 2/4] add eip55 tip for query api --- .../data-feeds/svr-feeds/searcher-onboarding-atlas.mdx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/content/data-feeds/svr-feeds/searcher-onboarding-atlas.mdx b/src/content/data-feeds/svr-feeds/searcher-onboarding-atlas.mdx index a3776ec5d9e..1d43f3c27da 100644 --- a/src/content/data-feeds/svr-feeds/searcher-onboarding-atlas.mdx +++ b/src/content/data-feeds/svr-feeds/searcher-onboarding-atlas.mdx @@ -994,6 +994,10 @@ FastLane provides a query API for solvers to trace what happened to their solver **URL:** `https://solver-query-api-fra.fastlane-labs.xyz/` + + **Example request:** ```json @@ -1036,6 +1040,10 @@ This won't happen if you inherit from `SolverBase`. If the solver operation arrives after the auction duration has elapsed, it will not be included. The query API will communicate the error `"solver operation not found"`. +**Querying the API without an EIP-55 checksummed address** + +If you query the [solver operation results API](#tracing-solver-operation-results) using an address (e.g. `solverOperationFrom`) that is not in [EIP-55](https://eips.ethereum.org/EIPS/eip-55) checksum format, the lookup will fail and the query API will return `"solver operation not found"` — even if your solver operation was actually received and processed. Always pass checksummed addresses when calling the query API. + **Not enough bonded atlEth** Read the [bonding guide](#bond-bridged-eth-to-the-auction-contract) to learn how to bond atlETH. This error will be communicated in the query API response. From a7733321103a6278dd2db5075ce06944c17f6714 Mon Sep 17 00:00:00 2001 From: qingyangkong Date: Mon, 11 May 2026 21:44:43 +0800 Subject: [PATCH 3/4] fix format --- .../data-feeds/svr-feeds/searcher-onboarding-atlas.mdx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/content/data-feeds/svr-feeds/searcher-onboarding-atlas.mdx b/src/content/data-feeds/svr-feeds/searcher-onboarding-atlas.mdx index 1d43f3c27da..4eaca970757 100644 --- a/src/content/data-feeds/svr-feeds/searcher-onboarding-atlas.mdx +++ b/src/content/data-feeds/svr-feeds/searcher-onboarding-atlas.mdx @@ -995,7 +995,10 @@ FastLane provides a query API for solvers to trace what happened to their solver **URL:** `https://solver-query-api-fra.fastlane-labs.xyz/` **Example request:** From b88c30a3e0065fd0fe05e7490ce76a45b38b1290 Mon Sep 17 00:00:00 2001 From: devin distefano Date: Thu, 14 May 2026 17:18:30 -0500 Subject: [PATCH 4/4] llms --- src/content/data-feeds/llms-full.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/content/data-feeds/llms-full.txt b/src/content/data-feeds/llms-full.txt index 272a908d29e..d57d52ca613 100644 --- a/src/content/data-feeds/llms-full.txt +++ b/src/content/data-feeds/llms-full.txt @@ -5991,6 +5991,8 @@ func runSearcherGateway() { } } + subscribe() + // Main loop for { select { @@ -6246,6 +6248,13 @@ FastLane provides a query API for solvers to trace what happened to their solver **URL:** `https://solver-query-api-fra.fastlane-labs.xyz/` + + **Example request:** ```json @@ -6288,6 +6297,10 @@ This won't happen if you inherit from `SolverBase`. If the solver operation arrives after the auction duration has elapsed, it will not be included. The query API will communicate the error `"solver operation not found"`. +**Querying the API without an EIP-55 checksummed address** + +If you query the [solver operation results API](#tracing-solver-operation-results) using an address (e.g. `solverOperationFrom`) that is not in [EIP-55](https://eips.ethereum.org/EIPS/eip-55) checksum format, the lookup will fail and the query API will return `"solver operation not found"` — even if your solver operation was actually received and processed. Always pass checksummed addresses when calling the query API. + **Not enough bonded atlEth** Read the [bonding guide](#bond-bridged-eth-to-the-auction-contract) to learn how to bond atlETH. This error will be communicated in the query API response.