curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/createshieldedtransactionwithoutspendauthsig \
--header 'Content-Type: application/json' \
--data '{
"transparent_from_address": "TQn9Y2khEsLJW1ChVWFMSMeRDow5KcbLSE",
"from_amount": 1000000,
"shielded_spends": [
{}
],
"shielded_receives": [
{}
],
"to_address": "ztron1abc123def456ghi789jklmno012pqr345stu678vwx90",
"to_amount": 1000000
}'
{
"raw_data_hex": "<string>",
"raw_data": {},
"txID": "0x1a2b3c4d5e6f7890abcdef1234567890abcdef1234567890abcdef1234567890"
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/createshieldedtransactionwithoutspendauthsig \
--header 'Content-Type: application/json' \
--data '{
"transparent_from_address": "TQn9Y2khEsLJW1ChVWFMSMeRDow5KcbLSE",
"from_amount": 1000000,
"shielded_spends": [
{}
],
"shielded_receives": [
{}
],
"to_address": "ztron1abc123def456ghi789jklmno012pqr345stu678vwx90",
"to_amount": 1000000
}'
{
"raw_data_hex": "<string>",
"raw_data": {},
"txID": "0x1a2b3c4d5e6f7890abcdef1234567890abcdef1234567890abcdef1234567890"
}
transparent_from_address
— the transparent TRX address sending funds (optional)from_amount
— the amount to send from transparent address (in sun)shielded_spends
— array of shielded input specificationsshielded_receives
— array of shielded output specificationsto_address
— recipient shielded addressto_amount
— amount to send to shielded address (in sun)raw_data_hex
— the raw unsigned transaction data in hexadecimal formatraw_data
— the structured raw unsigned transaction datatxID
— the transaction ID hash (will change after signing)wallet/createshieldedtransactionwithoutspendauthsig
method is used for:
Successfully created unsigned shielded transaction
The response is of type object
.