You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/data-feeds/llms-full.txt
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5897,6 +5897,27 @@ After bonding atlETH and deploying their smart contract, solvers are finally abl
5897
5897
5898
5898
This guide uses Go and the [Atlas Go SDK](https://github.com/FastLane-Labs/atlas-sdk-go).
5899
5899
5900
+
### Parallel Auctions
5901
+
5902
+
On certain assets—primarily BTC and ETH feeds on BNB Chain, Base, and Arbitrum—two separate auctions are created in parallel by different Chainlink nodes for each liquidation opportunity. **These auctions are independent**: there is no matching or coordination between them.
5903
+
5904
+
**How the parallel auctions behave**
5905
+
5906
+
Both auctions represent the exact same liquidation opportunity, but:
5907
+
5908
+
- They are sent to the auction independently.
5909
+
- They can arrive at different times due to latency differences.
5910
+
- They may have slightly different deadlines, based on when each node receives the report.
5911
+
- It is effectively random which auction transaction lands first or succeeds onchain.
5912
+
5913
+
**Implication for bidding**
5914
+
5915
+
If you only bid on one auction, you have roughly a 50% chance of winning even if your bid is the highest. To guarantee coverage, you must bid on both auctions using the same strategy.
5916
+
5917
+
<Aside type="caution" title="Required: Bid on Both Parallel Auctions" />
5918
+
5919
+
Duplicate auctions were introduced to improve landing guarantees by increasing the probability that at least one auction succeeds onchain.
5920
+
5900
5921
### 1. Communicate with the Searcher Gateway
5901
5922
5902
5923
Searchers communicate with the system through the Searcher Gateway, which serves as the entry point for reading user operations and submitting solutions.
Copy file name to clipboardExpand all lines: src/content/data-feeds/svr-feeds/searcher-onboarding-atlas.mdx
+29Lines changed: 29 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -639,6 +639,35 @@ After bonding atlETH and deploying their smart contract, solvers are finally abl
639
639
640
640
This guide uses Go and the [Atlas Go SDK](https://github.com/FastLane-Labs/atlas-sdk-go).
641
641
642
+
### Parallel Auctions
643
+
644
+
On certain assets—primarily BTC and ETH feeds on BNB Chain, Base, and Arbitrum—two separate auctions are created in parallel by different Chainlink nodes for each liquidation opportunity. **These auctions are independent**: there is no matching or coordination between them.
645
+
646
+
**How the parallel auctions behave**
647
+
648
+
Both auctions represent the exact same liquidation opportunity, but:
649
+
650
+
- They are sent to the auction independently.
651
+
- They can arrive at different times due to latency differences.
652
+
- They may have slightly different deadlines, based on when each node receives the report.
653
+
- It is effectively random which auction transaction lands first or succeeds onchain.
654
+
655
+
**Implication for bidding**
656
+
657
+
If you only bid on one auction, you have roughly a 50% chance of winning even if your bid is the highest. To guarantee coverage, you must bid on both auctions using the same strategy.
658
+
659
+
<Asidetype="caution"title="Required: Bid on Both Parallel Auctions">
660
+
<ul>
661
+
<li>
662
+
Always submit bids to <strong>both</strong> auctions when two are created for the same liquidation opportunity.
663
+
</li>
664
+
<li>Avoid logic that limits bidding to a single auction per price update.</li>
665
+
<li>Latency and timing differences between parallel auctions are expected and unavoidable.</li>
666
+
</ul>
667
+
</Aside>
668
+
669
+
Duplicate auctions were introduced to improve landing guarantees by increasing the probability that at least one auction succeeds onchain.
670
+
642
671
### 1. Communicate with the Searcher Gateway
643
672
644
673
Searchers communicate with the system through the Searcher Gateway, which serves as the entry point for reading user operations and submitting solutions.
0 commit comments