estimatesmartfee - Litecoin
Example code for the estimatesmartfee JSON-RPC method. Complete guide on how to use estimatesmartfee JSON-RPC in GetBlock Web3 documentation.
Estimates the approximate fee per kilobyte needed for a transaction to begin confirmation within conf_target blocks.
Parameters
conf_target
number
Confirmation target in blocks (1 - 1008).
estimate_mode
string
Optional. Mode: UNSET, ECONOMICAL, CONSERVATIVE.
Request
curl --location --request POST 'https://shared.eu-central-1.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"method": "estimatesmartfee",
"params": [6],
"id": "getblock.io"
}'import axios from 'axios';
const data = JSON.stringify({
"jsonrpc": "2.0",
"method": "estimatesmartfee",
"params": [6],
"id": "getblock.io"
});
const config = {
method: 'post',
url: 'https://shared.eu-central-1.getblock.io/<ACCESS-TOKEN>/',
headers: {
'Content-Type': 'application/json'
},
data: data
};
axios(config)
.then(response => console.log(JSON.stringify(response.data)))
.catch(error => console.log(error));Response
{
"result": {
"feerate": 0.00000998,
"blocks": 6
},
"error": null,
"id": "getblock.io"
}Response Parameters
feerate
number
Estimate fee rate in LTC/kB.
blocks
number
Block number where estimate was found.
Use Case
The estimatesmartfee method is essential for:
Fee estimation
Transaction optimization
Wallet fee selection
Cost prediction
Error Handling
403
Forbidden
Missing or invalid ACCESS-TOKEN.
Integration Notes
The estimatesmartfee method helps developers build robust applications that interact with the Litecoin blockchain.
Last updated
Was this helpful?