Gets the current gas price.
Future<BigInt> getGasPrice() async { final result = await call<String>('eth_gasPrice', []); return BigInt.parse(result.substring(2), radix: 16); }