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. 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..4eaca970757 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 { @@ -992,6 +994,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 @@ -1034,6 +1043,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.