Sending Commitments
To send your first commitment, you will need to connect to the mev-commit Testnet. This will allow you to consume bids incoming to the network and submit commitments. To do this, you’ll want to run an emulator to simulate accepting and rejecting bids.
As an example, a dummy decisioning system is implemented in the repository. This dummy system accepts all the bids it gets. To try it, you can open a new terminal and run the following command:
Configuring custom logic to process bids and send Commitments
We can take a deeper look at how you can add custom logic to decision on the sending of commitments.
Integrating Bid Processing in Your System
To integrate bid processing in your system using the Provider API, follow these steps to receive bid information and send back processed bids:
Implement the gRPC Service
Implement the Provider service as outlined in the providerapi.proto. This requires setting up a server that can manage RPC methods, with a particular emphasis on the reception of bids and response of commitment authorizations.
Receive Bids
Utilize the ReceiveBids RPC method to listen for incoming bids from clients. This method streams bid messages to your server. The structure of the bid is as follows:
The raw transactions are optionally provided by the bidder. If provided the order of the transaction hashes in txHashes
will be the same as the order or the corresponding rawTransactions
.
Below is an image of the flow through which bids would be received through the gRPC API
Process Bids
For each received bid, implement your custom logic to validate and process these bids. This could involve checking the bid’s validity and feasibility based on orderflow, computing the effective gas price, and deciding whether to accept or reject the bid.
Send Processed Bid Responses (Accept/Reject)
After processing each bid, construct a BidResponse message indicating the outcome. This message should include the bid’s digest and a status indicating acceptance or rejection.
At a high level, to commit to a bid, your code must send a STATUS_ACCEPTED
with the bid digest specified, and correspondingly STATUS_REJECTED
to reject the bid.
Server Setup
Deploy your gRPC server on suitable infrastructure, ensuring it’s accessible to clients. Configure necessary network settings for security and connectivity. Example Server Implementation in Go:
This should help you integrate bid processing into your system, allowing you to receive bid information and send back processed bids as commitments.