curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getexpandedspendingkey \
--header 'Content-Type: application/json' \
--data '{
"value": "0x02a1b2c3d4e5f6789012345678901234567890123456789012345678901234567890"
}'
{
"ask": "<string>",
"nsk": "<string>",
"ovk": "<string>"
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getexpandedspendingkey \
--header 'Content-Type: application/json' \
--data '{
"value": "0x02a1b2c3d4e5f6789012345678901234567890123456789012345678901234567890"
}'
{
"ask": "<string>",
"nsk": "<string>",
"ovk": "<string>"
}
value
— the spending key in hexadecimal formatask
— the authentication secret key componentnsk
— the nullifier secret key componentovk
— the outgoing viewing key componentwallet/getexpandedspendingkey
method is used for:
Successfully derived expanded spending key
The response is of type object
.
Was this page helpful?