relay_tx - Monero
Example code for the relay_tx json-rpc method. Сomplete guide on how to use relay_tx json-rpc in GetBlock.io Web3 documentation.
Parameters
txids
- array of string
list of transaction IDs to relay
Request
curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{"jsonrpc": "2.0",
"method": "relay_tx",
"params": {"txids": "9fd75c429cbe52da9a52f2ffc5fbd107fe7fd2099c0d8de274dc8a67e0c98613"},
"id": "getblock.io"}'
Response
{
"id": "getblock.io",
"jsonrpc": "2.0",
"result": {
"credits": 0,
"status": "OK",
"top_hash": "",
"untrusted": false
}
}
Last updated