GetTransactionCount
Given an account address, returns the number of transactions the account has made.
String - Account address
String - Block number to query for transaction count. Usually latest, which uses the most recent block.
String - Number of transactions the account has made.
curl -d '{
"jsonrpc": "2.0",
"method": "hmy_getTransactionCount",
"params": [
"one1rgl8538wyygp6ltyl0efkrm0rlpftaertskl80",
"latest"
],
"id": 1
}' -H "Content-Type:application/json" -X POST "https://api.s0.b.hmny.io"{
"jsonrpc": "2.0",
"id": 1,
"result": "0x9"
}String - Account address
Number - Block number to query for transaction count.
Number - Number of transactions the account has made.
curl -d '{
"jsonrpc": "2.0",
"method": "hmyv2_getTransactionCount",
"params": [
"one1rgl8538wyygp6ltyl0efkrm0rlpftaertskl80",
1
],
"id": 1
}' -H "Content-Type:application/json" -X POST "https://api.s0.b.hmny.io"{
"jsonrpc": "2.0",
"id": 1,
"result": 9
}