curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getpaginatedproposallist \
--header 'Content-Type: application/json' \
--data '{
"offset": 0,
"limit": 10
}'
{
"proposals": [
{
"proposal_id": 123,
"proposer_address": "<string>",
"parameters": {},
"expiration_time": 123,
"create_time": 123,
"approvals": [
"<string>"
],
"state": "PENDING"
}
]
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getpaginatedproposallist \
--header 'Content-Type: application/json' \
--data '{
"offset": 0,
"limit": 10
}'
{
"proposals": [
{
"proposal_id": 123,
"proposer_address": "<string>",
"parameters": {},
"expiration_time": 123,
"create_time": 123,
"approvals": [
"<string>"
],
"state": "PENDING"
}
]
}
offset
— the starting index for pagination (default: 0).limit
— the maximum number of proposals to return (default: 10, max: 100).proposals
— array of proposal objects, each containing:
proposal_id
— the unique identifier of the proposalproposer_address
— the address of the Super Representative who created the proposalparameters
— object containing the parameter changes proposedexpiration_time
— timestamp when the proposal expirescreate_time
— timestamp when the proposal was createdapprovals
— array of Super Representatives who have approved the proposalstate
— current state of the proposal (PENDING, DISAPPROVED, APPROVED, CANCELED)wallet/getpaginatedproposallist
method is used for:
Paginated list of proposals
The response is of type object
.
Was this page helpful?