Governance Tools

Query and vote on Lido DAO proposals

get_proposals

Returns recent DAO governance proposals with vote counts and status.

Parameters
{
  "limit": 5,
  "offset": 0
}
Response
{
  "proposals": [
    {
      "id": 180,
      "status": "Executed",
      "yea": "52340000.00",
      "nay": "0.00",
      "voting_power": "72.3%"
    }
  ]
}

get_proposal

Returns full details for a single proposal.

Parameters
{ "proposal_id": 180 }

cast_vote

Casts a vote on an active governance proposal.

Parameters
{
  "proposal_id": 180,
  "support": true,
  "dry_run": true
}
Voting requires holding LDO tokens. The vote weight equals your LDO balance at the proposal snapshot block.