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

Solana Send Batch Curl Example

介紹BlockRazor Solana Fast模式下Send Batch的Curl請求示例

請求示例

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

返回示例

正常

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

異常

最後更新於

這有幫助嗎?