FeeCalculator class

Constructors

FeeCalculator()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

calculateFeePerByte(RawTransaction transaction, int suggestedFeePerByte) Future<int>
Calculate the total fee for a transaction. This value is multiplied by the estimated size of the transaction in bytes to determine the total transaction fee.
calculateTransactionFee(int transactionSize, int suggestedFeePerByte) Future<int>
Calculate the total fee for a transaction. This value is multiplied by the estimated size of the transaction in bytes to determine the total transaction fee.
estimateTransactionSize(RawTransaction transaction) Future<int>
Returns the estimated encoded size of the transaction, including the signature.