estimateFee static method
Implementation
static BigInt estimateFee({
required TxSizeEstimate sizeEstimate,
required int satPerVbyte,
}) {
return BigInt.from(sizeEstimate.vsize) * BigInt.from(satPerVbyte);
}
static BigInt estimateFee({
required TxSizeEstimate sizeEstimate,
required int satPerVbyte,
}) {
return BigInt.from(sizeEstimate.vsize) * BigInt.from(satPerVbyte);
}