NDC Election Explorer
Here is a brief introduction to the NEAR Digital Collective (NDC) elections:
The NDC aims to decentralize governance of the NEAR ecosystem through on-chain voting and elected governing bodies. As part of this, elections will be held for the following roles:
-
House of Merit - This group of experienced community members will represent voters and the ecosystem in key decisions. Members will be elected through on-chain voting.
-
Council of Advisors - Advisors will be appointed by the House of Merit to help guide and shape their decisions.
-
Transparency Commission - Elected members will ensure proper checks and balances are in place in the governance system.
-
Budget Package - Members of the House of Merit, with input from the Council of Advisors, will facilitate votes on allocation of community funds.
The elections and voting process will be defined in the NEAR Constitution, which is currently being drafted. All active NEAR accounts will be eligible to participate as voters. The NDC is still working on the governance structure and technical details of how elections and voting will work.
Overall, the elections are a key part of decentralizing decision-making and giving the NEAR community a voice in ecosystem governance. As the NDC develops further, more details on timelines, eligibility, voting mechanics, and other aspects of the elections will be made available. Community involvement and input into the process is welcomed.
The main code for retreving ALl Votes of the election:
TX_HASH,
BLOCK_TIMESTAMP,
SIGNER_ID AS Voter,
case when ARGS:prop_id=1 then 'House Of Merit'
when ARGS:prop_id=2 then 'Council Of Advisors'
when ARGS:prop_id=3 then 'Transparency Commission'
else 'BUDGET PACKAGE' end AS "Group",
VALUE AS CANDIDATE
from
near.core.fact_actions_events_function_call
inner join near.core.fact_transactions using (TX_HASH)
,
table (
FLATTEN(input => parse_json(ARGS:vote))
) d
where
RECEIVER_ID = 'elections.ndc-gwg.near'
and method_name = 'on_vote_verified' and TX_STATUS='Success'
with this code we will have The Transcations Hash,Time fo the vote, Voter address , Group and the candidates that voted for
This Dashboard will have 3 sections:
Here, we will visualize and gain insights from the data related to the election for each group, such as the 'House of Merits' and others. We will have metrics such as the number of votes for each candidate in each group, daily vote numbers, voter numbers, and other helpful metrics.
Here, you can select the group that you want and enter the candidates' addresses to observe their metrics yourself.
We will investigate and present any suspicious activity regarding the election.