description |
---|
GetTransactionCount |
Given an account address, returns the number of transactions the account has made.
String
- Account addressString
- Block number to query for transaction count. Usuallylatest
, 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 addressNumber
- 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
}