getTransactionInfo method

Future<EVMTransactionInfo> getTransactionInfo({
  1. required String from,
  2. String? to,
  3. String? data,
  4. double? amountInEth,
})

Implementation

Future<EVMTransactionInfo> getTransactionInfo({
  required String from,
  String? to,
  String? data,
  double? amountInEth,
}) async {
  final res = await auroraRpcClient.getTransactionInfo(
    from: from,
    to: to,
    data: data,
    amountInEth: amountInEth,
  );
  return res;
}