curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/scanshieldedtrc20notesbyovk \
--header 'Content-Type: application/json' \
--data '{
"start_block_index": 10000000,
"end_block_index": 10001000,
"ovk": "0x06e5f6789012345678901234567890123456789012345678901234567890abcdef12",
"shielded_TRC20_contract_address": "TGzz8gjYiYRqpfmDwnLxfgPuLVNmpCswVp"
}'
{
"note_txs": [
{
"block_num": 123,
"tx_id": "<string>",
"index": 123,
"note": {}
}
]
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/scanshieldedtrc20notesbyovk \
--header 'Content-Type: application/json' \
--data '{
"start_block_index": 10000000,
"end_block_index": 10001000,
"ovk": "0x06e5f6789012345678901234567890123456789012345678901234567890abcdef12",
"shielded_TRC20_contract_address": "TGzz8gjYiYRqpfmDwnLxfgPuLVNmpCswVp"
}'
{
"note_txs": [
{
"block_num": 123,
"tx_id": "<string>",
"index": 123,
"note": {}
}
]
}
start_block_index
— the starting block number for scanningend_block_index
— the ending block number for scanningovk
— the outgoing viewing key for decrypting sent notesshielded_TRC20_contract_address
— the shielded TRC20 contract address to scannote_txs
— array of found outgoing shielded note transactionsblock_num
— block number where notes were foundtx_id
— transaction ID containing the notesindex
— index of the note within the transactionnote
— the decrypted note details including value and recipient informationwallet/scanshieldedtrc20notesbyovk
method is used for:
Successfully scanned for outgoing shielded notes
The response is of type object
.