Bid on Polygon transactions

Polygon is the only chain that works differently than Ethereum and BNB. There are no builders on Polygon, so we rely on a partner called FastLane to run the auctions.

The backrun transaction on Polygon needs to call the Fastlane auction contract at:

0x6DEDB422f46fcEaEf2D7A1C26650E6A87F0d55eE

The backrun transaction is required to call the submitFlashBidWithRefund endpoint with:

  • at least 1 MATIC of bid amount

  • the refund address must be:

    0x1E8e81dC3B221885b386e3d1c9efe93fc2863B24
  • the oppTxHash must be the transaction target's hash

If your bid is not valid, you will receive an error from relay url explaining what the issue is. Bids must be submitted to the Merkle bundle relay https://mempool.merkle.io/relay with the following format:

// POST https://mempool.merkle.io/relay

{
    "method": "eth_sendBundle",
    "jsonrpc": "2.0",
    "params": [
        {
            "txs": [
                "0x....", // the hash of the target transaction
                "0x....", // your signed backrun
            ]
        }
    ]
}

Last updated