SOL Protect RPC
Front-running protection for transactions on the Solana Network
SOL Protect RPC offers front-running protection for transactions on the Solana Mainnet Beta network. Transactions sent to this endpoint would experience a minimal chance of getting attacked, as bloXroute dynamically identifies low-risk validators, which are responsible for handling the transactions. This approach is similar to submitting transaction with fastBestEffort
parameter in Solana Trader API.
Sample Request to Submit Transaction
# request syntax follows official solana http rpc specs
curl https://sol-protect.rpc.blxrbdn.com -s -X POST -H "Content-Type: application/json" -d '
{
"jsonrpc": "2.0",
"id": 1,
"method": "sendTransaction",
"params": [
"4hXT...naAT"
]
}
'
Last updated