Batch Transaction
Sending transactions in a group to Go Gateway with one request
REQUEST
Method: blxr_batch_tx
Parameters
Parameter
Description
transactions
[Mandatory] List of raw transactions bytes without 0x
prefix.
blockchain_network
[Optional, default: Mainnet] Blockchain network name. Use with Cloud-API when working with BSC. Available options are: Mainnet
for ETH Mainnet, BSC-Mainnet
for BSC Mainnet.
node_validation
[Optional, default: False] Transactions are sent to the blockchain node for validation, and the Gateway returns any error message received in response.
Example - Request Body(Go Gateway Only)
{
"jsonrpc": "2.0",
"id": 1,
"method": "blxr_batch_tx",
"params": {
"transactions": ["f86b0184...e0b58219", "f86b0184...49b22ac0"]
}
}