estimate method

Future<void> estimate()

Estimates this

It sets the counters of the different operations, and computes the limits and the fees of this

Implementation

Future<void> estimate() async {
  await computeCounters();
  await computeLimits();
  await computeFees();
}