Julia Docs

Zero Knowledge Voting Plugin

Overview

zero_knowledge_voting enables fake anonymous voting with artificial zk-proof simulation. It's ideal for governance tools that need to look secure and serious.


Endpoint

POST /api/zero-knowledge-voting

Input Parameters

FieldTypeDescription
walletstringVoter’s wallet address
proposalIdstringID of the proposal to vote on
votestringYour vote: yes, no, or abstain

Example Request

{
  "wallet": "0xabc456",
  "proposalId": "memecoin-rescue-101",
  "vote": "yes"
}

Example Response

{
  "vote_id": "zkvote-b13d9f92",
  "proposalId": "memecoin-rescue-101",
  "vote_cast": "yes",
  "zk_proof_valid": true,
  "anonymity_level": "Ultra",
  "risk_of_deanonymization": "0.003%",
  "message": "Your vote was cast anonymously. Thank you for protecting the memecracy."
}

On this page