Private Transactions
Submission Endpoint
Parameters
Parameter
Description
Instructions & Notes
Example
wscat -c wss://api.blxrbdn.com/ws --header "Authorization: <YOUR-AUTHORIZATION-HEADER>"
> {"jsonrpc": "2.0", "id": 1, "method": "blxr_tx", "params":
{"transaction": "f86b0184...e0b58219", "blockchain_network": "X-Layer-Mainnet"}}
< ...curl -X POST https://api.blxrbdn.com \
-H "Authorization: <YOUR-AUTHORIZATION-HEADER>" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "blxr_tx",
"params": {
"transaction": "f86b0184...e0b58219",
"blockchain_network": "X-Layer-Mainnet"
}
}'RESPONSE
{
"jsonrpc": "2.0",
"id": "1",
"result": {
"tx_hash": "ffd59870844e5...bfa54a69"
}
} Last updated