LaserStream and Sender are now live! Experience ultra-fast data streaming and optimized transaction sending. Learn about LaserStream | Learn about Sender
LaserStream and Sender are now live! Experience ultra-fast data streaming and optimized transaction sending. Learn about LaserStream | Learn about Sender
Returns the compressed token accounts that are partially or fully delegated to the given delegate.
curl --request POST \
--url https://mainnet.helius-rpc.com/ \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"id": "1",
"method": "getCompressedTokenAccountsByDelegate",
"params": {
"cursor": "3J98t1WpEZ73CNm",
"delegate": "11111116EPqoQskEM2Pddp8KTL9JdYEBZMGF3aq7V",
"limit": 1,
"mint": "11111116EPqoQskEM2Pddp8KTL9JdYEBZMGF3aq7V"
}
}'
{
"context": {
"slot": 100
},
"value": {
"cursor": "3J98t1WpEZ73CNm",
"items": [
{
"account": {
"address": "11111116EPqoQskEM2Pddp8KTL9JdYEBZMGF3aq7V",
"data": {
"data": "SGVsbG8sIFdvcmxkIQ==",
"dataHash": "11111112cMQwSC9qirWGjZM6gLGwW69X22mqwLLGP",
"discriminator": 100
},
"hash": "11111112cMQwSC9qirWGjZM6gLGwW69X22mqwLLGP",
"lamports": 100,
"leafIndex": 100,
"owner": "11111116EPqoQskEM2Pddp8KTL9JdYEBZMGF3aq7V",
"seq": 100,
"slotCreated": 100,
"tree": "11111116EPqoQskEM2Pddp8KTL9JdYEBZMGF3aq7V"
},
"tokenData": {
"amount": 100,
"delegate": "11111116EPqoQskEM2Pddp8KTL9JdYEBZMGF3aq7V",
"mint": "11111116EPqoQskEM2Pddp8KTL9JdYEBZMGF3aq7V",
"owner": "11111116EPqoQskEM2Pddp8KTL9JdYEBZMGF3aq7V",
"state": "initialized",
"tlv": "SGVsbG8sIFdvcmxkIQ=="
}
}
]
}
}
Successfully retrieved compressed token accounts by delegate from the Solana blockchain
The response is of type object
.
curl --request POST \
--url https://mainnet.helius-rpc.com/ \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"id": "1",
"method": "getCompressedTokenAccountsByDelegate",
"params": {
"cursor": "3J98t1WpEZ73CNm",
"delegate": "11111116EPqoQskEM2Pddp8KTL9JdYEBZMGF3aq7V",
"limit": 1,
"mint": "11111116EPqoQskEM2Pddp8KTL9JdYEBZMGF3aq7V"
}
}'
{
"context": {
"slot": 100
},
"value": {
"cursor": "3J98t1WpEZ73CNm",
"items": [
{
"account": {
"address": "11111116EPqoQskEM2Pddp8KTL9JdYEBZMGF3aq7V",
"data": {
"data": "SGVsbG8sIFdvcmxkIQ==",
"dataHash": "11111112cMQwSC9qirWGjZM6gLGwW69X22mqwLLGP",
"discriminator": 100
},
"hash": "11111112cMQwSC9qirWGjZM6gLGwW69X22mqwLLGP",
"lamports": 100,
"leafIndex": 100,
"owner": "11111116EPqoQskEM2Pddp8KTL9JdYEBZMGF3aq7V",
"seq": 100,
"slotCreated": 100,
"tree": "11111116EPqoQskEM2Pddp8KTL9JdYEBZMGF3aq7V"
},
"tokenData": {
"amount": 100,
"delegate": "11111116EPqoQskEM2Pddp8KTL9JdYEBZMGF3aq7V",
"mint": "11111116EPqoQskEM2Pddp8KTL9JdYEBZMGF3aq7V",
"owner": "11111116EPqoQskEM2Pddp8KTL9JdYEBZMGF3aq7V",
"state": "initialized",
"tlv": "SGVsbG8sIFdvcmxkIQ=="
}
}
]
}
}