Get Signatures For Asset
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": "getSignaturesForAsset",
"params": {
"id": "",
"page": 1,
"limit": 100
}
}'
Example Response
{
"jsonrpc": "2.0",
"result": {
"total": 2,
"limit": 100,
"page": 1,
"before": "1",
"after": "0",
"items": [
[
"signature",
"MintV1"
],
[
"signature",
"CreateTree"
]
]
},
"id": "string"
}