getGasPrice method

Future<BigInt> getGasPrice()

Retrieves the current estimated gas price from the Aptos network.

Implementation

Future<BigInt> getGasPrice() async {
  final r = await provider.request(AptosRequestEstimateGasPrice());
  return BigInt.from(r.gasEstimate);
}