getReferenceGasPrice method

Future<BigInt> getReferenceGasPrice()

Implementation

Future<BigInt> getReferenceGasPrice() async {
  final data = await client.request('suix_getReferenceGasPrice', []);
  return BigInt.parse(data);
}