List of BSC Validators

REQUEST

Method: bsc_mev_validators

Returns a list of validators that accept MEV blocks from bloXroute

Parameters:

Mandatory ParametersDescriptions

blockchain_network

Blockchain network name. Must be BSC-Mainnet.

Examples (Cloud API)

curl https://mev.api.blxrbdn.com \
    -X POST \
    -H "Content-Type: application/json" \
    -H "Authorization: <YOUR-AUTHORIZATION-HEADER>" \
    -d '{
         "id": "1", 
         "method": "bsc_mev_validators", 
         "params": {
           "blockchain_network": "BSC-Mainnet"
         }
        }'

RESPONSE

Result FieldDescription

validators

List of validator wallet addresses that accept MEV blocks.

{
  "id":"1",
  "result": {
    "validators":
      ["0x18a...a09","0xe91..c10"]
    },
   "jsonrpc":"2.0"
}

Last updated