What is PrivateBlocks?

PrivateBlocks sends your transactions to all builders with the ease of being able to exclude specific builders you do not trust.

RPC Endpoint

https://api.privateblocks.xyz

Getting Started

HTTPS POST

curl https://privateblocks.xyz/rpc \
    -X POST \
    -H "Content-Type: application/json"
    -d '{
         "id": "1", 
         "method": "pb_sendPrivateRawTransaction", 
         "params": {
            "transaction": ["0xab..ab"],
            "excludedBuilders": {
		"smithbot", 
		"payload"
	     }
          }
        }'

Last updated