#
get_estimation
The get_estimation
RPC method provides the estimated confirmation time (in block intervals) for a given transaction, given its fee and the current available hashrate.
#
Parameters
#
Request body example
{
"jsonrpc": "2.0",
"id": 1,
"method": "get_estimation",
"params": {
"tx": "0x……ff"
}
}
curl -s --data '{"jsonrpc": "2.0","id": "1","method": "get_estimation","params":{"tx":"0x……ff" }' -H "Content-Type: application/json" -H "Authorization: Bearer ${TOKEN}" -X POST ${URL}```
Coming soon
Coming soon
Coming soon
#
Response body example
{
"jsonrpc": "2.0",
"id": 1,
"error": null,
"result": {
"block_intervals": 38
}
}