Sends transaction and returns the guaranteed execution status and results
Sends transaction and returns the guaranteed execution status and results
curl -i -X POST \
https://rpc.mainnet.fastnear.com/ \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "fastnear",
"method": "send_tx",
"params": {
"signed_tx_base64": "ExampleBase64EncodedTransaction",
"wait_until": "EXECUTED_OPTIMISTIC"
}
}'{ "jsonrpc": "2.0", "id": "string", "result": { "final_execution_status": "NONE", "receipts": [ … ], "receipts_outcome": [ … ], "status": {}, "transaction": {}, "transaction_outcome": {} }, "error": { "code": 0, "message": "string", "data": {} } }