Blink
  • Blink
    • Welcome to Blink
  • Get Started
    • Tx Originators
    • Integration
      • General
      • Wallets
      • Oracles
      • Bots
      • Individual Users
      • Security
    • Custom Configuration
    • API Reference
      • eth_sendRawTransaction
      • eth_sendPrivateTransaction
      • eth_getTransactionByHash
      • eth_sendBundle
      • eth_getTransactionCount
    • Misc
      • Privacy Policy
  • How it works
    • State Update Auction
    • Gas Recoveries
    • MEV
  • Additional Features
    • Gas Sponsored Swaps
  • Searchers
    • Integration
      • Listen To Transactions
        • MEVBlocker Compatible (V2)
        • MEVBlocker Compatible (V3)
        • V1 (Deprecated)
      • Bid on Transactions
      • Querying a Bundle
    • API Reference
      • eth_sendBundle
      • eth_cancelBundle
      • Page
  • Base
    • API Reference
    • How it works
    • Searchers
  • Solana
    • Searchers
      • Integration
        • Rust Decoding A Transaction
      • API Reference
        • sendBundle
        • getSignature
  • CAREERS
    • Senior Software Engineer
Powered by GitBook
On this page
  • Example request
  • Example response
  1. Get Started
  2. API Reference

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"
}

Previouseth_sendBundleNextMisc

Last updated 9 months ago