Retrieves the current estimated gas price from the Aptos network.
Future<BigInt> getGasPrice() async { final r = await provider.request(AptosRequestEstimateGasPrice()); return BigInt.from(r.gasEstimate); }