BNB Kolibrio OFA Searcher Connection
Summary: The interface is fully compatible with MEV Blocker. Connect to the WebSocket, include the X-Bev-Signature header, subscribe to partial pending transactions, and receive notifications via JSON-RPC. Construct your backrun bundle from the incoming signals and submit it using eth_sendBundle.
Endpoint
wss://bev-relay.kolibr.io/bsc
https://bev-relay.kolibr.io/bsc
Required HTTP header when establishing the WebSocket session:
X-Bev-Signature: <signature>
The X-Bev-Signature header is used for authentication/authorization. The signature format and keys are provided by the Kolibrio team.
Subscription
After a successful connection, send the following JSON‑RPC request to subscribe:
{"method": "eth_subscribe","params": ["mevblocker_partialPendingTransactions"]}Expected response:
{"jsonrpc": "2.0", "id": 1, "result": "0xd58bbbc0f5190962eff01b6f0ec17724"}After this, you’ll start receiving eth_subscription notifications when new relevant transactions appear.
Incoming Signal Format
Example notification:
Note: The bacrkun bid should be sent to in WBNB or BNB to revshareAddress Note: All numeric fields are hex‑encoded.
Sending a Bundle
Once you’ve built your signed backrun transaction, send it as a bundle via the same WebSocket or simple HTTP POST request:
Best Practices & Constraints
Send your bid/payment to the provided revshareAddress
Treat the target transaction
hashas a 32‑byte hex string (with0xprefix).Both transaction hashes and raw signed transactions are accepted in
txs.The order of
txsmatters: target transaction first, followed by your backrun txs.
Example Flow
Open WS connection →
wss://bev-relay.kolibr.io/basewithX-Bev-Signature.Send
eth_subscribetomevblocker_partialPendingTransactions.Receive
eth_subscriptionmessages withresultwithrevshareAddressProcess and build your backrun transaction with WBNB or BNB transfer to
revshareAddress.Send
eth_sendBundlecontaining the target hash and your signed transaction. using same ws endpoint (wss://bev-relay.kolibr.io/bsc) or the https one (https://bev-relay.kolibr.io/bsc)
Security Notes
Keep your signing keys and
X-Bev-Signaturesecrets secure.
Last updated