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, and Polygon-Mainnet for Polygon Mainnet.

validators_only

[Optional, default: False] Support for semi private transactions in all networks. See section Semi-Private Transaction for more info.

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"]
	}
}

Last updated