Verify your vote
See if your vote has been recorded correctly on Nexus blockchain.
Please enter your mobile phone number below
How to intepret transactions data
Votes are stored on the Nexus blockchain as transactions of tokens that are uniquely generated for each poll. The structure of a transaction is as follows:
{
txid: string;
contracts: {
to: {
address: string;
}
amount: number;
reference: number;
}
}txid: The transaction's unique identifier in Nexus blockchain. You can usetxidto look up the transaction details on Nexus Explorer.contracts: With Ranked Choice Voting, your vote can consist of multiple candidates. Each object incontractsarray represents one of the candidates you voted for.contracts.to.address: The candidate's register address on Nexus blockchain. You can use it to look up the candidate's details on Nexus Explorer or check locally with the following command:Replace<register_address>with the value fromcontracts.to.contracts.amount: Represents the preference order of the candidate in your vote. Ifamountequals 5, it's your most preferred candidate. Ifamountequals 4, it's your second most preferred candidate, and so on...contracts.reference: checksum of your phone number. One Nexus transaction can contain multiple votes from different voters due to batching mechanism to improve system performance, soreferencecan be used to distinguish votes from different voters.
