Transaction Broadcast
Broadcasts the transaction to the ledger.
ENDPOINT
POST https://api.data123.io/aleo/<API KEY>/v1/testnet3/transaction/broadcastBody
Type
Description
string
The serialized transaction to broadcast
Response
Parameter
type
Description
result
string
The status of the transaction broadcast attempt
Request
curl https://api.data123.io/aleo/<API KEY>/v1/testnet3/transaction/broadcast \
    -X POST \
    -d '{The serialized transaction to broadcast}'curl https://api.data123.io/aleo/<API KEY>/rpc/v1/testnet3 \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{"jsonrpc":"2.0","method":"transactionBroadcast","params":['{The serialized transaction to broadcast}'],"id":1}'Last updated