getCompressionSignaturesForTokenOwner

Retrieve the signatures of the transactions that have modified an owner’s compressed token accounts. Overview with RPC method guide.

post
Body
idstring · enumRequired

An ID to identify the request.

Possible values:
jsonrpcstring · enumRequired

The version of the JSON-RPC protocol.

Possible values:
methodstring · enumRequired

The name of the method to invoke.

Possible values:
Responses
200Success
application/json
post
POST / HTTP/1.1
Host: mainnet.helius-rpc.com
Content-Type: application/json
Accept: */*
Content-Length: 175

{
  "id": "test-account",
  "jsonrpc": "2.0",
  "method": "getCompressionSignaturesForTokenOwner",
  "params": {
    "cursor": "text",
    "limit": 1,
    "owner": "1111111AFmseVrdL9f9oyCzZefL9tG6UbvhMPRAGw"
  }
}
{
  "context": {
    "slot": 100
  },
  "value": {
    "cursor": "text",
    "items": [
      {
        "blockTime": 1714081554,
        "signature": "5J8H5sTvEhnGcB4R8K1n7mfoiWUD9RzPVGES7e3WxC7c",
        "slot": 100
      }
    ]
  }
}

Last updated