simulate method

Future<void> simulate()

Simulates the execution of this using a preapply

It throws an error if anything wrong happens

Implementation

Future<void> simulate() async {
  await forge();
  sign();
  await preapply();
}