queryTxByAddr method
zeniq_queryTxByAddr
Implementation
Future<JsonList> queryTxByAddr({
required String address,
required dynamic startBlock,
required dynamic endBlock,
num maxTx = 10000,
}) async {
final response = await _call<JsonList>(
'zeniq_queryTxByAddr',
args: [
address,
dynToHex(startBlock),
dynToHex(endBlock),
maxTx.toHexWithPrefix,
],
);
return response;
}