getTransactionInfo method
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;
}