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. Solana
  2. Searchers
  3. API Reference

getSignature

Note this API can only be called 30 seconds after the transaction has appeared on the web socket, calling it before then will return an empty string.

It currently uses a cache so it doesn't have historical data. This means after some period of time hashed_user_signature can no longer be queried. In the near future we'll be changing this to full historical data.

Example Request

{
    "id": 1,
    "jsonrpc": "2.0",
    "method": "getSignature",
    "params": ["hashed_user_signature"]
}

Example Response

{
    "id": 1,
    "jsonrpc": "2.0",
    "result": "real_user_signature"
}

PrevioussendBundleNextSenior Software Engineer

Last updated 10 months ago