A web application for tracking ENS (Ethereum Name Service) delegate voting power and governance participation. Users can search for delegates, view their voting power, delegators, and voting history.
The application provides the following API endpoints:
Returns the top 100 ENS delegates ranked by voting power, including their rank, address, voting power, and delegation count.
Returns the rank and total balance for a specific delegate address. Accepts a delegate query parameter.
Returns recent voting power activity from the last 90 days. Accepts optional threshold query parameter (default: 5000 ENS). Activity types include: delegation_initiated, delegation_removed, delegation_changed, delegation_to_self, self_delegation_initiated, tokens_received, tokens_sent, tokens_received_and_delegated, self_tokens_received, self_tokens_sent.
Returns the total number of delegated tokens across all delegates.
Returns the total votable supply (sum of all voting power across delegates).
Returns all delegators for a given delegate address. Accepts a delegate query parameter and returns delegator information including balance and delegation timestamp.
Returns the top 1000 ENS token holders ordered by balance.
Returns the timestamp of the latest event in the database, indicating when the data was last updated.
Returns the complete voting power history for a specific delegate. Accepts a delegate query parameter and returns historical voting power records.
Returns voting activity for a list of addresses. Accepts a POST request with an array of addresses and returns the number of unique proposals voted on and latest vote timestamp for each address.