Through this endpoint, customers can estimate the approximate fee for UTXO-based blockchains and EVM-based blockchains. It helps users understand the potential cost of executing a transaction before initiating it.
Blockchain string full name representation (eg. ethereum, bitcoin, litecoin, tron).
Network string full name representation (eg. mainnet, testnet).
Sender's vault ID.
In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context
is specified by the user.
In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context
is specified by the user.
Fee priority of the transaction - SLOW, STANDARD, FAST. Not applicable for Tron.
Strategy for preparing transaction - minimize_dust or optimize_size. Required for UTXO-based transactions.
Required. List of destination addresses.
Address of the destination.
Amount to transfer.
Required for EVM-based transactions. Not applicable for UTXO-based transactions.
Required for EVM-based transactions.
The contract address. Required only for EVM-based token transactions. Not applicable for UTXO and XRP.
Specifies the version of the API that incorporates this endpoint.
Defines the ID of the request. The requestId
is generated by Vaultody and it's unique for every request.
In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context
is specified by the user.
The message of the error if such occurred.
The calculated fee in blockchain native currency. Bitcoin for BTC, ETH for Ethereum etc.
For UTXO-based transactions. The max amount you can send from the vault with a single transaction request.
cb233681a8ee35665296c1824c1f67bc46691788
PSqeqRLap8rBc/wogNU1DeGGUPb2VyVtg6GiBOaBnYQ=
1681885776
zYgKeueoOq
{
"context": "yourExampleString",
"data": {
"item": {
"feePriority": "slow",
"prepareStrategy": "minimize_dust",
"recipients": [
{
"address": "0x928b77c4e9e8f4ad97592ec9caa953a0fa4730d9",
"amount": "0.001"
}
],
"senders": [
{
"address": "0xa94b8eca8703ad2804cb204976ac023b612c407e"
}
],
"tokenIdentifier": "0x1c7d4b196cb0c7b01d743fbc6116a902379c7238"
}
}
}
{
"apiVersion": "2024-05-09",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"item": {
"errorMessage": "INSUFFICIENT_FUNDS",
"feeInNative": "0.00001698",
"maxAmount": "10"
}
}
}