curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getincomingviewingkey \
--header 'Content-Type: application/json' \
--data '{
"ak": "0x03b2c3d4e5f6789012345678901234567890123456789012345678901234567890ab",
"nk": "0x04c3d4e5f6789012345678901234567890123456789012345678901234567890abcd"
}'
{
"ivk": "0x05d4e5f6789012345678901234567890123456789012345678901234567890abcdef"
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getincomingviewingkey \
--header 'Content-Type: application/json' \
--data '{
"ak": "0x03b2c3d4e5f6789012345678901234567890123456789012345678901234567890ab",
"nk": "0x04c3d4e5f6789012345678901234567890123456789012345678901234567890abcd"
}'
{
"ivk": "0x05d4e5f6789012345678901234567890123456789012345678901234567890abcdef"
}
ak
— the authentication key in hexadecimal formatnk
— the nullifier key in hexadecimal formativk
— the derived incoming viewing key in hexadecimal formatwallet/getincomingviewingkey
method is used for:
Successfully derived incoming viewing key
The response is of type object
.
Was this page helpful?