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