Future<BigInt> getMaxPriorityFeePerGas() async { final result = await _rpc('eth_maxPriorityFeePerGas', []) as String; return BigInt.parse(result.substring(2), radix: 16); }