curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/updatebrokerage \
--header 'Content-Type: application/json' \
--data '{
"owner_address": "41928c9af0651632157ef27a2cf17ca72c575a4d21",
"brokerage": 15
}'
{
"visible": true,
"txID": "<string>",
"raw_data": {
"contract": [
"<any>"
],
"ref_block_bytes": "<string>",
"ref_block_hash": "<string>",
"expiration": 123,
"timestamp": 123
},
"raw_data_hex": "<string>"
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/updatebrokerage \
--header 'Content-Type: application/json' \
--data '{
"owner_address": "41928c9af0651632157ef27a2cf17ca72c575a4d21",
"brokerage": 15
}'
{
"visible": true,
"txID": "<string>",
"raw_data": {
"contract": [
"<any>"
],
"ref_block_bytes": "<string>",
"ref_block_hash": "<string>",
"expiration": 123,
"timestamp": 123
},
"raw_data_hex": "<string>"
}
owner_address
— hexadecimal address of the witness account updating the brokerage ratebrokerage
— new brokerage percentage (0-100) where lower values mean more rewards shared with votersvisible
— boolean indicating whether addresses are in visible formattxID
— unique transaction ID for the brokerage update transactionraw_data
— raw transaction data containing:
contract
— array with brokerage update contract detailsref_block_bytes
— reference block bytes for transaction validationref_block_hash
— hash of the reference blockexpiration
— transaction expiration timestamptimestamp
— transaction creation timestampraw_data_hex
— complete transaction data encoded in hexadecimal formatwallet/updatebrokerage
method is used for:
Brokerage update transaction
The response is of type object
.
Was this page helpful?