We can check the config of any running bundler.

A sample request through curl like this can be used, with any Skandha bundler deployment being the endpoint. This can be run in any command line.

skandha_config is the method.

curl --location 'https://polygon-bundler.etherspot.io/' \
--header 'Content-Type: application/json' \
--data '{
    "id": 3,
    "method": "skandha_config",
    "jsonrpc": "2.0"
}'

A successful response will look like this:

{
    {
        "jsonrpc":"2.0",
        "id":3,
        "result": {
            "chainId":137,
            "flags": { 
                "unsafeMode":false,
                "testingMode":false,
                "redirectRpc":true
                },
            "entryPoints":["0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789"],
            "beneficiary":"0xdCdD0DDEaA0407C26DFcD481De9A34e1C55F8d54",
            "relayer":"0xdCdD0DDEaA0407C26DFcD481De9A34e1C55F8d54",
            "minInclusionDenominator":10,
            "throttlingSlack":10,
            "banSlack":10,
            "minSignerBalance":"0.1 eth",
            "multicall":"0xcA11bde05977b3631167028862bE2a173976CA11",
            "estimationStaticBuffer":21000,"validationGasLimit":10000000,
            "receiptLookupRange":1024,"etherscanApiKey":false,
            "conditionalTransactions":false,"rpcEndpointSubmit":false,
            "gasPriceMarkup":2000,"enforceGasPrice":false,
            "enforceGasPriceThreshold":1000,
            "eip2930":false
        }
    }
}