getFeeHistory static method

Future<GetFeeHistoryReturnType> getFeeHistory(
  1. GetFeeHistoryParameters getFeeHistoryParameters, {
  2. 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;
    });