@maci-protocol/website 0.0.0-ci.26f28d6 → 0.0.0-ci.2a2b6ab

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/LICENSE +1 -2
  2. package/blog/2024-02-28-maci-v1.2.0.md +1 -1
  3. package/blog/2024-08-10-maci-v2.md +1 -1
  4. package/blog/2024-12-01-maci-getting-started.md +1 -1
  5. package/blog/2025-03-21-roadmap-2025.md +1 -1
  6. package/package.json +5 -5
  7. package/src/pages/roadmap.md +39 -80
  8. package/static/img/circuits/MACI-Circuits.excalidraw +79 -79
  9. package/static/img/circuits/ecdh.svg +1 -1
  10. package/static/img/circuits/messageToCommand.svg +1 -1
  11. package/static/img/circuits/messageValidator.svg +1 -1
  12. package/static/img/circuits/privToPubkey.svg +1 -1
  13. package/static/img/circuits/processMessages.svg +1 -1
  14. package/static/img/circuits/processMessagesInputHasher.svg +1 -1
  15. package/static/img/circuits/processMessages_2_0.svg +1 -1
  16. package/static/img/circuits/processOne.svg +1 -1
  17. package/static/img/circuits/processTopup.svg +1 -1
  18. package/static/img/circuits/quinBatchLeavesExists.svg +1 -1
  19. package/static/img/circuits/quinCheckRoot.svg +1 -1
  20. package/static/img/circuits/quinGeneratePathIndices.svg +1 -1
  21. package/static/img/circuits/quinSelector.svg +1 -1
  22. package/static/img/circuits/resultsCommitmentVerifier.svg +1 -1
  23. package/static/img/circuits/splicer.svg +1 -1
  24. package/static/img/circuits/tallyInputHasher.svg +1 -1
  25. package/static/img/circuits/tallyVotes.svg +1 -1
  26. package/static/img/circuits/verifySignature.svg +1 -1
  27. package/static/img/relayer-diagram.png +0 -0
  28. package/versioned_docs/version-v0.x/quadratic-vote-tallying-circuit.md +16 -16
  29. package/versioned_docs/version-v3.x/core-concepts/coordinator-service.md +16 -0
  30. package/versioned_docs/version-v3.x/core-concepts/key-change.md +28 -28
  31. package/versioned_docs/version-v3.x/core-concepts/maci-keys.md +1 -1
  32. package/versioned_docs/version-v3.x/core-concepts/offchain-voting.md +14 -0
  33. package/versioned_docs/version-v3.x/core-concepts/poll-types.md +3 -3
  34. package/versioned_docs/version-v3.x/core-concepts/polls.md +4 -4
  35. package/versioned_docs/version-v3.x/core-concepts/spec.md +42 -108
  36. package/versioned_docs/version-v3.x/core-concepts/state-leaf.md +2 -2
  37. package/versioned_docs/version-v3.x/core-concepts/workflow.md +7 -1
  38. package/versioned_docs/version-v3.x/guides/compile-circuits.md +7 -7
  39. package/versioned_docs/version-v3.x/guides/integrating.md +9 -9
  40. package/versioned_docs/version-v3.x/guides/testing/testing-in-detail.md +1 -1
  41. package/versioned_docs/version-v3.x/guides/troubleshooting.md +11 -11
  42. package/versioned_docs/version-v3.x/quick-start.md +17 -17
  43. package/versioned_docs/version-v3.x/security/audit.md +2 -2
  44. package/versioned_docs/version-v3.x/supported-networks/deployed-contracts.md +8 -8
  45. package/versioned_docs/version-v3.x/technical-references/coordinator-service/_category_.json +8 -0
  46. package/versioned_docs/version-v3.x/technical-references/coordinator-service/index.md +10 -0
  47. package/versioned_docs/version-v3.x/technical-references/coordinator-service/installation.md +43 -0
  48. package/versioned_docs/version-v3.x/technical-references/offchain-relayer/_category_.json +8 -0
  49. package/versioned_docs/version-v3.x/technical-references/offchain-relayer/index.md +51 -0
  50. package/versioned_docs/version-v3.x/technical-references/offchain-relayer/installation.md +109 -0
  51. package/versioned_docs/version-v3.x/technical-references/smart-contracts/MACI.md +6 -6
  52. package/versioned_docs/version-v3.x/technical-references/smart-contracts/MessageProcessor.md +1 -1
  53. package/versioned_docs/version-v3.x/technical-references/smart-contracts/Params.md +2 -2
  54. package/versioned_docs/version-v3.x/technical-references/smart-contracts/Poll.md +8 -8
  55. package/versioned_docs/version-v3.x/technical-references/smart-contracts/PollFactory.md +1 -1
  56. package/versioned_docs/version-v3.x/technical-references/smart-contracts/Tally.md +3 -3
  57. package/versioned_docs/version-v3.x/technical-references/smart-contracts/VkRegistry.md +5 -5
  58. package/versioned_docs/version-v3.x/technical-references/zk-snark-circuits/joinPoll.md +3 -4
  59. package/versioned_docs/version-v3.x/technical-references/zk-snark-circuits/processMessages.md +12 -12
  60. package/versioned_docs/version-v3.x/technical-references/zk-snark-circuits/setup.md +1 -1
  61. package/versioned_docs/version-v3.x/technical-references/zk-snark-circuits/tallyVotes.md +3 -3
  62. package/versioned_docs/version-v3.x/technical-references/zk-snark-circuits/utilities.md +7 -7
  63. package/versioned_docs/version-v3.x/technical-references/zk-snark-circuits/zk-snark-circuits.md +1 -1
@@ -5,7 +5,7 @@ sidebar_label: zk-SNARK Circuits
5
5
  sidebar_position: 1
6
6
  ---
7
7
 
8
- MACI has three main zk-SNARK [circuits](https://github.com/privacy-scaling-explorations/maci/tree/dev/circuits):
8
+ MACI has three main zk-SNARK [circuits](https://github.com/privacy-scaling-explorations/maci/tree/dev/packages/circuits):
9
9
 
10
10
  1. ProcessMessages.circom, which takes a batch of encrypted messages, decrypts them, and generates a proof that the coordinator's local processing was performed correctly. [QV](https://github.com/privacy-scaling-explorations/maci/blob/dev/circuits/circom/core/qv/processMessages.circom) and [non-QV](https://github.com/privacy-scaling-explorations/maci/blob/dev/circuits/circom/core/non-qv/processMessages.circom) versions are available.
11
11
  2. TallyVotes.circom, which counts votes from users' ballots, batch by batch. [QV](https://github.com/privacy-scaling-explorations/maci/blob/dev/circuits/circom/core/qv/tallyVotes.circom) and [non-QV](https://github.com/privacy-scaling-explorations/maci/blob/dev/circuits/circom/core/non-qv/tallyVotes.circom) versions are available.