For the complete documentation index, see llms.txt. This page is also available as Markdown.

Solana Send Batch Curl Example

This section introduces a Curl request example for Send Batch in BlockRazor Solana Transaction Sending mode.

Request Example

curl --request POST \
  --url http://frankfurt.solana.blockrazor.xyz:443/sendBatch \
  --header 'Content-Type: application/json' \
  --header 'apikey: $auth_token' \
  --data '{
  "transactions":["$base64_tx_1","$base64_tx_2","$base64_tx_3"],
  "mode": "fast"
}'

Response Example

Normal

{
  "result": [{
    "signature": "58pw71yy2LDSw......Kdx5akJeRGUTS9bwGctXcHPAu",
    "error": ""
  }],
  "error": ""
}

Abnormal

Last updated

Was this helpful?