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

Last updated