Skip to main content

EstimateFee

EstimateFee attempts to query the internal fee estimator of the wallet to determine the fee (in sat/kw) to attach to a transaction in order to achieve the confirmation target.

Source: walletrpc/walletkit.proto

gRPC

rpc EstimateFee (EstimateFeeRequest) returns (EstimateFeeResponse);

REST

HTTP MethodPath
GET /v2/wallet/estimatefee/{conf_target}

Code Samples

const fs = require('fs');
const grpc = require('@grpc/grpc-js');
const protoLoader = require('@grpc/proto-loader');

const GRPC_HOST = 'localhost:10009'
const MACAROON_PATH = 'LND_DIR/data/chain/bitcoin/regtest/admin.macaroon'
const TLS_PATH = 'LND_DIR/tls.cert'

const loaderOptions = {
keepCase: true,
longs: String,
enums: String,
defaults: true,
oneofs: true,
};
const packageDefinition = protoLoader.loadSync(['lightning.proto', 'walletrpc/walletkit.proto'], loaderOptions);
const walletrpc = grpc.loadPackageDefinition(packageDefinition).walletrpc;
process.env.GRPC_SSL_CIPHER_SUITES = 'HIGH+ECDSA';
const tlsCert = fs.readFileSync(TLS_PATH);
const sslCreds = grpc.credentials.createSsl(tlsCert);
const macaroon = fs.readFileSync(MACAROON_PATH).toString('hex');
const macaroonCreds = grpc.credentials.createFromMetadataGenerator(function(args, callback) {
let metadata = new grpc.Metadata();
metadata.add('macaroon', macaroon);
callback(null, metadata);
});
let creds = grpc.credentials.combineChannelCredentials(sslCreds, macaroonCreds);
let client = new walletrpc.WalletKit(GRPC_HOST, creds);
let request = {
conf_target: <int32>,
};
client.estimateFee(request, function(err, response) {
console.log(response);
});
// Console output:
// {
// "sat_per_kw": <int64>,
// }

Messages

walletrpc.EstimateFeeRequest

Source: walletrpc/walletkit.proto

FieldgRPC TypeREST TypeREST Placement
conf_target
int32integerpath

walletrpc.EstimateFeeResponse

Source: walletrpc/walletkit.proto

FieldgRPC TypeREST Type
sat_per_kw
int64string