POST
/
95e61622bf6a8af293978377718e3b77
/
wallet
/
listproposals
wallet/listproposals
curl --request POST \
  --url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/listproposals \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "proposals": [
    {
      "proposal_id": 123,
      "proposer_address": "<string>",
      "parameters": {},
      "expiration_time": 123,
      "create_time": 123,
      "approvals": [
        "<string>"
      ],
      "state": "PENDING"
    }
  ]
}
TRON API method that retrieves all governance proposals on the TRON network, providing a comprehensive view of current and past proposals.
Get you own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.

Parameters

This method does not require any parameters.

Response

  • proposals — array of proposal objects, each containing:
    • proposal_id — the unique identifier of the proposal
    • proposer_address — the address of the Super Representative who created the proposal
    • parameters — object containing the parameter changes proposed
    • expiration_time — timestamp when the proposal expires
    • create_time — timestamp when the proposal was created
    • approvals — array of Super Representatives who have approved the proposal
    • state — current state of the proposal (PENDING, DISAPPROVED, APPROVED, CANCELED)

Use case

The wallet/listproposals method is used for:
  • Displaying all governance proposals in management interfaces
  • Building comprehensive governance dashboards
  • Analyzing proposal trends and voting patterns
  • Creating proposal monitoring and notification systems

Body

application/json · object

Response

200 - application/json

List of all proposals

The response is of type object.