getMaxPriorityFeePerGas method
Implementation
Future<EtherAmount> getMaxPriorityFeePerGas() async {
final data = await _makeRPCCall<String>('eth_maxPriorityFeePerGas');
return EtherAmount.fromUnitAndValue(EtherUnit.wei, hexToInt(data));
}
Future<EtherAmount> getMaxPriorityFeePerGas() async {
final data = await _makeRPCCall<String>('eth_maxPriorityFeePerGas');
return EtherAmount.fromUnitAndValue(EtherUnit.wei, hexToInt(data));
}