curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getnewshieldedaddress \
--header 'Content-Type: application/json' \
--data '{}'
{
"sk": "0x02a1b2c3d4e5f6789012345678901234567890123456789012345678901234567890",
"ask": "<string>",
"nsk": "<string>",
"ovk": "<string>",
"ak": "<string>",
"nk": "<string>",
"ivk": "<string>",
"d": "<string>",
"pkD": "<string>",
"payment_address": "ztron1abcdefghijk123456789..."
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getnewshieldedaddress \
--header 'Content-Type: application/json' \
--data '{}'
{
"sk": "0x02a1b2c3d4e5f6789012345678901234567890123456789012345678901234567890",
"ask": "<string>",
"nsk": "<string>",
"ovk": "<string>",
"ak": "<string>",
"nk": "<string>",
"ivk": "<string>",
"d": "<string>",
"pkD": "<string>",
"payment_address": "ztron1abcdefghijk123456789..."
}
sk
— the spending key (private key for the address)ask
— the authentication secret keynsk
— the nullifier secret keyovk
— the outgoing viewing keyak
— the authentication keynk
— the nullifier keyivk
— the incoming viewing keyd
— the diversifierpkD
— the payment address public keypayment_address
— the complete shielded payment addresswallet/getnewshieldedaddress
method is used for:
Successfully generated new shielded address with full key set
The response is of type object
.