eth_getTransactionCount - Linea

Returns the number of transactions sent from an address.

Parameters

  • DATA, 20 Bytes - address
  • QUANTITY|TAG - Integer block number, or the string "latest", "earliest" or "pending", see the default block parameter.
params: [
		"0x3CF48a95B9592094fB751bD099399b10Dad2614E",
		"0x47fba"
];

Returns

QUANTITY - Integer of the number of transactions send from this address.


Example

Request

curl --location 'https://linea-mainnet.unifra.io/v1/{your-api-key}' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc": "2.0",
    "method": "eth_getTransactionCount",
    "params": [
        "0x3CF48a95B9592094fB751bD099399b10Dad2614E",
        "0x47fba"
    ],
    "id": "5e2c2af0-768e-4590-ab48-9cb7c93c8175"
}'
URL: https://eth-mainnet.unifra.io/v1/your-api-key
RequestType: POST
Body:
{
    "jsonrpc":"2.0",
    "method":"eth_getTransactionCount",
    "params":["0xc94770007dda54cF92009BFF0dE90c06F603a09f","latest"],
    "id":0
}

Result

{
    "jsonrpc": "2.0",
    "id": "b4315503-1aaf-4f09-8593-c79aac157e30",
    "result": "0x6"
}
Language
Click Try It! to start a request and see the response here!