Skip to main content

Get Signatures For Asset V2

Get transaction signatures for compressed asset.

Parameters

  • id string, required Compressed asset key.

Example Request

curl --request POST --url "<ENDPOINT>" --header 'Content-Type: application/json' --data '{
"jsonrpc": "2.0",
"id": "string",
"method": "getSignaturesForAssetV2",
"params": {
"id": "",
"page": 1,
"limit": 100
}
}'

Example Response

{
"jsonrpc": "2.0",
"result": {
"total": 2,
"limit": 100,
"page": 1,
"before": "1",
"after": "0",
"items": [
{
"signature": "",
"instruction": "MintV1",
"slot": 254155457
},
{
"signature": "",
"instruction": "CreateTree",
"slot": 254155301
}
]
},
"id": "string"
}