/broadcast_tx_async

Returns right away, with no response. Does not wait for CheckTx nor DeliverTx Response.

Parameters:

tx - string, The transaction

Example:

// Request
curl -X GET -H 'Content-Type: application/json'  https://froopyland.blockpi.network/rpc/v1/<your-api-key>/broadcast_tx_async?tx=<the transaction>

// Result
{
    "jsonrpc": "2.0",
    "result": {
        "code": 0,
        "codespace": "",
        "data": "",
        "hash": "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855",
        "log": ""
    }
}                    

Last updated