API Reference

eth_getTransactionCount - DogeOS

Returns the number of transactions sent from an address.

Returns the number of transactions sent from an address.

PARAMETERS

  1. Address - (required) A 20-byte address.
  2. 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"
}
Language
Click Try It! to start a request and see the response here!