post https://dogeos-testnet.unifra.io/v1//eth_getTransactionCount
Returns the number of transactions sent from an address.
Returns the number of transactions sent from an address.
PARAMETERS
Address
- (required) A 20-byte address.Block Number
- (required) An integer block number, or the string"latest"
,"earliest"
or"pending"
, see the default block parameter.
REQUEST
{
"jsonrpc": "2.0",
"method": "eth_getTransactionCount",
"params": [
"0x871f1181AA63c988325539cF4b502E092595B50E",
"latest"
],
"id": 0
}
RESPONSE
Result
- An integer of the number of transactions sent from this address.
{
"jsonrpc": "2.0",
"id": 0,
"result": "0x59d"
}