getFeeHistory static method
Future<GetFeeHistoryReturnType>
getFeeHistory(
- GetFeeHistoryParameters getFeeHistoryParameters, {
- String configKey = 'default',
Implementation
static Future<GetFeeHistoryReturnType> getFeeHistory(
GetFeeHistoryParameters getFeeHistoryParameters, {
String configKey = 'default',
}) =>
_guardFuture(() async {
_logAction('getFeeHistory');
final result = await window.wagmiCore
.getFeeHistory(
configKey.toJS,
getFeeHistoryParameters.toJS,
)
.toDart;
return result.toDart;
});