Deposit & Withdrawal
Deposits

Deposit Tokens: Searchers deposit tokens into the Lighthouse contract to fund bidding fees.
Send
Deposited
Event: The server receives deposits instantly and updates searcher balances, avoiding redundant on-chain queries.Submit Bid: Searchers submit MEV bundles with a
BidMsg
; the server verifies that each bid is fully backed by the searcher’s deposit.Send Auction Closed Message: The server informs the chain of auction close, triggering settlement. The server deducts the winning bid and distributes it between Lighthouse and the rollup per a predefined ratio.
Withdrawals

Reserve Withdrawal: To withdraw, a searcher reserves a withdrawal. This enforces a delay to prevent inconsistencies. For example, ensuring the same deposit cannot be used simultaneously in a bid and a withdrawal.
Send
WithdrawalReserved
Event: Upon receiving the reservation event, the server marks the searcher as ineligible to bid. From this point, the searcher cannot submit bids.Withdraw: After the withdrawal window opens, the searcher withdraws their funds from the contract.
Send
Withdrew
Event: The server detects withdrawal and updates the searcher’s deposit balance.
Last updated