estimateGas method

Future<BigInt> estimateGas(
  1. Map<String, dynamic> txParams
)

Estimates gas for txParams with 20% buffer.

Implementation

Future<BigInt> estimateGas(Map<String, dynamic> txParams) async {
  return await _estimateGas(txParams);
}