curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/proposaldelete \
--header 'Content-Type: application/json' \
--data '{
"owner_address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",
"proposal_id": 1,
"visible": true
}'
{
"txID": "<string>",
"raw_data": {
"contract": [
"<any>"
],
"ref_block_bytes": "<string>",
"ref_block_hash": "<string>",
"expiration": 123,
"timestamp": 123
},
"raw_data_hex": "<string>",
"signature": [
"<string>"
]
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/proposaldelete \
--header 'Content-Type: application/json' \
--data '{
"owner_address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",
"proposal_id": 1,
"visible": true
}'
{
"txID": "<string>",
"raw_data": {
"contract": [
"<any>"
],
"ref_block_bytes": "<string>",
"ref_block_hash": "<string>",
"expiration": 123,
"timestamp": 123
},
"raw_data_hex": "<string>",
"signature": [
"<string>"
]
}
owner_address
— the address of the proposal creator who wants to delete the proposal. Must be in base58 or hex format.proposal_id
— the ID of the proposal to delete.visible
— optional boolean parameter. When set to true
, the address should be in base58 format. Default is false
.txID
— the transaction hash of the proposal deletionraw_data
— the raw transaction dataraw_data_hex
— the raw transaction data in hex formatsignature
— array of transaction signatureswallet/proposaldelete
method is used for:
Proposal deletion transaction
The response is of type object
.