post https://api-sdk.lmnl.dev/api/wallet/get-approx-fees
This API is a request to fetch the estimated gas fees and rates for hot wallet transactions in UTXO and EVM blockchains.
Responses
This API is a request to fetch the estimated gas fees and rates for hot wallet transactions in UTXO and EVM blockchains.
xxxxxxxxxx
12curl --request POST \
--url https://api-sdk.lmnl.dev/api/wallet/get-approx-fees \
--header 'accept: application/json; charset=utf-8' \
--header 'content-type: application/json' \
--data '
{
"wallet": {
"coin": "eth",
"allToken": false
}
}
'
xxxxxxxxxx
10{
"success": true,
"data": {
"fees": "0.00072000000312",
"feeRate": "0.000014979",
"ERC20TokenFees": "0.00108000000468",
"maxFeePerGasGwei": "6.000000052",
"maxPriorityFeePerGasGwei": "6.000000000"
}
}