eth_getTransactionCount

If eth_getTransactionCount is submitted with the "pending" param Blink will intercept the call, check its data for any transactions in the last 24 seconds (2 blocks) and return the highest nonce we have received.

All calls with "latest" or "earliest" will be forwarded onto an Ethereum node.

This endpoint is default disabled as it isn't relevant for most originators, it can be enabled for your custom endpoint.

Example request

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "eth_getTransactionCount",
  "params": [
    "0x4838B106FCe9647Bdf1E7877BF73cE8B0BAD5f97",
    "pending"
  ]
}

Example response

{
   "id" : 1,
   "jsonrpc" : "2.0",
   "result" : "0x31"
}

Last updated