Broadcast signed Solana transactions in order and confirm them
send_signed_transactionBroadcast fully signed Solana transactions sequentially, waiting for confirmation between each, to finalize agent minting on-chain.
Instructions
Broadcast one or more fully signed Solana transactions (base64) IN ORDER, polling each to confirmation before the next. Use it to complete the prepare_agent_mint flow: pass the wallet-signed txs_base64 array and the create/register sequencing (including the propagation race) is handled. Whatever the transactions do on-chain happens for real, so only send bytes you built and inspected.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| network | No | Cluster to broadcast on. Defaults to the configured network. | |
| tx_base64 | No | A single fully signed transaction, base64 encoded. | |
| txs_base64 | No | Fully signed transactions to broadcast in order (e.g. create then register). |