@maci-protocol/website 0.0.0-ci.2653bc0

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 (415) hide show
  1. package/.eslintrc.js +157 -0
  2. package/CHANGELOG.md +566 -0
  3. package/LICENSE +22 -0
  4. package/README.md +58 -0
  5. package/babel.config.js +3 -0
  6. package/blog/2021-10-12-maci-v1.md +100 -0
  7. package/blog/2022-09-22-maci-v1-technical-introduction.md +180 -0
  8. package/blog/2023-01-18-maci-v1.1.1.md +121 -0
  9. package/blog/2024-01-18-roadmap.md +106 -0
  10. package/blog/2024-02-28-maci-v1.2.0.md +121 -0
  11. package/blog/2024-04-10-roadmap-q2.md +96 -0
  12. package/blog/2024-05-08-ethdam.md +169 -0
  13. package/blog/2024-05-22-the-origins-of-maci.md +38 -0
  14. package/blog/2024-05-28-upcoming-grants.md +85 -0
  15. package/blog/2024-06-17-understanding-maci.md +63 -0
  16. package/blog/2024-06-21-deciphering-maci.md +48 -0
  17. package/blog/2024-06-28-revolusioning-public-goods-funding.md +32 -0
  18. package/blog/2024-07-23-q2-review.md +72 -0
  19. package/blog/2024-07-30-roadmap-q3.md +61 -0
  20. package/blog/2024-08-10-maci-v2.md +102 -0
  21. package/blog/2024-08-29-anonymous-poll-joining.md +47 -0
  22. package/blog/2024-10-29-q3-review.md +63 -0
  23. package/blog/2024-11-20-maci-platform.md +93 -0
  24. package/blog/2024-12-01-maci-getting-started.md +294 -0
  25. package/blog/2025-03-21-roadmap-2025.md +112 -0
  26. package/blog/assets/MACI_Bob_SignUp_1.png +0 -0
  27. package/blog/assets/MACI_Bob_SignUp_2.png +0 -0
  28. package/blog/assets/MACI_Complex_Message.png +0 -0
  29. package/blog/assets/MACI_Contracts.png +0 -0
  30. package/blog/assets/MACI_Sign_Up.png +0 -0
  31. package/blog/assets/MACI_Simple_Message.png +0 -0
  32. package/blog/assets/MACI_Verifier_1.png +0 -0
  33. package/blog/authors.yml +5 -0
  34. package/docusaurus.config.ts +213 -0
  35. package/package.json +65 -0
  36. package/src/components/ActionCard/index.tsx +30 -0
  37. package/src/components/ActionCard/styles.module.css +96 -0
  38. package/src/components/HomepageFeatures/index.tsx +91 -0
  39. package/src/components/HomepageFeatures/styles.module.css +17 -0
  40. package/src/components/ProjectCard/index.tsx +74 -0
  41. package/src/components/ProjectCard/styles.module.css +77 -0
  42. package/src/components/ProjectList/index.tsx +218 -0
  43. package/src/components/ProjectList/styles.module.css +180 -0
  44. package/src/content/projects.json +294 -0
  45. package/src/css/card.module.css +130 -0
  46. package/src/css/custom.css +91 -0
  47. package/src/icons/IconDiscord.tsx +16 -0
  48. package/src/icons/IconGithub.tsx +16 -0
  49. package/src/icons/IconWebsite.tsx +16 -0
  50. package/src/pages/blogs.tsx +58 -0
  51. package/src/pages/index.module.css +152 -0
  52. package/src/pages/index.tsx +66 -0
  53. package/src/pages/projects.tsx +44 -0
  54. package/src/pages/roadmap.md +150 -0
  55. package/src/pages/typedoc.tsx +11 -0
  56. package/src/plugins/blog-plugin/index.ts +86 -0
  57. package/src/react-app-env.d.ts +1 -0
  58. package/src/scripts/setupSolidityDocs.ts +67 -0
  59. package/src/scripts/setupTypedoc.ts +112 -0
  60. package/src/scripts/utils.ts +115 -0
  61. package/src/utils/getProjectsByFilter.ts +40 -0
  62. package/static/.nojekyll +0 -0
  63. package/static/audit_reports/20210922_Hashcloak_audit_report.pdf +0 -0
  64. package/static/audit_reports/202220930_Hashcloak_audit_report.pdf +0 -0
  65. package/static/audit_reports/20240223_PSE_Audit_audit_report.pdf +0 -0
  66. package/static/audit_reports/20240731_PSE_Audit_audit_report.pdf +0 -0
  67. package/static/fonts/DM_Sans.woff2 +0 -0
  68. package/static/fonts/Share_Tech_Mono.woff2 +0 -0
  69. package/static/img/box.png +0 -0
  70. package/static/img/box_dark.png +0 -0
  71. package/static/img/chain.png +0 -0
  72. package/static/img/chain_dark.png +0 -0
  73. package/static/img/chart.png +0 -0
  74. package/static/img/chart_dark.png +0 -0
  75. package/static/img/circuits/MACI-Circuits.excalidraw +39652 -0
  76. package/static/img/circuits/calculateTotal.svg +21 -0
  77. package/static/img/circuits/ecdh.svg +21 -0
  78. package/static/img/circuits/messageToCommand.svg +21 -0
  79. package/static/img/circuits/messageValidator.svg +21 -0
  80. package/static/img/circuits/poseidonHasher13.svg +21 -0
  81. package/static/img/circuits/privToPubkey.svg +21 -0
  82. package/static/img/circuits/processMessages.svg +21 -0
  83. package/static/img/circuits/processMessagesInputHasher.svg +21 -0
  84. package/static/img/circuits/processMessages_2_0.svg +21 -0
  85. package/static/img/circuits/processOne.svg +21 -0
  86. package/static/img/circuits/processTopup.svg +21 -0
  87. package/static/img/circuits/processingAfterPollEnds.svg +21 -0
  88. package/static/img/circuits/quinBatchLeavesExists.svg +21 -0
  89. package/static/img/circuits/quinCheckRoot.svg +21 -0
  90. package/static/img/circuits/quinGeneratePathIndices.svg +21 -0
  91. package/static/img/circuits/quinSelector.svg +21 -0
  92. package/static/img/circuits/resultsCommitmentVerifier.svg +21 -0
  93. package/static/img/circuits/splicer.svg +21 -0
  94. package/static/img/circuits/tallyInputHasher.svg +21 -0
  95. package/static/img/circuits/tallyVotes.svg +21 -0
  96. package/static/img/circuits/unpackElement.svg +21 -0
  97. package/static/img/circuits/verifySignature.svg +21 -0
  98. package/static/img/completingAPoll.svg +4 -0
  99. package/static/img/contracts.svg +16 -0
  100. package/static/img/coordinatorComponents.svg +21 -0
  101. package/static/img/favicon.ico +0 -0
  102. package/static/img/generateProofs.svg +4 -0
  103. package/static/img/hero.svg +9 -0
  104. package/static/img/maci-card.png +0 -0
  105. package/static/img/maci-rpgf-design.jpg +0 -0
  106. package/static/img/messageProcessingLocal.svg +21 -0
  107. package/static/img/offlineProcessing.svg +21 -0
  108. package/static/img/pse-logo-round.png +0 -0
  109. package/static/img/relayer-diagram.png +0 -0
  110. package/static/img/tallyCommitments.svg +4 -0
  111. package/static/img/voteTallyingLocal.svg +21 -0
  112. package/tsconfig.json +34 -0
  113. package/versioned_docs/version-v0.x/circuits.md +22 -0
  114. package/versioned_docs/version-v0.x/contract.md +186 -0
  115. package/versioned_docs/version-v0.x/faq.md +67 -0
  116. package/versioned_docs/version-v0.x/introduction.md +119 -0
  117. package/versioned_docs/version-v0.x/quadratic-vote-tallying-circuit.md +138 -0
  118. package/versioned_docs/version-v0.x/state-root-transition-circuit.md +230 -0
  119. package/versioned_docs/version-v1.2/audit.md +160 -0
  120. package/versioned_docs/version-v1.2/ci-pipeline.md +38 -0
  121. package/versioned_docs/version-v1.2/circuits.md +508 -0
  122. package/versioned_docs/version-v1.2/cli.md +689 -0
  123. package/versioned_docs/version-v1.2/contracts.md +445 -0
  124. package/versioned_docs/version-v1.2/contributing/code-of-conduct.md +91 -0
  125. package/versioned_docs/version-v1.2/contributing/contributing.md +129 -0
  126. package/versioned_docs/version-v1.2/coordinator-processing.md +46 -0
  127. package/versioned_docs/version-v1.2/deployment.md +122 -0
  128. package/versioned_docs/version-v1.2/installation.md +175 -0
  129. package/versioned_docs/version-v1.2/integrating.md +200 -0
  130. package/versioned_docs/version-v1.2/introduction.md +94 -0
  131. package/versioned_docs/version-v1.2/key-change.md +182 -0
  132. package/versioned_docs/version-v1.2/overview.md +47 -0
  133. package/versioned_docs/version-v1.2/poll-types.md +68 -0
  134. package/versioned_docs/version-v1.2/primitives.md +216 -0
  135. package/versioned_docs/version-v1.2/project-ideas.md +14 -0
  136. package/versioned_docs/version-v1.2/purpose.md +62 -0
  137. package/versioned_docs/version-v1.2/solidity-docs/MACI.md +345 -0
  138. package/versioned_docs/version-v1.2/solidity-docs/MessageProcessor.md +266 -0
  139. package/versioned_docs/version-v1.2/solidity-docs/MessageProcessorFactory.md +26 -0
  140. package/versioned_docs/version-v1.2/solidity-docs/Poll.md +381 -0
  141. package/versioned_docs/version-v1.2/solidity-docs/PollFactory.md +50 -0
  142. package/versioned_docs/version-v1.2/solidity-docs/SignUpToken.md +27 -0
  143. package/versioned_docs/version-v1.2/solidity-docs/Subsidy.md +218 -0
  144. package/versioned_docs/version-v1.2/solidity-docs/SubsidyFactory.md +27 -0
  145. package/versioned_docs/version-v1.2/solidity-docs/Tally.md +311 -0
  146. package/versioned_docs/version-v1.2/solidity-docs/TallyFactory.md +27 -0
  147. package/versioned_docs/version-v1.2/solidity-docs/TallyNonQv.md +296 -0
  148. package/versioned_docs/version-v1.2/solidity-docs/TallyNonQvFactory.md +27 -0
  149. package/versioned_docs/version-v1.2/solidity-docs/TopupCredit.md +61 -0
  150. package/versioned_docs/version-v1.2/solidity-docs/VkRegistry.md +457 -0
  151. package/versioned_docs/version-v1.2/solidity-docs/benchmarks/HasherBenchmarks.md +44 -0
  152. package/versioned_docs/version-v1.2/solidity-docs/crypto/Hasher.md +125 -0
  153. package/versioned_docs/version-v1.2/solidity-docs/crypto/IVerifier.md +11 -0
  154. package/versioned_docs/version-v1.2/solidity-docs/crypto/MockVerifier.md +17 -0
  155. package/versioned_docs/version-v1.2/solidity-docs/crypto/Pairing.md +85 -0
  156. package/versioned_docs/version-v1.2/solidity-docs/crypto/PoseidonT3.md +9 -0
  157. package/versioned_docs/version-v1.2/solidity-docs/crypto/PoseidonT4.md +9 -0
  158. package/versioned_docs/version-v1.2/solidity-docs/crypto/PoseidonT5.md +9 -0
  159. package/versioned_docs/version-v1.2/solidity-docs/crypto/PoseidonT6.md +9 -0
  160. package/versioned_docs/version-v1.2/solidity-docs/crypto/SnarkCommon.md +16 -0
  161. package/versioned_docs/version-v1.2/solidity-docs/crypto/SnarkConstants.md +40 -0
  162. package/versioned_docs/version-v1.2/solidity-docs/crypto/Verifier.md +61 -0
  163. package/versioned_docs/version-v1.2/solidity-docs/gatekeepers/EASGatekeeper.md +121 -0
  164. package/versioned_docs/version-v1.2/solidity-docs/gatekeepers/FreeForAllSignUpGatekeeper.md +40 -0
  165. package/versioned_docs/version-v1.2/solidity-docs/gatekeepers/SignUpGatekeeper.md +26 -0
  166. package/versioned_docs/version-v1.2/solidity-docs/gatekeepers/SignUpTokenGatekeeper.md +93 -0
  167. package/versioned_docs/version-v1.2/solidity-docs/gatekeepers/hatsGatekeepers/HatsGatekeeperBase.md +79 -0
  168. package/versioned_docs/version-v1.2/solidity-docs/gatekeepers/hatsGatekeepers/HatsGatekeeperMultiple.md +48 -0
  169. package/versioned_docs/version-v1.2/solidity-docs/gatekeepers/hatsGatekeepers/HatsGatekeeperSingle.md +42 -0
  170. package/versioned_docs/version-v1.2/solidity-docs/index.md +4 -0
  171. package/versioned_docs/version-v1.2/solidity-docs/initialVoiceCreditProxy/ConstantInitialVoiceCreditProxy.md +40 -0
  172. package/versioned_docs/version-v1.2/solidity-docs/initialVoiceCreditProxy/InitialVoiceCreditProxy.md +26 -0
  173. package/versioned_docs/version-v1.2/solidity-docs/interfaces/IEAS.md +40 -0
  174. package/versioned_docs/version-v1.2/solidity-docs/interfaces/IHats.md +103 -0
  175. package/versioned_docs/version-v1.2/solidity-docs/interfaces/IMPFactory.md +26 -0
  176. package/versioned_docs/version-v1.2/solidity-docs/interfaces/IMessageProcessor.md +31 -0
  177. package/versioned_docs/version-v1.2/solidity-docs/interfaces/IPoll.md +217 -0
  178. package/versioned_docs/version-v1.2/solidity-docs/interfaces/IPollFactory.md +29 -0
  179. package/versioned_docs/version-v1.2/solidity-docs/interfaces/ITallyFactory.md +28 -0
  180. package/versioned_docs/version-v1.2/solidity-docs/interfaces/ITallySubsidyFactory.md +27 -0
  181. package/versioned_docs/version-v1.2/solidity-docs/interfaces/IVerifier.md +25 -0
  182. package/versioned_docs/version-v1.2/solidity-docs/interfaces/IVkRegistry.md +70 -0
  183. package/versioned_docs/version-v1.2/solidity-docs/mocks/MockHatsProtocol.md +133 -0
  184. package/versioned_docs/version-v1.2/solidity-docs/trees/AccQueue.md +464 -0
  185. package/versioned_docs/version-v1.2/solidity-docs/trees/AccQueueBinary.md +60 -0
  186. package/versioned_docs/version-v1.2/solidity-docs/trees/AccQueueBinary0.md +40 -0
  187. package/versioned_docs/version-v1.2/solidity-docs/trees/AccQueueBinaryMaci.md +34 -0
  188. package/versioned_docs/version-v1.2/solidity-docs/trees/AccQueueQuinary.md +75 -0
  189. package/versioned_docs/version-v1.2/solidity-docs/trees/AccQueueQuinary0.md +40 -0
  190. package/versioned_docs/version-v1.2/solidity-docs/trees/AccQueueQuinaryBlankSl.md +40 -0
  191. package/versioned_docs/version-v1.2/solidity-docs/trees/AccQueueQuinaryMaci.md +40 -0
  192. package/versioned_docs/version-v1.2/solidity-docs/trees/EmptyBallotRoots.md +13 -0
  193. package/versioned_docs/version-v1.2/solidity-docs/utilities/CommonUtilities.md +25 -0
  194. package/versioned_docs/version-v1.2/solidity-docs/utilities/DomainObjs.md +40 -0
  195. package/versioned_docs/version-v1.2/solidity-docs/utilities/Params.md +36 -0
  196. package/versioned_docs/version-v1.2/solidity-docs/utilities/Utilities.md +79 -0
  197. package/versioned_docs/version-v1.2/spec.md +944 -0
  198. package/versioned_docs/version-v1.2/testing-in-detail.md +209 -0
  199. package/versioned_docs/version-v1.2/testing.md +472 -0
  200. package/versioned_docs/version-v1.2/topup.md +43 -0
  201. package/versioned_docs/version-v1.2/troubleshooting.md +51 -0
  202. package/versioned_docs/version-v1.2/trusted-setup.md +76 -0
  203. package/versioned_docs/version-v1.2/typedoc/cli/.nojekyll +1 -0
  204. package/versioned_docs/version-v1.2/typedoc/cli/index.md +15 -0
  205. package/versioned_docs/version-v1.2/typedoc/cli/interfaces/AirdropArgs.md +89 -0
  206. package/versioned_docs/version-v1.2/typedoc/cli/interfaces/DeployArgs.md +154 -0
  207. package/versioned_docs/version-v1.2/typedoc/cli/interfaces/DeployPollArgs.md +154 -0
  208. package/versioned_docs/version-v1.2/typedoc/cli/interfaces/DeployedContracts.md +130 -0
  209. package/versioned_docs/version-v1.2/typedoc/cli/interfaces/GenLocalStateArgs.md +168 -0
  210. package/versioned_docs/version-v1.2/typedoc/cli/interfaces/GenProofsArgs.md +388 -0
  211. package/versioned_docs/version-v1.2/typedoc/cli/interfaces/IGenKeypairArgs.md +37 -0
  212. package/versioned_docs/version-v1.2/typedoc/cli/interfaces/IRegisteredUserArgs.md +63 -0
  213. package/versioned_docs/version-v1.2/typedoc/cli/interfaces/MergeMessagesArgs.md +76 -0
  214. package/versioned_docs/version-v1.2/typedoc/cli/interfaces/MergeSignupsArgs.md +76 -0
  215. package/versioned_docs/version-v1.2/typedoc/cli/interfaces/PollContracts.md +53 -0
  216. package/versioned_docs/version-v1.2/typedoc/cli/interfaces/ProveOnChainArgs.md +128 -0
  217. package/versioned_docs/version-v1.2/typedoc/cli/interfaces/PublishArgs.md +154 -0
  218. package/versioned_docs/version-v1.2/typedoc/cli/interfaces/SignupArgs.md +89 -0
  219. package/versioned_docs/version-v1.2/typedoc/cli/interfaces/SubsidyData.md +73 -0
  220. package/versioned_docs/version-v1.2/typedoc/cli/interfaces/TallyData.md +166 -0
  221. package/versioned_docs/version-v1.2/typedoc/cli/interfaces/TopupArgs.md +89 -0
  222. package/versioned_docs/version-v1.2/typedoc/cli/interfaces/VerifyArgs.md +128 -0
  223. package/versioned_docs/version-v1.2/typedoc/cli/modules.md +556 -0
  224. package/versioned_docs/version-v1.2/typedoc/core/.nojekyll +1 -0
  225. package/versioned_docs/version-v1.2/typedoc/core/classes/MaciState.md +295 -0
  226. package/versioned_docs/version-v1.2/typedoc/core/classes/Poll.md +1098 -0
  227. package/versioned_docs/version-v1.2/typedoc/core/index.md +110 -0
  228. package/versioned_docs/version-v1.2/typedoc/core/interfaces/BatchSizes.md +50 -0
  229. package/versioned_docs/version-v1.2/typedoc/core/interfaces/IJsonMaciState.md +77 -0
  230. package/versioned_docs/version-v1.2/typedoc/core/interfaces/IProcessMessagesCircuitInputs.md +242 -0
  231. package/versioned_docs/version-v1.2/typedoc/core/interfaces/ISubsidyCircuitInputs.md +198 -0
  232. package/versioned_docs/version-v1.2/typedoc/core/interfaces/ITallyCircuitInputs.md +231 -0
  233. package/versioned_docs/version-v1.2/typedoc/core/interfaces/MaxValues.md +37 -0
  234. package/versioned_docs/version-v1.2/typedoc/core/interfaces/TreeDepths.md +63 -0
  235. package/versioned_docs/version-v1.2/typedoc/core/modules.md +289 -0
  236. package/versioned_docs/version-v1.2/typedoc/crypto/.nojekyll +1 -0
  237. package/versioned_docs/version-v1.2/typedoc/crypto/classes/AccQueue.md +770 -0
  238. package/versioned_docs/version-v1.2/typedoc/crypto/classes/G1Point.md +115 -0
  239. package/versioned_docs/version-v1.2/typedoc/crypto/classes/G2Point.md +140 -0
  240. package/versioned_docs/version-v1.2/typedoc/crypto/classes/IncrementalQuinTree.md +470 -0
  241. package/versioned_docs/version-v1.2/typedoc/crypto/index.md +44 -0
  242. package/versioned_docs/version-v1.2/typedoc/crypto/interfaces/Keypair.md +33 -0
  243. package/versioned_docs/version-v1.2/typedoc/crypto/interfaces/PoseidonFuncs.md +115 -0
  244. package/versioned_docs/version-v1.2/typedoc/crypto/interfaces/Queue.md +33 -0
  245. package/versioned_docs/version-v1.2/typedoc/crypto/interfaces/Signature.md +37 -0
  246. package/versioned_docs/version-v1.2/typedoc/crypto/modules.md +913 -0
  247. package/versioned_docs/version-v1.2/typedoc/domainobjs/.nojekyll +1 -0
  248. package/versioned_docs/version-v1.2/typedoc/domainobjs/classes/Ballot.md +274 -0
  249. package/versioned_docs/version-v1.2/typedoc/domainobjs/classes/Keypair.md +181 -0
  250. package/versioned_docs/version-v1.2/typedoc/domainobjs/classes/Message.md +244 -0
  251. package/versioned_docs/version-v1.2/typedoc/domainobjs/classes/PCommand.md +409 -0
  252. package/versioned_docs/version-v1.2/typedoc/domainobjs/classes/PrivKey.md +206 -0
  253. package/versioned_docs/version-v1.2/typedoc/domainobjs/classes/PubKey.md +289 -0
  254. package/versioned_docs/version-v1.2/typedoc/domainobjs/classes/StateLeaf.md +340 -0
  255. package/versioned_docs/version-v1.2/typedoc/domainobjs/classes/TCommand.md +200 -0
  256. package/versioned_docs/version-v1.2/typedoc/domainobjs/classes/VerifyingKey.md +240 -0
  257. package/versioned_docs/version-v1.2/typedoc/domainobjs/index.md +81 -0
  258. package/versioned_docs/version-v1.2/typedoc/domainobjs/interfaces/ICommand.md +104 -0
  259. package/versioned_docs/version-v1.2/typedoc/domainobjs/interfaces/IG1ContractParams.md +31 -0
  260. package/versioned_docs/version-v1.2/typedoc/domainobjs/interfaces/IG2ContractParams.md +31 -0
  261. package/versioned_docs/version-v1.2/typedoc/domainobjs/interfaces/IJsonBallot.md +42 -0
  262. package/versioned_docs/version-v1.2/typedoc/domainobjs/interfaces/IJsonCommand.md +32 -0
  263. package/versioned_docs/version-v1.2/typedoc/domainobjs/interfaces/IJsonKeyPair.md +31 -0
  264. package/versioned_docs/version-v1.2/typedoc/domainobjs/interfaces/IJsonPCommand.md +111 -0
  265. package/versioned_docs/version-v1.2/typedoc/domainobjs/interfaces/IJsonStateLeaf.md +42 -0
  266. package/versioned_docs/version-v1.2/typedoc/domainobjs/interfaces/IJsonTCommand.md +67 -0
  267. package/versioned_docs/version-v1.2/typedoc/domainobjs/interfaces/IMessageContractParams.md +31 -0
  268. package/versioned_docs/version-v1.2/typedoc/domainobjs/interfaces/IStateLeaf.md +39 -0
  269. package/versioned_docs/version-v1.2/typedoc/domainobjs/interfaces/IStateLeafContractParams.md +42 -0
  270. package/versioned_docs/version-v1.2/typedoc/domainobjs/interfaces/IVkContractParams.md +64 -0
  271. package/versioned_docs/version-v1.2/typedoc/domainobjs/interfaces/IVkObjectParams.md +108 -0
  272. package/versioned_docs/version-v1.2/typedoc/domainobjs/interfaces/Proof.md +46 -0
  273. package/versioned_docs/version-v1.2/typedoc/domainobjs/interfaces/VoteOptionTreeLeaf.md +24 -0
  274. package/versioned_docs/version-v1.2/typedoc/domainobjs/modules.md +110 -0
  275. package/versioned_docs/version-v1.2/typedoc/index.md +4 -0
  276. package/versioned_docs/version-v1.2/versioning.md +94 -0
  277. package/versioned_docs/version-v1.2/workflow.md +142 -0
  278. package/versioned_docs/version-v2.x/case-studies.md +35 -0
  279. package/versioned_docs/version-v2.x/contributing/_category_.json +4 -0
  280. package/versioned_docs/version-v2.x/contributing/code-of-conduct.md +92 -0
  281. package/versioned_docs/version-v2.x/contributing/contributing.md +149 -0
  282. package/versioned_docs/version-v2.x/contributing/project-ideas.md +78 -0
  283. package/versioned_docs/version-v2.x/core-concepts/_category_.json +4 -0
  284. package/versioned_docs/version-v2.x/core-concepts/ballot.md +19 -0
  285. package/versioned_docs/version-v2.x/core-concepts/coordinator-processing.md +46 -0
  286. package/versioned_docs/version-v2.x/core-concepts/hashing-and-encryption.md +45 -0
  287. package/versioned_docs/version-v2.x/core-concepts/key-change.md +179 -0
  288. package/versioned_docs/version-v2.x/core-concepts/maci-keys.md +84 -0
  289. package/versioned_docs/version-v2.x/core-concepts/maci-messages.md +44 -0
  290. package/versioned_docs/version-v2.x/core-concepts/merkle-trees.md +23 -0
  291. package/versioned_docs/version-v2.x/core-concepts/poll-types.md +106 -0
  292. package/versioned_docs/version-v2.x/core-concepts/spec.md +883 -0
  293. package/versioned_docs/version-v2.x/core-concepts/state-leaf.md +42 -0
  294. package/versioned_docs/version-v2.x/core-concepts/workflow.md +142 -0
  295. package/versioned_docs/version-v2.x/getting-started.md +313 -0
  296. package/versioned_docs/version-v2.x/guides/_category_.json +4 -0
  297. package/versioned_docs/version-v2.x/guides/compile-circuits.md +163 -0
  298. package/versioned_docs/version-v2.x/guides/frontend.md +99 -0
  299. package/versioned_docs/version-v2.x/guides/integrating.md +73 -0
  300. package/versioned_docs/version-v2.x/guides/maciWrapper.md +173 -0
  301. package/versioned_docs/version-v2.x/guides/subgraph.md +79 -0
  302. package/versioned_docs/version-v2.x/guides/testing/_category_.json +4 -0
  303. package/versioned_docs/version-v2.x/guides/testing/testing-in-detail.md +203 -0
  304. package/versioned_docs/version-v2.x/guides/testing/testing.md +163 -0
  305. package/versioned_docs/version-v2.x/guides/troubleshooting.md +161 -0
  306. package/versioned_docs/version-v2.x/introduction.md +146 -0
  307. package/versioned_docs/version-v2.x/processes/_category_.json +4 -0
  308. package/versioned_docs/version-v2.x/processes/ci-pipeline.md +38 -0
  309. package/versioned_docs/version-v2.x/processes/versioning.md +94 -0
  310. package/versioned_docs/version-v2.x/resources.md +33 -0
  311. package/versioned_docs/version-v2.x/security/_category_.json +4 -0
  312. package/versioned_docs/version-v2.x/security/audit.md +167 -0
  313. package/versioned_docs/version-v2.x/security/trusted-setup.md +166 -0
  314. package/versioned_docs/version-v2.x/supported-networks/_category_.json +4 -0
  315. package/versioned_docs/version-v2.x/supported-networks/deployed-contracts.md +1108 -0
  316. package/versioned_docs/version-v2.x/supported-networks/supported-networks.md +47 -0
  317. package/versioned_docs/version-v2.x/technical-references/_category_.json +4 -0
  318. package/versioned_docs/version-v2.x/technical-references/smart-contracts/AccQueue.md +21 -0
  319. package/versioned_docs/version-v2.x/technical-references/smart-contracts/Gatekeepers.md +40 -0
  320. package/versioned_docs/version-v2.x/technical-references/smart-contracts/MACI.md +152 -0
  321. package/versioned_docs/version-v2.x/technical-references/smart-contracts/MessageProcessor.md +13 -0
  322. package/versioned_docs/version-v2.x/technical-references/smart-contracts/Params.md +32 -0
  323. package/versioned_docs/version-v2.x/technical-references/smart-contracts/Poll.md +104 -0
  324. package/versioned_docs/version-v2.x/technical-references/smart-contracts/PollFactory.md +43 -0
  325. package/versioned_docs/version-v2.x/technical-references/smart-contracts/Tally.md +45 -0
  326. package/versioned_docs/version-v2.x/technical-references/smart-contracts/VkRegistry.md +57 -0
  327. package/versioned_docs/version-v2.x/technical-references/smart-contracts/VoiceCreditProxy.md +18 -0
  328. package/versioned_docs/version-v2.x/technical-references/smart-contracts/_category_.json +8 -0
  329. package/versioned_docs/version-v2.x/technical-references/technical-references.md +47 -0
  330. package/versioned_docs/version-v2.x/technical-references/typescript-code/_category_.json +4 -0
  331. package/versioned_docs/version-v2.x/technical-references/typescript-code/cli.md +699 -0
  332. package/versioned_docs/version-v2.x/technical-references/zk-snark-circuits/_category_.json +4 -0
  333. package/versioned_docs/version-v2.x/technical-references/zk-snark-circuits/processMessages.md +107 -0
  334. package/versioned_docs/version-v2.x/technical-references/zk-snark-circuits/setup.md +101 -0
  335. package/versioned_docs/version-v2.x/technical-references/zk-snark-circuits/tallyVotes.md +79 -0
  336. package/versioned_docs/version-v2.x/technical-references/zk-snark-circuits/utilities.md +131 -0
  337. package/versioned_docs/version-v2.x/technical-references/zk-snark-circuits/zk-snark-circuits.md +37 -0
  338. package/versioned_docs/version-v2.x/use-cases/_category_.json +4 -0
  339. package/versioned_docs/version-v2.x/use-cases/governance.md +18 -0
  340. package/versioned_docs/version-v2.x/use-cases/polling.md +10 -0
  341. package/versioned_docs/version-v2.x/use-cases/public-goods.md +65 -0
  342. package/versioned_docs/version-v3.x/case-studies.md +35 -0
  343. package/versioned_docs/version-v3.x/contributing/_category_.json +4 -0
  344. package/versioned_docs/version-v3.x/contributing/code-of-conduct.md +92 -0
  345. package/versioned_docs/version-v3.x/contributing/contributing.md +149 -0
  346. package/versioned_docs/version-v3.x/contributing/project-ideas.md +78 -0
  347. package/versioned_docs/version-v3.x/core-concepts/_category_.json +4 -0
  348. package/versioned_docs/version-v3.x/core-concepts/ballot.md +19 -0
  349. package/versioned_docs/version-v3.x/core-concepts/coordinator-processing.md +46 -0
  350. package/versioned_docs/version-v3.x/core-concepts/coordinator-service.md +16 -0
  351. package/versioned_docs/version-v3.x/core-concepts/hashing-and-encryption.md +45 -0
  352. package/versioned_docs/version-v3.x/core-concepts/key-change.md +179 -0
  353. package/versioned_docs/version-v3.x/core-concepts/maci-keys.md +84 -0
  354. package/versioned_docs/version-v3.x/core-concepts/maci-messages.md +44 -0
  355. package/versioned_docs/version-v3.x/core-concepts/merkle-trees.md +16 -0
  356. package/versioned_docs/version-v3.x/core-concepts/offchain-voting.md +14 -0
  357. package/versioned_docs/version-v3.x/core-concepts/poll-types.md +58 -0
  358. package/versioned_docs/version-v3.x/core-concepts/polls.md +81 -0
  359. package/versioned_docs/version-v3.x/core-concepts/spec.md +883 -0
  360. package/versioned_docs/version-v3.x/core-concepts/state-leaf.md +42 -0
  361. package/versioned_docs/version-v3.x/core-concepts/workflow.md +149 -0
  362. package/versioned_docs/version-v3.x/guides/_category_.json +4 -0
  363. package/versioned_docs/version-v3.x/guides/compile-circuits.md +175 -0
  364. package/versioned_docs/version-v3.x/guides/integrating.md +137 -0
  365. package/versioned_docs/version-v3.x/guides/subgraph.md +79 -0
  366. package/versioned_docs/version-v3.x/guides/testing/_category_.json +4 -0
  367. package/versioned_docs/version-v3.x/guides/testing/testing-in-detail.md +191 -0
  368. package/versioned_docs/version-v3.x/guides/testing/testing-introduction.md +158 -0
  369. package/versioned_docs/version-v3.x/guides/troubleshooting.md +161 -0
  370. package/versioned_docs/version-v3.x/introduction.md +153 -0
  371. package/versioned_docs/version-v3.x/processes/_category_.json +4 -0
  372. package/versioned_docs/version-v3.x/processes/ci-pipeline.md +38 -0
  373. package/versioned_docs/version-v3.x/processes/versioning.md +94 -0
  374. package/versioned_docs/version-v3.x/quick-start.md +318 -0
  375. package/versioned_docs/version-v3.x/resources.md +33 -0
  376. package/versioned_docs/version-v3.x/security/_category_.json +4 -0
  377. package/versioned_docs/version-v3.x/security/audit.md +167 -0
  378. package/versioned_docs/version-v3.x/security/trusted-setup.md +172 -0
  379. package/versioned_docs/version-v3.x/supported-networks/_category_.json +4 -0
  380. package/versioned_docs/version-v3.x/supported-networks/deployed-contracts.md +112 -0
  381. package/versioned_docs/version-v3.x/supported-networks/supported-networks.md +53 -0
  382. package/versioned_docs/version-v3.x/technical-references/_category_.json +4 -0
  383. package/versioned_docs/version-v3.x/technical-references/coordinator-service/_category_.json +8 -0
  384. package/versioned_docs/version-v3.x/technical-references/coordinator-service/index.md +10 -0
  385. package/versioned_docs/version-v3.x/technical-references/coordinator-service/installation.md +43 -0
  386. package/versioned_docs/version-v3.x/technical-references/offchain-relayer/_category_.json +8 -0
  387. package/versioned_docs/version-v3.x/technical-references/offchain-relayer/index.md +51 -0
  388. package/versioned_docs/version-v3.x/technical-references/offchain-relayer/installation.md +109 -0
  389. package/versioned_docs/version-v3.x/technical-references/smart-contracts/MACI.md +160 -0
  390. package/versioned_docs/version-v3.x/technical-references/smart-contracts/MessageProcessor.md +13 -0
  391. package/versioned_docs/version-v3.x/technical-references/smart-contracts/Params.md +33 -0
  392. package/versioned_docs/version-v3.x/technical-references/smart-contracts/Policies.md +39 -0
  393. package/versioned_docs/version-v3.x/technical-references/smart-contracts/Poll.md +170 -0
  394. package/versioned_docs/version-v3.x/technical-references/smart-contracts/PollFactory.md +33 -0
  395. package/versioned_docs/version-v3.x/technical-references/smart-contracts/Tally.md +43 -0
  396. package/versioned_docs/version-v3.x/technical-references/smart-contracts/VkRegistry.md +62 -0
  397. package/versioned_docs/version-v3.x/technical-references/smart-contracts/VoiceCreditProxy.md +18 -0
  398. package/versioned_docs/version-v3.x/technical-references/smart-contracts/_category_.json +8 -0
  399. package/versioned_docs/version-v3.x/technical-references/technical-references.md +48 -0
  400. package/versioned_docs/version-v3.x/technical-references/zk-snark-circuits/_category_.json +4 -0
  401. package/versioned_docs/version-v3.x/technical-references/zk-snark-circuits/joinPoll.md +53 -0
  402. package/versioned_docs/version-v3.x/technical-references/zk-snark-circuits/processMessages.md +106 -0
  403. package/versioned_docs/version-v3.x/technical-references/zk-snark-circuits/setup.md +96 -0
  404. package/versioned_docs/version-v3.x/technical-references/zk-snark-circuits/tallyVotes.md +79 -0
  405. package/versioned_docs/version-v3.x/technical-references/zk-snark-circuits/utilities.md +131 -0
  406. package/versioned_docs/version-v3.x/technical-references/zk-snark-circuits/zk-snark-circuits.md +42 -0
  407. package/versioned_docs/version-v3.x/use-cases/_category_.json +4 -0
  408. package/versioned_docs/version-v3.x/use-cases/governance.md +18 -0
  409. package/versioned_docs/version-v3.x/use-cases/polling.md +10 -0
  410. package/versioned_docs/version-v3.x/use-cases/public-goods.md +65 -0
  411. package/versioned_sidebars/version-v0.x-sidebars.json +8 -0
  412. package/versioned_sidebars/version-v1.2-sidebars.json +8 -0
  413. package/versioned_sidebars/version-v2.x-sidebars.json +8 -0
  414. package/versioned_sidebars/version-v3.x-sidebars.json +8 -0
  415. package/versions.json +1 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,566 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [3.0.0](https://github.com/privacy-scaling-explorations/maci/compare/v2.5.0...v3.0.0) (2025-03-28)
7
+
8
+
9
+ ### ⚠ BREAKING CHANGES
10
+
11
+ * message processing is changed
12
+
13
+ * fix(ipoll): add missing parameter
14
+
15
+ * fix(poll-tests): add missing parameter maxMessagebatchSize
16
+
17
+ * feat(poll.ts): add chain hash updating
18
+
19
+ * test(poll tests): add test for checking chain hash computation
20
+
21
+ * feat(poll.ts): add batch hashes array computation
22
+
23
+ * feat(poll.sol): pad zeroes to the maximum size of batch
24
+
25
+ * feat(messageprocessor): update process messages to use chain hash
26
+
27
+ * refactor(vkregistry): refactor function call
28
+
29
+ * feat(processmessages.circom): add chainHash feature in circuits and test for that
30
+
31
+ * test(processmessages): rearrange test for key-change
32
+
33
+ * refactor(mergemessages): refactor functions calls which include mergemessages
34
+
35
+ * refactor(mergemessages): add some more changes about functions call which include mergemessages
36
+
37
+ * test(all tests): fixing tests after refactoring code
38
+
39
+ * refactor(accqueue): remove all calls for accqueue
40
+
41
+ * fix(currentmessagebatchindex): fix message batch indexing
42
+
43
+ * refactor(circuit tests): refactor code for circuit testing
44
+
45
+ * test(ceremonyparams.test): correct constants for CeremonyParams test
46
+
47
+ * perf(processmessages.circom + contracts): optimize last batch padding, remove unused inputs
48
+
49
+ * docs(padlastbatch method): update doc comment
50
+
51
+ * docs(poll.ts): remove stale comments
52
+
53
+ * docs(test comments): fix typos
54
+
55
+ * ci(treedepths mock): modify interface for mocked function
56
+
57
+ * fix(ceremony params test): fix circuit inputs
58
+
59
+ * test(messagevalidator): fix function calls for messagevalidator circuit in tests
60
+
61
+ * chore(comments): fix unusefull comments
62
+
63
+ * refactor(poll.sol): replace external contracts with maci only
64
+
65
+ * perf(messageprocessor.sol): hardcode initialization for batchHashes array
66
+
67
+ * docs(comments): fix some more comments
68
+
69
+ * test(test for pr checks): correct some of tests for PR checks
70
+
71
+ * ci: 🎡 renamed old ProcessMessages_10-2-1-2_test
72
+
73
+ * ci: 🎡 correct rapidsnark/build/prover path
74
+
75
+ * style(reviews): solve some reviews for merging
76
+
77
+ * refactor(messageaqq): remove more message merging and message aqq
78
+
79
+ * style(messageaqq): remove more message merging and message aqq
80
+
81
+ * refactor(messageaqq): remove message aqq from subgraph
82
+
83
+ * test(coordinator): hide NOT_MERGED_MESSAGE_TREE error
84
+
85
+ * test(coordinator): fix test about message merging
86
+
87
+ * test(proveonchain): change chainHash calculation
88
+
89
+ * test(proveonchain): fix chainHashes declaration
90
+
91
+ * test(proveonchain): fix chainHash calculation
92
+
93
+ * test(proveonchain): fix chainHashes calculations
94
+
95
+ * test(proveonchain): fix chainHashes calculation
96
+
97
+ * test(proveonchain): fix loop limit
98
+
99
+ * style(review comments): resolve some of review comments
100
+
101
+ * style(review comments): resolve some of review comments
102
+
103
+ * test(lint:ts): fix e2e test because of lint:ts check
104
+
105
+ * docs(wrong changes): fix wrong changes about documentation that is not in our scope
106
+
107
+ * refactor(batchsizes): change batchSizes struct with messageBatchSize variable
108
+
109
+ * refactor(contracts): rollback to provide external contract references
110
+
111
+ * docs(messageprocessor.sol): fix typo
112
+
113
+ * refactor(messagebatchsize): chenge messageBatchSize location from Params.sol to Poll.sol
114
+
115
+ * refactor(maxmessages): remove maxMessages from maxValues
116
+
117
+ * refactor(sltimestemp): remove slTimestamp from circuits
118
+
119
+ * refactor(review comments): resolve more review comments
120
+
121
+ * fix(subgraph): fix bug about maxVoteOptions dunction call
122
+
123
+ * fix(sltimestamp): fix test for removing slTimestap signal
124
+
125
+ * refactor(promise.all): refactor promise.all for only one async call
126
+
127
+ * fix(subgraph): try to fix subgraph build
128
+
129
+ * revert(.nx folder): remove .nx folder from cli folder
130
+
131
+ ### Features
132
+
133
+ * anonymous poll joining milestone 1 ([#1625](https://github.com/privacy-scaling-explorations/maci/issues/1625)) ([5566cfe](https://github.com/privacy-scaling-explorations/maci/commit/5566cfece1ed989ececdaad07edb2fc3a0b4741a))
134
+
135
+
136
+ ### Code Refactoring
137
+
138
+ * test suite cleanup ([#2233](https://github.com/privacy-scaling-explorations/maci/issues/2233)) ([#2232](https://github.com/privacy-scaling-explorations/maci/issues/2232)) ([0d42bb0](https://github.com/privacy-scaling-explorations/maci/commit/0d42bb09da9025d0481c45def982d155fda79b76))
139
+ * user sdk ([#2064](https://github.com/privacy-scaling-explorations/maci/issues/2064)) ([aac1ce7](https://github.com/privacy-scaling-explorations/maci/commit/aac1ce7d4db7141a6d57bf9c940751d0886b5d9e))
140
+
141
+
142
+ ### Miscellaneous
143
+
144
+ * add MACI key generation instructions and typo correction ([#1996](https://github.com/privacy-scaling-explorations/maci/issues/1996)) ([ee420d4](https://github.com/privacy-scaling-explorations/maci/commit/ee420d414674b407ca83c6a81e87411ef75b926a))
145
+ * add maci platform blogpost ([#1942](https://github.com/privacy-scaling-explorations/maci/issues/1942)) ([83066fc](https://github.com/privacy-scaling-explorations/maci/commit/83066fcf68b6a0b8b8984916a887d0a6a3146964))
146
+ * add PGA to project list ([#1983](https://github.com/privacy-scaling-explorations/maci/issues/1983)) ([7d6c77d](https://github.com/privacy-scaling-explorations/maci/commit/7d6c77d6680eee31543780e44ab0026536d2bf79))
147
+ * add prettier fixes after update ([dbdb74a](https://github.com/privacy-scaling-explorations/maci/commit/dbdb74ad75085d0ee717bae0a0c6c710b6ccc3d7))
148
+ * **blog:** getting started blog post ([6073a78](https://github.com/privacy-scaling-explorations/maci/commit/6073a7887ebd3f19dfb43bd11898cc265d7078a7))
149
+ * bump docusaurus packages to ^3.7.0 ([301f7b7](https://github.com/privacy-scaling-explorations/maci/commit/301f7b7614a2709f8912c7c78a6db03b266632e4))
150
+ * **case-studies:** added eth tgu and eth mx ([#2022](https://github.com/privacy-scaling-explorations/maci/issues/2022)) ([93a1ebb](https://github.com/privacy-scaling-explorations/maci/commit/93a1ebb1ada5fb6d2aad9f36eec180eac260e2f0))
151
+ * **case-studies:** updated case studies ([#1999](https://github.com/privacy-scaling-explorations/maci/issues/1999)) ([5d91bcd](https://github.com/privacy-scaling-explorations/maci/commit/5d91bcdd38760c5a87107d7326902e34551abd69))
152
+ * **deps-dev:** bump @docusaurus/module-type-aliases ([15b6556](https://github.com/privacy-scaling-explorations/maci/commit/15b6556f1a0d6b1f8605848b26968b63bbe02f7f))
153
+ * **deps-dev:** bump @types/node from 20.17.19 to 22.13.9 ([aa7c356](https://github.com/privacy-scaling-explorations/maci/commit/aa7c356469592547f3d60c05077268267d7ea186))
154
+ * **deps-dev:** bump @types/node from 22.10.7 to 22.12.0 ([#2073](https://github.com/privacy-scaling-explorations/maci/issues/2073)) ([1dcb28e](https://github.com/privacy-scaling-explorations/maci/commit/1dcb28e33699ee91f9691c1073d4da0293e406c0))
155
+ * **deps-dev:** bump @types/node from 22.12.0 to 22.13.1 ([5f06af0](https://github.com/privacy-scaling-explorations/maci/commit/5f06af0180f522f552519529c07d2bb660fdd586))
156
+ * **deps-dev:** bump @types/node from 22.13.1 to 22.13.4 ([dba94f4](https://github.com/privacy-scaling-explorations/maci/commit/dba94f4fe6d405eaca655dfdc8ca01d57664b99b))
157
+ * **deps-dev:** bump @types/node from 22.13.9 to 22.13.10 ([#2241](https://github.com/privacy-scaling-explorations/maci/issues/2241)) ([3f50bb6](https://github.com/privacy-scaling-explorations/maci/commit/3f50bb65db4cd83b5ebe9d4fb1b7a6d650bb1c51))
158
+ * **deps-dev:** bump @types/node from 22.9.0 to 22.10.7 ([3e4a5ae](https://github.com/privacy-scaling-explorations/maci/commit/3e4a5ae43cc57d6ebaedeb5ce95ca6dd1c968ffe))
159
+ * **deps-dev:** bump @types/react from 19.0.10 to 19.0.11 ([91590bd](https://github.com/privacy-scaling-explorations/maci/commit/91590bd19d53e173482e4a0054b10a6707f5c75b))
160
+ * **deps-dev:** bump @types/react from 19.0.7 to 19.0.8 ([#2065](https://github.com/privacy-scaling-explorations/maci/issues/2065)) ([b7a81ac](https://github.com/privacy-scaling-explorations/maci/commit/b7a81ac188b460622b908392f479a85931667cc1))
161
+ * **deps-dev:** bump @types/react from 19.0.8 to 19.0.10 ([#2148](https://github.com/privacy-scaling-explorations/maci/issues/2148)) ([c2bb8d0](https://github.com/privacy-scaling-explorations/maci/commit/c2bb8d087e3dfd733eb21ec6d84948e986c47c8a))
162
+ * **deps-dev:** bump typescript and typedoc ([4ee5de5](https://github.com/privacy-scaling-explorations/maci/commit/4ee5de5e29c6326b6728dc2ccd97da3bdea42fd7))
163
+ * **deps-dev:** bump typescript from 5.7.3 to 5.8.2 ([e37f1bf](https://github.com/privacy-scaling-explorations/maci/commit/e37f1bffd8193de316e748d0406cfb606455cb46))
164
+ * **deps:** bump @easyops-cn/docusaurus-search-local ([b35b591](https://github.com/privacy-scaling-explorations/maci/commit/b35b59173f84ed189debae26edcc608bf5253863))
165
+ * **deps:** bump @easyops-cn/docusaurus-search-local ([80f300a](https://github.com/privacy-scaling-explorations/maci/commit/80f300a66e3ad9d82012cab63f04a773d98a737d))
166
+ * **deps:** bump @easyops-cn/docusaurus-search-local ([a894194](https://github.com/privacy-scaling-explorations/maci/commit/a8941943fac5d90fcd1e21c834a0dd7a07f5c866))
167
+ * **deps:** bump docusaurus-plugin-image-zoom from 2.0.0 to 3.0.1 ([c7c7f85](https://github.com/privacy-scaling-explorations/maci/commit/c7c7f8564810e07a5faefc63be45f0c241db3277))
168
+ * **deps:** bump prism-react-renderer from 2.4.0 to 2.4.1 ([fe00c0c](https://github.com/privacy-scaling-explorations/maci/commit/fe00c0c2fda9f09d48579d1790411e06307a2047))
169
+ * **deps:** bump react and @types/react ([b239845](https://github.com/privacy-scaling-explorations/maci/commit/b23984507e62963b2b92dbf79a00b09cc1d4ea13))
170
+ * **docs:** added v3 to docs ([#2123](https://github.com/privacy-scaling-explorations/maci/issues/2123)) ([48baee8](https://github.com/privacy-scaling-explorations/maci/commit/48baee8474c1589861e0ddb078c31589ffa48d75))
171
+ * **documentation:** added getting started with maci article to docs ([#1962](https://github.com/privacy-scaling-explorations/maci/issues/1962)) ([23518b0](https://github.com/privacy-scaling-explorations/maci/commit/23518b09901cc5abeb9ee720ab69d1584514f12f))
172
+ * fix 404 status URL ([#1949](https://github.com/privacy-scaling-explorations/maci/issues/1949)) ([38cbf66](https://github.com/privacy-scaling-explorations/maci/commit/38cbf66dcc7f51e98a0167db23ed3128eba44222))
173
+ * fix 404 status URL ([#1977](https://github.com/privacy-scaling-explorations/maci/issues/1977)) ([fb3c31e](https://github.com/privacy-scaling-explorations/maci/commit/fb3c31ef14113ba75770933808c2e3ce4a525a83))
174
+ * **frontend-guide:** added version ([#1959](https://github.com/privacy-scaling-explorations/maci/issues/1959)) ([2f03bd8](https://github.com/privacy-scaling-explorations/maci/commit/2f03bd82f6f6b5d705df4b432d79b9d13a8ac553))
175
+ * remove outdated info ([#2033](https://github.com/privacy-scaling-explorations/maci/issues/2033)) ([2085839](https://github.com/privacy-scaling-explorations/maci/commit/2085839ea1615fce817dcfa75a6ec7e22bccf7c2))
176
+ * replace space in slug with dash ([#2001](https://github.com/privacy-scaling-explorations/maci/issues/2001)) ([d0138d3](https://github.com/privacy-scaling-explorations/maci/commit/d0138d3f904e76d74d494c6c5f110fb398fa5408))
177
+ * roadmap 2025 blogpost ([#2267](https://github.com/privacy-scaling-explorations/maci/issues/2267)) ([24432b4](https://github.com/privacy-scaling-explorations/maci/commit/24432b41a517ad5ecac569a1ce84337eb1fc7baf))
178
+ * **subgraph-docs:** added alchemy to subgraph docs ([#1964](https://github.com/privacy-scaling-explorations/maci/issues/1964)) ([f180601](https://github.com/privacy-scaling-explorations/maci/commit/f18060169350dc8f5a640b9f3d9e69864c6a9d41))
179
+ * type fixes and bump react-dom to ^19.0.0 ([f772a5c](https://github.com/privacy-scaling-explorations/maci/commit/f772a5cd7f7cdd3e28f74e0cab87ec9c88c2c626))
180
+ * update contribution guidelines ([#1975](https://github.com/privacy-scaling-explorations/maci/issues/1975)) ([11c5b29](https://github.com/privacy-scaling-explorations/maci/commit/11c5b297ea43a84128c9928f3d2acacce0b07ef8))
181
+ * update v3 docs to ensure they are up to date ([0d1df70](https://github.com/privacy-scaling-explorations/maci/commit/0d1df703bb1cc84ac650dc18862c841043d512a3))
182
+ * **use-cases:** updated use cases and case studies ([#1969](https://github.com/privacy-scaling-explorations/maci/issues/1969)) ([a994d4d](https://github.com/privacy-scaling-explorations/maci/commit/a994d4d5daf340e1892f9799da0c671df4daad50))
183
+
184
+
185
+
186
+ ## [3.0.0](https://github.com/privacy-scaling-explorations/maci/compare/v2.5.0...v3.0.0) (2025-02-05)
187
+
188
+ ### Features
189
+ * Integration of Anon Poll Joining grant code
190
+ * Voice credits custom per poll
191
+ * Custom Gatekeepers per poll
192
+ * MACI Offchain happy path based on Vitalik’s idea: [Ethereum Research MACI with mostly-off-chain "happy path"](https://ethresear.ch/t/maci-with-mostly-off-chain-happy-path/19527)
193
+ * Separation of duties between cli and SDK to ensure the SDK it’s easy to integrate
194
+
195
+ ### Miscellaneous
196
+ * General cleanup and refactoring
197
+
198
+ ## [2.5.0](https://github.com/privacy-scaling-explorations/maci/compare/v2.4.0...v2.5.0) (2024-11-20)
199
+
200
+
201
+ ### Bug Fixes
202
+
203
+ * **website:** website build ([0ee4865](https://github.com/privacy-scaling-explorations/maci/commit/0ee4865b72569912d61b6b770f83dce236ef7ae7))
204
+
205
+
206
+ ### Miscellaneous
207
+
208
+ * add ethglobal singapore projects ([#1879](https://github.com/privacy-scaling-explorations/maci/issues/1879)) ([822f1ff](https://github.com/privacy-scaling-explorations/maci/commit/822f1ffa5e86299e1c704e95adeb67bd0b66c8ad))
209
+ * **deps-dev:** bump @types/node from 22.4.1 to 22.8.1 ([#1873](https://github.com/privacy-scaling-explorations/maci/issues/1873)) ([c1b9c0e](https://github.com/privacy-scaling-explorations/maci/commit/c1b9c0ed18eb3fae5e189dff952a8ab9dfb2f9b1))
210
+ * **deps-dev:** bump @types/node from 22.8.1 to 22.9.0 ([0e11e5d](https://github.com/privacy-scaling-explorations/maci/commit/0e11e5d668fed2e2168de56e87981b0edcca8cd9))
211
+ * **deps-dev:** bump @types/react from 18.3.11 to 18.3.12 ([369aac3](https://github.com/privacy-scaling-explorations/maci/commit/369aac395247d5aa8f64d3eed15505c90f073d92))
212
+ * **deps-dev:** bump @types/react from 18.3.3 to 18.3.11 ([6d85934](https://github.com/privacy-scaling-explorations/maci/commit/6d8593400b2b9d75d44781a7d6f235c80fa48394))
213
+ * **deps-dev:** bump typescript from 5.5.4 to 5.6.3 ([8058c5d](https://github.com/privacy-scaling-explorations/maci/commit/8058c5de1d865317c79a00508b672091cd7b1eb0))
214
+ * **deps:** bump @docusaurus/theme-common from 3.5.1 to 3.5.2 ([#1875](https://github.com/privacy-scaling-explorations/maci/issues/1875)) ([ae7fdaa](https://github.com/privacy-scaling-explorations/maci/commit/ae7fdaa83792c49ce918c23d566acfa492fcc93f))
215
+ * **deps:** bump @mdx-js/react from 3.0.1 to 3.1.0 ([5235f5c](https://github.com/privacy-scaling-explorations/maci/commit/5235f5c1a425b942f155b3b1dbcb1f75d6d4b820))
216
+ * **deps:** bump @mdx-js/react from 3.0.1 to 3.1.0 ([#1862](https://github.com/privacy-scaling-explorations/maci/issues/1862)) ([d90e786](https://github.com/privacy-scaling-explorations/maci/commit/d90e786fde9c3663c783b26d258a8f2c0f7f8937))
217
+ * **docs:** improved docs, added resources ([#1843](https://github.com/privacy-scaling-explorations/maci/issues/1843)) ([6d08c1a](https://github.com/privacy-scaling-explorations/maci/commit/6d08c1af562057066c4f3078dcbceb6c5bf709f6))
218
+ * **documentation:** added guides and improved overall docs ([cebf302](https://github.com/privacy-scaling-explorations/maci/commit/cebf3022ab07a2380efcec95c5ae58d3f3f95089))
219
+ * q3 in review blogpost ([#1878](https://github.com/privacy-scaling-explorations/maci/issues/1878)) ([b40f489](https://github.com/privacy-scaling-explorations/maci/commit/b40f489992c2e38ed90cd634ded6d960eb8dfe8f))
220
+ * update vitalik blog link ([#1923](https://github.com/privacy-scaling-explorations/maci/issues/1923)) ([6bdb342](https://github.com/privacy-scaling-explorations/maci/commit/6bdb342d55c8445dd4807deb033e7f40e0e1528e))
221
+
222
+
223
+
224
+ ## [2.4.0](https://github.com/privacy-scaling-explorations/maci/compare/v2.3.0...v2.4.0) (2024-09-30)
225
+
226
+
227
+ ### Code Refactoring
228
+
229
+ * redesigned projects built with MACI page ([#1813](https://github.com/privacy-scaling-explorations/maci/issues/1813)) ([f730dd7](https://github.com/privacy-scaling-explorations/maci/commit/f730dd7e87689edbbc276b1cf170cbc17e580a3c))
230
+
231
+
232
+ ### Miscellaneous
233
+
234
+ * **deps:** bump prism-react-renderer from 2.3.1 to 2.4.0 ([#1816](https://github.com/privacy-scaling-explorations/maci/issues/1816)) ([79dc24e](https://github.com/privacy-scaling-explorations/maci/commit/79dc24eb936d4ef9adbd873fda96214e1d449a75))
235
+ * **docs:** update link for AccQueue contract ([#1824](https://github.com/privacy-scaling-explorations/maci/issues/1824)) ([80db080](https://github.com/privacy-scaling-explorations/maci/commit/80db080da7dab83c7b283c60e8e659164d507aec))
236
+ * **maci-wrapper-guide:** updated maciwrapper guide ([#1831](https://github.com/privacy-scaling-explorations/maci/issues/1831)) ([f9ac844](https://github.com/privacy-scaling-explorations/maci/commit/f9ac8444f2e85adfd0023df66d0419774ec91ea5))
237
+
238
+
239
+
240
+ ## [2.3.0](https://github.com/privacy-scaling-explorations/maci/compare/v2.2.1...v2.3.0) (2024-09-05)
241
+
242
+
243
+ ### Miscellaneous
244
+
245
+ * added polygon and gnosis to supported networks and benchmark ([0a4ead0](https://github.com/privacy-scaling-explorations/maci/commit/0a4ead0aa9b00244206687d5a13bbdd35628c30c))
246
+ * **blog:** anonymous poll joining ([#1805](https://github.com/privacy-scaling-explorations/maci/issues/1805)) ([1c34f5b](https://github.com/privacy-scaling-explorations/maci/commit/1c34f5bc9865f7f59547240454d27b88c58fd390))
247
+ * **deps-dev:** bump @docusaurus/module-type-aliases ([90ecec9](https://github.com/privacy-scaling-explorations/maci/commit/90ecec92210f1ddeaf67b7bf1570a0de0b1b8777))
248
+ * **deps:** bump rehype-katex from 7.0.0 to 7.0.1 ([6091223](https://github.com/privacy-scaling-explorations/maci/commit/6091223e0be470b421407231dd3c6786b3d8da39))
249
+ * **docs:** remove version banner in v1.2 ([#1797](https://github.com/privacy-scaling-explorations/maci/issues/1797)) ([a97f395](https://github.com/privacy-scaling-explorations/maci/commit/a97f3956b75edf457f61e8792744cb33da202419))
250
+ * update trusted setup docs and fix links ([#1806](https://github.com/privacy-scaling-explorations/maci/issues/1806)) ([3154f1a](https://github.com/privacy-scaling-explorations/maci/commit/3154f1aade391f25853e556628c42c706de66e66))
251
+
252
+
253
+
254
+ ## [2.2.0](https://github.com/privacy-scaling-explorations/maci/compare/v2.1.0...v2.2.0) (2024-08-19)
255
+
256
+
257
+ ### Features
258
+
259
+ * add matomo plugin ([#1769](https://github.com/privacy-scaling-explorations/maci/issues/1769)) ([5ed30d3](https://github.com/privacy-scaling-explorations/maci/commit/5ed30d3dcadc02fdd1b285ce0d544883bd36c64e))
260
+ * implement cards for the blog ([#1752](https://github.com/privacy-scaling-explorations/maci/issues/1752)) ([6ba623a](https://github.com/privacy-scaling-explorations/maci/commit/6ba623a233f5ab4fa162bdca2cb63270447ca652))
261
+ * **website:** add darkmode for blog cards ([#1753](https://github.com/privacy-scaling-explorations/maci/issues/1753)) ([bdba94e](https://github.com/privacy-scaling-explorations/maci/commit/bdba94ee7b6fd0e00113cc1896c3b90338c2ffae))
262
+
263
+
264
+ ### Miscellaneous
265
+
266
+ * bump [@docusaurus](https://github.com/docusaurus) packages to v3.5.1 ([7000013](https://github.com/privacy-scaling-explorations/maci/commit/70000139dec38b99d80c6200e19d56ef3d43e207))
267
+ * **contracts:** deploy contracts to L2s, store addresses and benchmark message batch size ([#1751](https://github.com/privacy-scaling-explorations/maci/issues/1751)) ([9e771a0](https://github.com/privacy-scaling-explorations/maci/commit/9e771a09b8f5de8c47ad89f5bb53b542aed6db05))
268
+ * **contracts:** use cwd path for contract storage and config ([a78408d](https://github.com/privacy-scaling-explorations/maci/commit/a78408dd597106a712fbc0a4dfd6451fd270bc45))
269
+ * **deps-dev:** bump @docusaurus/tsconfig from 3.5.1 to 3.5.2 ([#1780](https://github.com/privacy-scaling-explorations/maci/issues/1780)) ([94cd505](https://github.com/privacy-scaling-explorations/maci/commit/94cd50514dc030e08a69ac8e435dcd9dba5b0d18))
270
+ * **deps-dev:** bump @types/node from 22.1.0 to 22.2.0 ([ac18985](https://github.com/privacy-scaling-explorations/maci/commit/ac189852bf6abb787736c474ad87927afaa5163c))
271
+ * **deps-dev:** bump @types/node from 22.2.0 to 22.4.1 ([#1779](https://github.com/privacy-scaling-explorations/maci/issues/1779)) ([4a929e0](https://github.com/privacy-scaling-explorations/maci/commit/4a929e0b9a5c4de5ac0345e742668a3400798867))
272
+ * **deps:** bump @docusaurus/theme-classic from 3.4.0 to 3.5.1 ([aa03eae](https://github.com/privacy-scaling-explorations/maci/commit/aa03eae0d59bb8ab236562746d9716bbcf91f846))
273
+ * **deps:** bump @docusaurus/types from 3.4.0 to 3.5.1 ([51029f2](https://github.com/privacy-scaling-explorations/maci/commit/51029f24e69077be067f077df17a912f4b67a61c))
274
+ * **deps:** bump @easyops-cn/docusaurus-search-local ([#1760](https://github.com/privacy-scaling-explorations/maci/issues/1760)) ([6a2a7cb](https://github.com/privacy-scaling-explorations/maci/commit/6a2a7cb24250d54493e32a2d1bde08db6fb4dbd3))
275
+ * update trusted setup docs ([5fa7640](https://github.com/privacy-scaling-explorations/maci/commit/5fa7640543a572ba295fc0ae9c3bb63a3b6eba07))
276
+
277
+
278
+
279
+ ## [2.1.0](https://github.com/privacy-scaling-explorations/maci/compare/v2.0.0...v2.1.0) (2024-08-07)
280
+
281
+
282
+ ### Miscellaneous
283
+
284
+ * **blog:** add v2 blog post ([068f207](https://github.com/privacy-scaling-explorations/maci/commit/068f20705694e05d09df0ead66e5e8d47541a8b2))
285
+ * **blog:** fix audit link in v2 blog ([9012d1d](https://github.com/privacy-scaling-explorations/maci/commit/9012d1da5fc98a65a7b87e28af3dbec7eaf67ba1))
286
+ * **deployment:** ensure user is aware of chanding the coordinator key ([14317d3](https://github.com/privacy-scaling-explorations/maci/commit/14317d3de125f01fa74e5e48d0c51d09bba1bf89))
287
+
288
+
289
+
290
+ ## [2.0.0](https://github.com/privacy-scaling-explorations/maci/compare/v1.2.0...v2.0.0) (2024-08-06)
291
+
292
+
293
+ ### Features
294
+
295
+ * add extractVkToFile function to cli command ([346ebee](https://github.com/privacy-scaling-explorations/maci/commit/346ebee25b0cc624bccfc0f06f9f5a6c05b0e00c))
296
+ * **contracts:** add deployment code for SemaphoreGatekeeper ([#1588](https://github.com/privacy-scaling-explorations/maci/issues/1588)) ([149df59](https://github.com/privacy-scaling-explorations/maci/commit/149df599c52762d41b6708b762b64028fc1b1eb4))
297
+ * **contracts:** tally qv and non-qv optimisations ([b0b7b38](https://github.com/privacy-scaling-explorations/maci/commit/b0b7b38bf008e8a542b550c75ada40ac21854944))
298
+ * **contract:** support qv and non-qv verification keys ([a0cce8c](https://github.com/privacy-scaling-explorations/maci/commit/a0cce8c52950b2232c5cd47e98825ce401aac002))
299
+ * **coordinator:** add coordinator controller ([da0b29b](https://github.com/privacy-scaling-explorations/maci/commit/da0b29b1834da631c00296c0f74662a93c90e0a5))
300
+ * **coordinator:** deploy subgraph from coordinator service ([d04d82c](https://github.com/privacy-scaling-explorations/maci/commit/d04d82cb4a3e022471726f87b24b2ee14b8ae0a2))
301
+ * export merge function and modify package version ([#1584](https://github.com/privacy-scaling-explorations/maci/issues/1584)) ([f6ae34a](https://github.com/privacy-scaling-explorations/maci/commit/f6ae34a3f9ea375cd5dac8f0ce8618e33509f8ad))
302
+ * **multiple-polls:** allow concurrent polls ([14e89ba](https://github.com/privacy-scaling-explorations/maci/commit/14e89baea1ede9bc9bad79fafb5c362d6a6a81e9))
303
+ * proof parallelization ([#1627](https://github.com/privacy-scaling-explorations/maci/issues/1627)) ([4e7f9eb](https://github.com/privacy-scaling-explorations/maci/commit/4e7f9eba79b5422fc1722978cc9d0f259381df60))
304
+ * **website:** added maci wrapper quickstarter in the docs ([#1624](https://github.com/privacy-scaling-explorations/maci/issues/1624)) ([89fef5a](https://github.com/privacy-scaling-explorations/maci/commit/89fef5abfcb90a5b163681c300d64ef0385243ea))
305
+
306
+
307
+ ### Bug Fixes
308
+
309
+ * add coordinator public key hash public input ([9766bbf](https://github.com/privacy-scaling-explorations/maci/commit/9766bbfcecd41bd0f39c1422978d959705b1b500))
310
+ * add typedoc folder to .gitignore and use pnpm v8 for ci ([4ad745a](https://github.com/privacy-scaling-explorations/maci/commit/4ad745af1c6e90cfea8fc98d8ab01311310ac617))
311
+ * **docs:** fix inaccurate cli instructions ([e0d1550](https://github.com/privacy-scaling-explorations/maci/commit/e0d15509534cc199a2782b734d812d24f7d826b5))
312
+ * typos workflow ([b36898c](https://github.com/privacy-scaling-explorations/maci/commit/b36898c1e5aad05ff77fdf91f0660055ff428fa9))
313
+
314
+
315
+ ### Miscellaneous
316
+
317
+ * add community events ([f4e57ed](https://github.com/privacy-scaling-explorations/maci/commit/f4e57ede2515b88465f839c6b7c5cc6722d0e425))
318
+ * add doc entries for new maci version (currently being developed) ([c72a130](https://github.com/privacy-scaling-explorations/maci/commit/c72a130cf6dcd4e8e5e59b374d8a63c1cfaae8cd))
319
+ * add documentation entry for already deployed smart contracts ([#1586](https://github.com/privacy-scaling-explorations/maci/issues/1586)) ([1037f78](https://github.com/privacy-scaling-explorations/maci/commit/1037f78841f3a038a9aa0f7bb62cfd1ea0e4debc))
320
+ * add Gitcoin and scaffold-eth to blog post ([e8ba8f8](https://github.com/privacy-scaling-explorations/maci/commit/e8ba8f82d5b54d1626b78e712ba4ab5b0809a6ab))
321
+ * add links to the smart contracts code in the docs ([#1646](https://github.com/privacy-scaling-explorations/maci/issues/1646)) ([a48a53f](https://github.com/privacy-scaling-explorations/maci/commit/a48a53fbe361f7a8d111e29c1a60d0f97b36c231))
322
+ * add meta desc to roadmap post ([396878f](https://github.com/privacy-scaling-explorations/maci/commit/396878ff06382846679028fe57c2f1c4a7c76c8b))
323
+ * add more details regarding max values ([#1611](https://github.com/privacy-scaling-explorations/maci/issues/1611)) ([12da66e](https://github.com/privacy-scaling-explorations/maci/commit/12da66e80b47ffafb4e1161bdc7fcc078ece0e2a))
324
+ * **add note about non qv on integrating:** added a note about running non QV on Integratin page ([adc5767](https://github.com/privacy-scaling-explorations/maci/commit/adc57673c75e02284125c282627a5fc2b94b3792))
325
+ * add Project Ideas page ([c4fb163](https://github.com/privacy-scaling-explorations/maci/commit/c4fb163f4e19081bfd9a8c2ff45d8301e1d87730))
326
+ * add projects page to the doc website ([#1612](https://github.com/privacy-scaling-explorations/maci/issues/1612)) ([e341d80](https://github.com/privacy-scaling-explorations/maci/commit/e341d80075c3aa92087324af8288421ca4b22b80))
327
+ * add qv and non-qv key setup during deploy ([29f9e17](https://github.com/privacy-scaling-explorations/maci/commit/29f9e173e788105b420b2ec0ea4f40d423b27685))
328
+ * add revolutionsing public goods blog ([#1589](https://github.com/privacy-scaling-explorations/maci/issues/1589)) ([c792a50](https://github.com/privacy-scaling-explorations/maci/commit/c792a50576a0f4582c37ed6c137e12a8a1e08c00))
329
+ * add WIP q2 roadmap post ([309516a](https://github.com/privacy-scaling-explorations/maci/commit/309516a1c3cd7098ea7dd5e7ca9731b6df17192b))
330
+ * **added recommendations:** added recommendations to note ([40aae1d](https://github.com/privacy-scaling-explorations/maci/commit/40aae1d1dfff5aae9890592e339e9ce838ef7d10))
331
+ * **blog:** add deciphering maci post ([#1576](https://github.com/privacy-scaling-explorations/maci/issues/1576)) ([ef5115d](https://github.com/privacy-scaling-explorations/maci/commit/ef5115d1fbb5017150066ff4a0bb88b8f713be46))
332
+ * **blog:** add q2 in review blogpost ([#1688](https://github.com/privacy-scaling-explorations/maci/issues/1688)) ([6122dff](https://github.com/privacy-scaling-explorations/maci/commit/6122dffcf911ca8fcd4f583ac130830f4659504f))
333
+ * **blog:** add q3 roadmap post ([#1714](https://github.com/privacy-scaling-explorations/maci/issues/1714)) ([ee40301](https://github.com/privacy-scaling-explorations/maci/commit/ee403019c9d06bf39ed1a587045bfc1cae2b1e08))
334
+ * **blog:** add understanding maci blogpost ([#1567](https://github.com/privacy-scaling-explorations/maci/issues/1567)) ([fb69d51](https://github.com/privacy-scaling-explorations/maci/commit/fb69d5165e280cfefc6da08a69d62a316f5d8c11))
335
+ * **blog:** add whats next for maci post ([#1476](https://github.com/privacy-scaling-explorations/maci/issues/1476)) ([09ed89d](https://github.com/privacy-scaling-explorations/maci/commit/09ed89dd903c212313dfa019fdf20af5cce2ef63))
336
+ * **build:** move docusaurus deps from dev deps ([c17ed5f](https://github.com/privacy-scaling-explorations/maci/commit/c17ed5f8b90bc9c5c8b646ed29519494c380ca2c))
337
+ * bump docusaurus deps ([ee096d2](https://github.com/privacy-scaling-explorations/maci/commit/ee096d2bb827d30db3a56b440aee99f16b4414d3))
338
+ * bump to 1.2.2 ([e63278f](https://github.com/privacy-scaling-explorations/maci/commit/e63278f71937a1fa908ec8f4be2d43114701c134))
339
+ * **ceremony:** update trusted setup docs ([8cd24f2](https://github.com/privacy-scaling-explorations/maci/commit/8cd24f2a2d97d9b6e33d40157148b94309cc33d9))
340
+ * clarify circuits parameters ([#1575](https://github.com/privacy-scaling-explorations/maci/issues/1575)) ([00829f4](https://github.com/privacy-scaling-explorations/maci/commit/00829f4f6aeb5a675ac4f4439d32611d2ec3c42d))
341
+ * cleanup circuits folder and update docs ([122c1f7](https://github.com/privacy-scaling-explorations/maci/commit/122c1f72fb3ce309a51479669e8d819a463cb956))
342
+ * cleanup docs and re organize order ([#1492](https://github.com/privacy-scaling-explorations/maci/issues/1492)) ([5e967e1](https://github.com/privacy-scaling-explorations/maci/commit/5e967e1d896363af0a89874c96ac2ec78f965b5a))
343
+ * **cli:** simplify docs ([#1580](https://github.com/privacy-scaling-explorations/maci/issues/1580)) ([cbae20a](https://github.com/privacy-scaling-explorations/maci/commit/cbae20ae8b1cc72ee0fc36165a074849a193a49b))
344
+ * **config:** added optimism to config and fixed broken link ([#1578](https://github.com/privacy-scaling-explorations/maci/issues/1578)) ([3a278fb](https://github.com/privacy-scaling-explorations/maci/commit/3a278fb6a30aab9386f23f5cf1722c9985d71d24))
345
+ * **contracts:** optimization and typo fixes ([b0c6fbd](https://github.com/privacy-scaling-explorations/maci/commit/b0c6fbda664381b52946514119122c254c0c847e))
346
+ * **contracts:** update contracts documentation to reflect latest development ([1b370ae](https://github.com/privacy-scaling-explorations/maci/commit/1b370ae33c76630fe91bbc4babf09f2caaf40760))
347
+ * **deployment:** deploy to testnets and update docs ([799668e](https://github.com/privacy-scaling-explorations/maci/commit/799668e4b6e5a8587c9d3e3e90391f65eb02bef8))
348
+ * **deps-dev:** bump @docusaurus/tsconfig from 3.2.1 to 3.3.2 ([d032077](https://github.com/privacy-scaling-explorations/maci/commit/d0320772b30d94ee58d85d5c8eb7726f75516d90))
349
+ * **deps-dev:** bump @docusaurus/types from 3.1.1 to 3.2.0 ([6aeb390](https://github.com/privacy-scaling-explorations/maci/commit/6aeb3907fc420dd9093df086ba621e10a9903293))
350
+ * **deps-dev:** bump @types/node from 20.11.20 to 20.11.24 ([c575eca](https://github.com/privacy-scaling-explorations/maci/commit/c575eca7c54c262764ce794a919f3b1d58d7d8e7))
351
+ * **deps-dev:** bump @types/node from 20.11.24 to 20.11.25 ([5eb49f9](https://github.com/privacy-scaling-explorations/maci/commit/5eb49f9090fc6db3a80ad2d63548d93430ff7645))
352
+ * **deps-dev:** bump @types/node from 20.11.25 to 20.11.28 ([81bebaa](https://github.com/privacy-scaling-explorations/maci/commit/81bebaa880cbc15b8c8445d412b9fc9d89580e67))
353
+ * **deps-dev:** bump @types/node from 20.11.28 to 20.11.30 ([5ef4420](https://github.com/privacy-scaling-explorations/maci/commit/5ef44209d16cd441067fb67201daa61cf968382d))
354
+ * **deps-dev:** bump @types/node from 20.11.30 to 20.12.2 ([e7c32d0](https://github.com/privacy-scaling-explorations/maci/commit/e7c32d0ddd506727f229d950239a116961bbe1a0))
355
+ * **deps-dev:** bump @types/node from 20.12.10 to 20.12.11 ([3019c66](https://github.com/privacy-scaling-explorations/maci/commit/3019c66eb70e54b376e9464417e073bd98d96b6a))
356
+ * **deps-dev:** bump @types/node from 20.12.11 to 20.12.12 ([bd0a0a5](https://github.com/privacy-scaling-explorations/maci/commit/bd0a0a5a1ec685542c2af4f6962186176d5453ba))
357
+ * **deps-dev:** bump @types/node from 20.12.2 to 20.12.5 ([588392f](https://github.com/privacy-scaling-explorations/maci/commit/588392f2f773addce0204f236fc26981ead1f7bb))
358
+ * **deps-dev:** bump @types/node from 20.12.5 to 20.12.7 ([f1b00de](https://github.com/privacy-scaling-explorations/maci/commit/f1b00deb29788e390dcecd5b1741339f96f06f73))
359
+ * **deps-dev:** bump @types/node from 20.12.7 to 20.12.10 ([cf5026a](https://github.com/privacy-scaling-explorations/maci/commit/cf5026a42a41c0078467fb477fdd51a2afb31e1f))
360
+ * **deps-dev:** bump @types/node from 20.14.10 to 20.14.11 ([01564c0](https://github.com/privacy-scaling-explorations/maci/commit/01564c0503379ca65ce90ea77fdc5ebcd9ae81c5))
361
+ * **deps-dev:** bump @types/node from 20.14.11 to 22.1.0 ([#1732](https://github.com/privacy-scaling-explorations/maci/issues/1732)) ([3c4b9d9](https://github.com/privacy-scaling-explorations/maci/commit/3c4b9d9c9eb7439c4ea9791e4388ff586530be50))
362
+ * **deps-dev:** bump @types/node from 20.14.2 to 20.14.8 ([636ac22](https://github.com/privacy-scaling-explorations/maci/commit/636ac22bd29d12e5af7f69c7dd639d0223595992))
363
+ * **deps-dev:** bump @types/node from 20.14.8 to 20.14.10 ([add0ce4](https://github.com/privacy-scaling-explorations/maci/commit/add0ce4e406fea4bfe2b839facc6a0a33b3fe3bf))
364
+ * **deps-dev:** bump typescript from 5.3.3 to 5.4.2 ([591c767](https://github.com/privacy-scaling-explorations/maci/commit/591c767308f746fbfc32a9f184192912895f080c))
365
+ * **deps-dev:** bump typescript from 5.4.2 to 5.4.3 ([a2f5c8a](https://github.com/privacy-scaling-explorations/maci/commit/a2f5c8ac32394fc7672051d5342baf7e6f9567ce))
366
+ * **deps-dev:** bump typescript from 5.4.3 to 5.4.4 ([5e047ea](https://github.com/privacy-scaling-explorations/maci/commit/5e047eaa96d508addf34e35764ddaf4deb221593))
367
+ * **deps-dev:** bump typescript from 5.4.4 to 5.4.5 ([ea6339d](https://github.com/privacy-scaling-explorations/maci/commit/ea6339da96dda38a931cb6d39615c9267ca45b81))
368
+ * **deps-dev:** bump typescript from 5.5.2 to 5.5.3 ([c979188](https://github.com/privacy-scaling-explorations/maci/commit/c979188358becfc4b434a2f73331e640ce595846))
369
+ * **deps-dev:** bump typescript from 5.5.3 to 5.5.4 ([8ed2e2b](https://github.com/privacy-scaling-explorations/maci/commit/8ed2e2b109a950137dd289aa7d3eca4268079272))
370
+ * **deps:** bump @docusaurus/core from 3.2.1 to 3.3.2 ([d042099](https://github.com/privacy-scaling-explorations/maci/commit/d042099d164b34d16428cdb17359831fda2432e3))
371
+ * **deps:** bump @docusaurus/theme-classic from 3.2.1 to 3.3.2 ([470f1c7](https://github.com/privacy-scaling-explorations/maci/commit/470f1c7c5db4729c5e9f7165d8797cbeb441cd55))
372
+ * **deps:** bump @easyops-cn/docusaurus-search-local ([7f97317](https://github.com/privacy-scaling-explorations/maci/commit/7f97317d0f6bd009555582fee15ce230f6f5ca72))
373
+ * **deps:** bump @easyops-cn/docusaurus-search-local ([aff4a57](https://github.com/privacy-scaling-explorations/maci/commit/aff4a57028e5e25ec83c44c5ba6704b37cc19c21))
374
+ * **deps:** bump @easyops-cn/docusaurus-search-local ([059a867](https://github.com/privacy-scaling-explorations/maci/commit/059a867db30614431fd4d0b679d2911fbf2db601))
375
+ * **deps:** bump @easyops-cn/docusaurus-search-local ([2bdf08e](https://github.com/privacy-scaling-explorations/maci/commit/2bdf08efbae2f05404c48117bebe68fde63c5197))
376
+ * **deps:** bump @easyops-cn/docusaurus-search-local ([cd36a7a](https://github.com/privacy-scaling-explorations/maci/commit/cd36a7ad9c6ddda5281fe2e0ea4bda4194eb01ea))
377
+ * **deps:** bump clsx from 2.1.0 to 2.1.1 ([bb6849d](https://github.com/privacy-scaling-explorations/maci/commit/bb6849d5753849d3fcec2def4ca44818063c8c94))
378
+ * **deps:** bump react from 18.2.0 to 18.3.1 ([f98543d](https://github.com/privacy-scaling-explorations/maci/commit/f98543dcf7c20dd6fba69cd82f1f4c94fc33adae))
379
+ * **deps:** bump react-dom from 18.2.0 to 18.3.1 ([2a78ffe](https://github.com/privacy-scaling-explorations/maci/commit/2a78ffe84c72e1e000e98e7f60ee018cea231bab))
380
+ * **dev-deps:** bump docusaurus packages to 3.4.0 ([b2c5568](https://github.com/privacy-scaling-explorations/maci/commit/b2c5568ea21d494075bc2bd8908820583e73a07f))
381
+ * **diagram:** add contract architecture diagram ([ec5e036](https://github.com/privacy-scaling-explorations/maci/commit/ec5e036fd9fc7d37cd7e334aa64c839228542104))
382
+ * **docs:** added comments ([4c6a90f](https://github.com/privacy-scaling-explorations/maci/commit/4c6a90fdc36db41b3b361817997b19096a7dce26))
383
+ * **docs:** fixed typos ([0b6c9bc](https://github.com/privacy-scaling-explorations/maci/commit/0b6c9bc9721febcf4cfd287addd56141c7611586))
384
+ * **educational series:** maci history blog post ([489565f](https://github.com/privacy-scaling-explorations/maci/commit/489565f57f3327bdf499c61bf6dc4296a331ec33))
385
+ * ensure that it's clear that num signups account for empty leaf ([#1571](https://github.com/privacy-scaling-explorations/maci/issues/1571)) ([2a8e02c](https://github.com/privacy-scaling-explorations/maci/commit/2a8e02c985465dd82c9539e2d991f94ae03f59ea))
386
+ * extend contribution guidelines ([#1680](https://github.com/privacy-scaling-explorations/maci/issues/1680)) ([5c38c13](https://github.com/privacy-scaling-explorations/maci/commit/5c38c13f0dc192c8fdab737f874041f89ab0f722))
387
+ * **finalization:** ensure the quadratic voting flag is highlighted ([8fc3357](https://github.com/privacy-scaling-explorations/maci/commit/8fc3357a2f1b633e5a75d5e6fe914e0eb248f74f))
388
+ * fix typos ([e0547cd](https://github.com/privacy-scaling-explorations/maci/commit/e0547cd3bf48620fb8fbb556ee41ffa9d5cb9e3f))
389
+ * gatekeeper page ([#1443](https://github.com/privacy-scaling-explorations/maci/issues/1443)) ([e927480](https://github.com/privacy-scaling-explorations/maci/commit/e92748040aed84c7897e4d8badea8639eea4bd01)), closes [#1382](https://github.com/privacy-scaling-explorations/maci/issues/1382)
390
+ * **installation:** update installation guide with correct zkeys download command ([73ac514](https://github.com/privacy-scaling-explorations/maci/commit/73ac514976e77aaded5ae4b1227e077c2bc2bf83))
391
+ * **keys:** update maci keys in docs and scripts ([403262f](https://github.com/privacy-scaling-explorations/maci/commit/403262f3941a2b4e41b9cc05cc8dc340ebe5e759))
392
+ * **poll types:** add docs describing type of polls (qv/non qv) ([ff2607f](https://github.com/privacy-scaling-explorations/maci/commit/ff2607f04f1a174c1e8dcf07f1eddc6dbd1fc46f))
393
+ * post update based on feedback ([f018781](https://github.com/privacy-scaling-explorations/maci/commit/f01878111edcc0715b0009fe080c206afaeba5a8))
394
+ * **post-mortem:** upload post mortem writeup ([68c1f80](https://github.com/privacy-scaling-explorations/maci/commit/68c1f80846926418460bbb4951a679a5a1d1cb63))
395
+ * **quick-fixes:** added gitcoin gatekeeper ([cb002d9](https://github.com/privacy-scaling-explorations/maci/commit/cb002d9e51ff44a47567a7640a486cdf801d4d6b))
396
+ * **quickstart-and-gatekeepers:** improved quickstart and gatekeepers ([a0cb7bc](https://github.com/privacy-scaling-explorations/maci/commit/a0cb7bcb7a91b6f386a85bfc37916f3c6f2090fc))
397
+ * refactor circuits docs ([#1491](https://github.com/privacy-scaling-explorations/maci/issues/1491)) ([ee2c2ec](https://github.com/privacy-scaling-explorations/maci/commit/ee2c2ec133a8f5cce41edfc14b4f5a24e311f333))
398
+ * refactor documentation structure ([fa8a247](https://github.com/privacy-scaling-explorations/maci/commit/fa8a2474ace2fe1b4a3259928b63427fe1b8a42a))
399
+ * release post v1.2 ([#1211](https://github.com/privacy-scaling-explorations/maci/issues/1211)) ([27b80ce](https://github.com/privacy-scaling-explorations/maci/commit/27b80ce8c7dca24f007848d219aaf4d943e85906))
400
+ * **release:** publish 1.2.1 ([93564f8](https://github.com/privacy-scaling-explorations/maci/commit/93564f8a98baa0fee65db16e2e40209d9ac1b3ae))
401
+ * **release:** publish 2.0.0 ([04e647d](https://github.com/privacy-scaling-explorations/maci/commit/04e647d231df34952569ad6ff802e0b2333eb658))
402
+ * remove max values ([8f951b0](https://github.com/privacy-scaling-explorations/maci/commit/8f951b0fcc73212d99d3ddc962fbaa9788471fb6))
403
+ * remove repetitive words ([75d2410](https://github.com/privacy-scaling-explorations/maci/commit/75d2410106dec71ffca744404c8b5a201217435f))
404
+ * **resources:** add resources page ([bbd5e69](https://github.com/privacy-scaling-explorations/maci/commit/bbd5e69f69713789423ac97d41969887d2041383))
405
+ * **roadmap:** add new sections to the roadmap post ([e60b30d](https://github.com/privacy-scaling-explorations/maci/commit/e60b30d2d5db1f16f65554ef14d20996306a3f10))
406
+ * separate deployment docs and keep up to date ([67297a1](https://github.com/privacy-scaling-explorations/maci/commit/67297a16200b2056b82465a200268fbaac15469f))
407
+ * **smart contracts:** update smart contracts docs and separate in pages ([c8e1530](https://github.com/privacy-scaling-explorations/maci/commit/c8e1530bbc75e50e742a48cd5bccc529e5a5ca33))
408
+ * **solidity-docs:** add index page inside folders ([f48de7f](https://github.com/privacy-scaling-explorations/maci/commit/f48de7f95091dff08b1660f9add094744f7a0632))
409
+ * split primitives into own files and update to latest changes ([4b8ac24](https://github.com/privacy-scaling-explorations/maci/commit/4b8ac2484c15d1e1cce717d3caf9ee05dd739180))
410
+ * typo fixes ([bd0dfa9](https://github.com/privacy-scaling-explorations/maci/commit/bd0dfa9a106dcf04d8581a21952bd6c2b187d1ca))
411
+ * **typo-fix:** typo fixc ([2c244ef](https://github.com/privacy-scaling-explorations/maci/commit/2c244ef3323b17e13dd9a923d2d29b368a34a872))
412
+ * unify maci address arguments ([dfc5fd2](https://github.com/privacy-scaling-explorations/maci/commit/dfc5fd2050f60e869c940d656ed66c895dc23fe5))
413
+ * **update command-line interface docs:** update the Subcommands of the cli docs ([28cbbb8](https://github.com/privacy-scaling-explorations/maci/commit/28cbbb8e13f426a33f80cce6060efa023e3f8da2))
414
+ * update contributing guide with squash info ([ea1036d](https://github.com/privacy-scaling-explorations/maci/commit/ea1036d3a0fd86d5e4d06d1a174cad7bdbd36c00))
415
+ * update installation guide for circuit build ([0869208](https://github.com/privacy-scaling-explorations/maci/commit/0869208303d9a2cc5f23a0593bb4e814a6d54cd1))
416
+ * update installation instruction ([091a0d4](https://github.com/privacy-scaling-explorations/maci/commit/091a0d4f63d8bdb15a0e2bd64dbbb50b52726d4c))
417
+ * update integrating docs ([71922ca](https://github.com/privacy-scaling-explorations/maci/commit/71922ca7b011f7bfbdc25f8c4e1383f9ecd4d850))
418
+ * **update integrating in v1.2:** updated note about QV in v1.2 note ([4c0d335](https://github.com/privacy-scaling-explorations/maci/commit/4c0d335e247b4eb6639b02dd0b817a33918c1fcb))
419
+ * update MACI-RPGF section ([90a8085](https://github.com/privacy-scaling-explorations/maci/commit/90a808527455f470937c097feeae8933a35ac3f5))
420
+ * update missing [@docusaurus](https://github.com/docusaurus) deps ([cb13c23](https://github.com/privacy-scaling-explorations/maci/commit/cb13c23f5171f019c81fb07ac6cb28c1c7a60d53))
421
+ * update outdated info ([#1632](https://github.com/privacy-scaling-explorations/maci/issues/1632)) ([dad8c3c](https://github.com/privacy-scaling-explorations/maci/commit/dad8c3c7ade5cafc837fa794c0ab7ceba3407701))
422
+ * update roadmap page to reference new post & GH discussion ([3fcee63](https://github.com/privacy-scaling-explorations/maci/commit/3fcee63d5af8cbb48c8231a1291b47f88ea465d5))
423
+ * update the deployment docs as well as installation/circuits ([4bdce00](https://github.com/privacy-scaling-explorations/maci/commit/4bdce00946572ff13a8353dde0943f4b99c9a15e))
424
+ * update troubleshooting doc ([ee695d5](https://github.com/privacy-scaling-explorations/maci/commit/ee695d5b1593b77ec1e1fadb2abaf23300efa048))
425
+ * update v1.2.0 docs ([bd70c5f](https://github.com/privacy-scaling-explorations/maci/commit/bd70c5f02b33c563852ee0f97abd9b645cbcd444))
426
+ * **use-cases:** add use cases entry in the doc website and start adding content ([#1570](https://github.com/privacy-scaling-explorations/maci/issues/1570)) ([813da20](https://github.com/privacy-scaling-explorations/maci/commit/813da209423ae907324b3090c6fec657c626b106))
427
+ * **website:** update docusaurus missing packages ([056e204](https://github.com/privacy-scaling-explorations/maci/commit/056e204fcb6738efe163f70a65e895dc4c9cd057))
428
+ * **zkeys:** use ts to download zkey artifacts and simplify repo ([d364f24](https://github.com/privacy-scaling-explorations/maci/commit/d364f24c074a860744d10ed62eae73c58f8c3250))
429
+
430
+
431
+
432
+ ## [1.2.0](https://github.com/privacy-scaling-explorations/maci/compare/v1.1.1...v1.2.0) (2024-02-23)
433
+
434
+
435
+ ### Features
436
+
437
+ * add favicon ([4baefd6](https://github.com/privacy-scaling-explorations/maci/commit/4baefd6f4c5ebda3168dd3a2565535fd878a85f1))
438
+ * add hero image opacity ([4408bc0](https://github.com/privacy-scaling-explorations/maci/commit/4408bc072817b15d046a75670f3d90173bbd69cc))
439
+ * add homepage metadata ([be1ae0d](https://github.com/privacy-scaling-explorations/maci/commit/be1ae0d38627cbe0c88785355b901578d2b8e58d))
440
+ * add info disclaimer to roadmap ([dc1f210](https://github.com/privacy-scaling-explorations/maci/commit/dc1f2104ef011b81b4583a904fd98550e594f515))
441
+ * add info disclaimer to spec ([6a7bdeb](https://github.com/privacy-scaling-explorations/maci/commit/6a7bdeb3b2982d13fb3b0022afea9dfaec0ed920))
442
+ * add roadmap webpage ([c849237](https://github.com/privacy-scaling-explorations/maci/commit/c84923751f2b9a1ff6adb1bfc0dc23d7a5bb6aa4))
443
+ * add tech stack page [[#851](https://github.com/privacy-scaling-explorations/maci/issues/851)] ([d27b229](https://github.com/privacy-scaling-explorations/maci/commit/d27b229e2a644bc90c0500fde9a586e565c1a079))
444
+ * add tech stack page [[#851](https://github.com/privacy-scaling-explorations/maci/issues/851)] ([c581be9](https://github.com/privacy-scaling-explorations/maci/commit/c581be961d10c65b0722650fec1b782e473243e8))
445
+ * add versioning info [Fixes [#807](https://github.com/privacy-scaling-explorations/maci/issues/807)] ([518ffe8](https://github.com/privacy-scaling-explorations/maci/commit/518ffe8225387843c3cba3e23b35b3fc8f83e38f))
446
+ * build typedoc for website ([bd75ea4](https://github.com/privacy-scaling-explorations/maci/commit/bd75ea4a8aa7346ac2fcd5797527923c2038f66c))
447
+ * **circuits:** remove zkey-manager in favour of circomkit ([d79e9c0](https://github.com/privacy-scaling-explorations/maci/commit/d79e9c0ee18df27c3bd3e5e49924db21303d1c45))
448
+ * **cli:** add seed param for generate keypair command ([29d7b20](https://github.com/privacy-scaling-explorations/maci/commit/29d7b2057741012811622c30f91cda74cf4906eb))
449
+ * **cli:** improve cli integration ux ([7727ab1](https://github.com/privacy-scaling-explorations/maci/commit/7727ab1d99096b296d6c3f25956b0465d036aa4d))
450
+ * make image zoomable by adding package ([ee34a25](https://github.com/privacy-scaling-explorations/maci/commit/ee34a253521efe79f308456080fcbbf79e7484ab))
451
+ * optimize deployment and tally event ([185b407](https://github.com/privacy-scaling-explorations/maci/commit/185b407df6db0484824b99286a6b0e866a7345bf))
452
+ * specify we use SemVer ([078ccf6](https://github.com/privacy-scaling-explorations/maci/commit/078ccf6fd02671527593ea43efb4f9960eead755))
453
+ * update features on homepage ([9e930a8](https://github.com/privacy-scaling-explorations/maci/commit/9e930a840209986ea76ac8f4bcfc0bf335707975))
454
+ * update fonts ([2d8efdb](https://github.com/privacy-scaling-explorations/maci/commit/2d8efdbcb823b122a17ef5e9c750370c03c12236))
455
+ * update meta image ([bd4a330](https://github.com/privacy-scaling-explorations/maci/commit/bd4a3308b2601f61fdb5f5de8f57865293df4077))
456
+ * update sidebar ([6206a1b](https://github.com/privacy-scaling-explorations/maci/commit/6206a1b8849108d78997e00b01c6e7f11efce124))
457
+ * update ui ([6571b1e](https://github.com/privacy-scaling-explorations/maci/commit/6571b1e08b389aec92411da13269b23a0dc3b67b))
458
+ * update ui ([f62398e](https://github.com/privacy-scaling-explorations/maci/commit/f62398e0b9a35aa6e2f4ea198c21e7383d5675cc))
459
+
460
+
461
+ ### Bug Fixes
462
+
463
+ * **cli:** add a check that the subsidy verifying key was set correctly on chain ([6bda14d](https://github.com/privacy-scaling-explorations/maci/commit/6bda14dd7021846a639ce8cffef3a863eda2b447)), closes [#446](https://github.com/privacy-scaling-explorations/maci/issues/446)
464
+ * dark mode search result ([632b465](https://github.com/privacy-scaling-explorations/maci/commit/632b46587a2973b6898bc720af836e4777a1a0f0))
465
+ * footer link hover ([5fef6b3](https://github.com/privacy-scaling-explorations/maci/commit/5fef6b30199f6b47ca2fa72c5b052d13bdbc4ac7))
466
+ * header for Pre-Compiled Artifacts for testing ([967a8e0](https://github.com/privacy-scaling-explorations/maci/commit/967a8e056f4248ddf25da782318b13d7a618d0d4))
467
+ * homepage header ([cde43cf](https://github.com/privacy-scaling-explorations/maci/commit/cde43cfc4460d01371a3637e58f5a96b27f99bb6))
468
+ * internal doc links ([c906a94](https://github.com/privacy-scaling-explorations/maci/commit/c906a94b5e201e6102795c0881058f74699cc629))
469
+ * re-add blog image ([7822c9c](https://github.com/privacy-scaling-explorations/maci/commit/7822c9c2298edc9dbe97084bf182a9d12aaaf868))
470
+ * remove HackMD TOC ([7554524](https://github.com/privacy-scaling-explorations/maci/commit/755452414b85c78ff52e5b2ea3b14123a5748602))
471
+ * remove trailing chars ([3101a60](https://github.com/privacy-scaling-explorations/maci/commit/3101a6016ebda3385273b47b2de33f5fd9c1221f))
472
+ * remove trailing chars ([101fdaf](https://github.com/privacy-scaling-explorations/maci/commit/101fdafe3c094b3615b651b8ff33337f338d2178))
473
+ * **topup:** check valid new state leaf balance ([ec12d2b](https://github.com/privacy-scaling-explorations/maci/commit/ec12d2b1ec31b0607f65be49a5679fcae5e3939d))
474
+ * update broken links ([4f689d5](https://github.com/privacy-scaling-explorations/maci/commit/4f689d581fd5e3aa120adb327706a0a0d27ec996))
475
+ * update GH repo links to v1.1.1 tag ([8474267](https://github.com/privacy-scaling-explorations/maci/commit/847426712b202839762061fff2beabcdfc314119))
476
+ * update to singular "in detail" ([d352781](https://github.com/privacy-scaling-explorations/maci/commit/d352781fa6dbc117dbc036720fa536fc7247a93c))
477
+
478
+
479
+ ### Code Refactoring
480
+
481
+ * **circuits:** fix ts types, improve docs ([a849486](https://github.com/privacy-scaling-explorations/maci/commit/a84948685d2e4be426cef50c5c608c107b5142b1))
482
+ * **contracts:** add natspec across contracts and cleanup ([a6ad25e](https://github.com/privacy-scaling-explorations/maci/commit/a6ad25e3787fee837172b95ee706951806131bd4))
483
+ * **contracts:** optimize code by using immutable variables are removing redundant code ([d39d384](https://github.com/privacy-scaling-explorations/maci/commit/d39d3844690749b396ba66226224789b19af522d))
484
+ * **contracts:** refactor contracts code by removing dead code, and various optimizations ([7cbe5bd](https://github.com/privacy-scaling-explorations/maci/commit/7cbe5bd67dbfe98b46b485a75361a6cc3badb7ff))
485
+
486
+
487
+ ### Miscellaneous
488
+
489
+ * add contributing docs ([d5ca0cd](https://github.com/privacy-scaling-explorations/maci/commit/d5ca0cd81c88607779f7ed73f07087a71e1a4de5))
490
+ * add description to updateMentionFiles function, add typedoc/ in website/.gitignore ([1f7a509](https://github.com/privacy-scaling-explorations/maci/commit/1f7a509d85dc44f1fad0c7a96e37001143d75899))
491
+ * add maci 1.0 spec ([87aa8f8](https://github.com/privacy-scaling-explorations/maci/commit/87aa8f80061fec243bccf83299db1b45dc22219b))
492
+ * add programming language links ([7e850a0](https://github.com/privacy-scaling-explorations/maci/commit/7e850a00ace0be010f8206574c3feb7372fb689b))
493
+ * add roadmap blog post ([3a0c732](https://github.com/privacy-scaling-explorations/maci/commit/3a0c7321ed4d884f28354ba248fff6933e0e94b0))
494
+ * add types check ([69f038f](https://github.com/privacy-scaling-explorations/maci/commit/69f038f55e6c740d43b8b5376db999bcf92de845))
495
+ * **blog-post:** fixed header in v1.0 release post ([06590ca](https://github.com/privacy-scaling-explorations/maci/commit/06590ca5dd80e9336a60bd65092db84020950230))
496
+ * bump docusaurus packages ([00f5e38](https://github.com/privacy-scaling-explorations/maci/commit/00f5e38d892f6323edb3df6c430438763252a11c))
497
+ * bump homepage copy font size ([4692832](https://github.com/privacy-scaling-explorations/maci/commit/4692832ff1d3cf8ae33b87116bb156a471b22fd8))
498
+ * bump position of troublshooting page ([04440d7](https://github.com/privacy-scaling-explorations/maci/commit/04440d77847e9c0d44d66e122b894759621ef08c))
499
+ * **circuits:** fix wrong circuit param description ([0ede225](https://github.com/privacy-scaling-explorations/maci/commit/0ede2250defefeb7064e944ba691c5cf8913f175))
500
+ * clean up README ([e323734](https://github.com/privacy-scaling-explorations/maci/commit/e323734a168270f3dcb7ec3e0019cc75f5ef62ae))
501
+ * **cli:** change maci-cli script run instructions ([c51c34d](https://github.com/privacy-scaling-explorations/maci/commit/c51c34dc915721770474ad3555853ce1264aea07))
502
+ * **cli:** clarify cli commands ([3aa4f33](https://github.com/privacy-scaling-explorations/maci/commit/3aa4f33aa7f4558f16da65b5a3fb93b282bd4fe5))
503
+ * **cli:** update cli docs to reflect latest changes ([ca1a1eb](https://github.com/privacy-scaling-explorations/maci/commit/ca1a1eb86464fcc76fdaa9811070277a91748704))
504
+ * comment out new font-family ([d0624ef](https://github.com/privacy-scaling-explorations/maci/commit/d0624ef27cf9eb636e8dd08ac121dd9acb531af5))
505
+ * **contract:** apply linter for deploy scripts and contracts ([9af9c04](https://github.com/privacy-scaling-explorations/maci/commit/9af9c0497a2491eaf89fbff475cf0f60bc04f59c))
506
+ * **contract:** improve the content of the index.md file used as TOC for NatSpec docs ([017e1f8](https://github.com/privacy-scaling-explorations/maci/commit/017e1f8ee5cee77b77f269ace4e176322c329b7d))
507
+ * cut down /roadmap length ([5815208](https://github.com/privacy-scaling-explorations/maci/commit/5815208158143b42ba2083786cfdad5502cd80b2))
508
+ * **dependencies:** update project dependencies and remove redundant ones ([4c5ac27](https://github.com/privacy-scaling-explorations/maci/commit/4c5ac27767492c9867a6e2ab2acd6b10fe132847))
509
+ * **deps-dev:** bump @docusaurus/module-type-aliases ([ee4314d](https://github.com/privacy-scaling-explorations/maci/commit/ee4314d224cabdf620e2dd2e9d6deeae867e12f9))
510
+ * **deps-dev:** bump @docusaurus/module-type-aliases ([64aaad6](https://github.com/privacy-scaling-explorations/maci/commit/64aaad6734e3e235b84a66ca15bfee0d917e12ae))
511
+ * **deps-dev:** bump @docusaurus/tsconfig from 3.1.0 to 3.1.1 ([1d86718](https://github.com/privacy-scaling-explorations/maci/commit/1d867180f7a461a024458da43f0bf11df70a706c))
512
+ * **deps-dev:** bump @docusaurus/types from 3.0.0 to 3.1.0 ([2de823f](https://github.com/privacy-scaling-explorations/maci/commit/2de823fd5f480a4f0cbf7028ffd19b59cc007ade))
513
+ * **deps-dev:** bump @types/node from 20.11.0 to 20.11.2 ([45839e8](https://github.com/privacy-scaling-explorations/maci/commit/45839e8c2668ec56ea06221758605f88029ea8a1))
514
+ * **deps-dev:** bump @types/node from 20.11.10 to 20.11.16 ([8144919](https://github.com/privacy-scaling-explorations/maci/commit/8144919939f7d9a841eb6fce7182628cedbf8746))
515
+ * **deps-dev:** bump @types/node from 20.11.16 to 20.11.17 ([44de5db](https://github.com/privacy-scaling-explorations/maci/commit/44de5db0c25a5fdfd5c13c397f49edb7185bf1f5))
516
+ * **deps-dev:** bump @types/node from 20.11.17 to 20.11.19 ([8d86b32](https://github.com/privacy-scaling-explorations/maci/commit/8d86b32ef70b89f4239aad3903fd36937cf6a90f))
517
+ * **deps-dev:** bump @types/node from 20.11.2 to 20.11.5 ([7698ede](https://github.com/privacy-scaling-explorations/maci/commit/7698edef2b95bc017e54c1fc0d796ccc9da3de85))
518
+ * **deps-dev:** bump @types/node from 20.11.5 to 20.11.10 ([a2c445a](https://github.com/privacy-scaling-explorations/maci/commit/a2c445a295e792e421f6c1537b2b21f8a7648683))
519
+ * **deps-dev:** bump lerna from 6.6.2 to 8.0.2 ([4b150ad](https://github.com/privacy-scaling-explorations/maci/commit/4b150ade7c4fbaf88eb0e1f629cec6749377706d))
520
+ * **deps-dev:** bump typescript from 5.2.2 to 5.3.3 ([4ec399d](https://github.com/privacy-scaling-explorations/maci/commit/4ec399dd6e984c12ebd24d0b20c14c1104872500))
521
+ * **deps:** bump @docusaurus/preset-classic from 3.1.0 to 3.1.1 ([35e1954](https://github.com/privacy-scaling-explorations/maci/commit/35e1954b810e4185d2f370b51efed4273ee7811b))
522
+ * **deps:** bump @docusaurus/theme-classic from 3.0.0 to 3.1.0 ([9ff0c26](https://github.com/privacy-scaling-explorations/maci/commit/9ff0c26904ede3dfea76652d7072369e583d5175))
523
+ * **deps:** bump @docusaurus/theme-classic from 3.1.0 to 3.1.1 ([049bb10](https://github.com/privacy-scaling-explorations/maci/commit/049bb103a0f2cc288dbff29ccf64768dedb7705a))
524
+ * **deps:** bump @easyops-cn/docusaurus-search-local ([ae6cd48](https://github.com/privacy-scaling-explorations/maci/commit/ae6cd489d55634b8415ade080ec73abbc9d747a1))
525
+ * **deps:** bump @mdx-js/react from 3.0.0 to 3.0.1 ([69990ab](https://github.com/privacy-scaling-explorations/maci/commit/69990abe87f21f85d643fa7bf649a1486903928c))
526
+ * **deps:** bump clsx from 1.2.1 to 2.1.0 ([6e625b3](https://github.com/privacy-scaling-explorations/maci/commit/6e625b3c67a1899d73aa5dc23a3b4d8d0e91f316))
527
+ * **deps:** bump docusaurus-plugin-image-zoom from 1.0.1 to 2.0.0 ([2fa993c](https://github.com/privacy-scaling-explorations/maci/commit/2fa993c86a56cd97b8700fc8c6aca3a20598cfb0))
528
+ * enable codeql and workflows cleanup ([37a735c](https://github.com/privacy-scaling-explorations/maci/commit/37a735c349eeb1f7fc13fd8930041967a4813b11))
529
+ * fix grammar ([075ce47](https://github.com/privacy-scaling-explorations/maci/commit/075ce47011209271cf9ab4b64ec2ba36409ec26a))
530
+ * fix typo ([60f66ad](https://github.com/privacy-scaling-explorations/maci/commit/60f66ad70f698ebe3ce18e7907889929076fbbc2))
531
+ * fix typos and remove redundant introductions ([99d1e91](https://github.com/privacy-scaling-explorations/maci/commit/99d1e9174d38192f8b525fd0aeae1f87a72de560))
532
+ * fix word repetition ([92d7174](https://github.com/privacy-scaling-explorations/maci/commit/92d717496bc94d23d1d631e637a7fff1756d2352))
533
+ * **integration:** clarify integraration docs ([09edffd](https://github.com/privacy-scaling-explorations/maci/commit/09edffd7e6c2f58c1242dd92fb0bbd681444b937))
534
+ * keep footer links consistent on hover ([35da4c9](https://github.com/privacy-scaling-explorations/maci/commit/35da4c941d17a4c53f51e3ebac862785a0279c6c))
535
+ * **key-change:** add tests and docs around key-change ([ce394e2](https://github.com/privacy-scaling-explorations/maci/commit/ce394e2d2bf3c8c6748cf8e8d1e401b8f3c924ee))
536
+ * linter ([42ea4f0](https://github.com/privacy-scaling-explorations/maci/commit/42ea4f0ae8b342f6bd5ca5ac86f1bdd143978324))
537
+ * minor updates to roadmap page ([6a8ada8](https://github.com/privacy-scaling-explorations/maci/commit/6a8ada85a2a9486926bd8dbbb56e33f476b5d8de))
538
+ * **non-qv:** update docs to reflect the integration of non-quadratic voting ([35ff781](https://github.com/privacy-scaling-explorations/maci/commit/35ff7818dc62152a0b2d7449bebc8990dae7f0d4))
539
+ * remove 2023 section ([38a9507](https://github.com/privacy-scaling-explorations/maci/commit/38a9507500a4d9e6e9d72c01e734136053b1880c))
540
+ * remove placeholder post ([71fd332](https://github.com/privacy-scaling-explorations/maci/commit/71fd332e5844797feda1ed734273cfa4a5fbd4d2))
541
+ * remove QFI ([db1d931](https://github.com/privacy-scaling-explorations/maci/commit/db1d931062bd1ce5305eeb850608533565bcad7c))
542
+ * remove resource requirements ([62f9b89](https://github.com/privacy-scaling-explorations/maci/commit/62f9b89c772e1f46e53f271b8a36e92f54d92014))
543
+ * remove TOC line ([83d8d56](https://github.com/privacy-scaling-explorations/maci/commit/83d8d56d712864d62afe3cc93b964f52398e7f7e))
544
+ * rename file to testing-in-detail ([cf7fdf9](https://github.com/privacy-scaling-explorations/maci/commit/cf7fdf9d528358ebceb50fce0281f1b4d1bd4fa5))
545
+ * rename page to "Overview" ([5c98942](https://github.com/privacy-scaling-explorations/maci/commit/5c989424842fcabd5d3ae54ce0d4a3035a63789d))
546
+ * **repo:** rebase master into dev and amend CI ([0d7b99c](https://github.com/privacy-scaling-explorations/maci/commit/0d7b99c00cde64a7f49b92fcd3b9e3ff1320e29b))
547
+ * run prettier ([d09cd0e](https://github.com/privacy-scaling-explorations/maci/commit/d09cd0e01ac747245307ceec5343d9ed30d7a6f0))
548
+ * run prettier fix after bumping version ([e1f85a5](https://github.com/privacy-scaling-explorations/maci/commit/e1f85a53bbb72696b6998af5406748fd18df4701))
549
+ * **testing:** revisit testing docs and add more in detail info ([183c1d8](https://github.com/privacy-scaling-explorations/maci/commit/183c1d8361bdf3a192a212ef610ae7855c96c587))
550
+ * tweak secure feature copy ([e259bef](https://github.com/privacy-scaling-explorations/maci/commit/e259befbbbd75296b4800bea85fd789659347e29))
551
+ * update /release page to /versioning ([7e662fc](https://github.com/privacy-scaling-explorations/maci/commit/7e662fc843b6fd6beacd3af4e27e90010c797b83))
552
+ * update blog slugs to kebab case ([afa6329](https://github.com/privacy-scaling-explorations/maci/commit/afa632940b8504ab8a42da3f852a19789522c8d6))
553
+ * update blog slugs to kebab case ([ad914a1](https://github.com/privacy-scaling-explorations/maci/commit/ad914a124d02d08a1d8e7ba86d3b4b192824c0ad))
554
+ * update docs ([d33e7e6](https://github.com/privacy-scaling-explorations/maci/commit/d33e7e6bc833907bec1d5575ec4f46656011028c))
555
+ * update headers for testing page ([dd99e55](https://github.com/privacy-scaling-explorations/maci/commit/dd99e55dcdacfb4b69c21b938736897bd8e9cc3e))
556
+ * update homepage copy ([2f2439b](https://github.com/privacy-scaling-explorations/maci/commit/2f2439baa7087add03b28b37bf0ca18091395b38))
557
+ * update into page ([38752b9](https://github.com/privacy-scaling-explorations/maci/commit/38752b991415da12043d2c4140838b8abf8d88f4))
558
+ * update missing docusaurus deps ([a3a1fbf](https://github.com/privacy-scaling-explorations/maci/commit/a3a1fbfab0c9d410e8d13f64bce3dec820c6a406))
559
+ * update overview page ([f1682b2](https://github.com/privacy-scaling-explorations/maci/commit/f1682b2a0abc50941fceb5af6df64de221fb156a))
560
+ * update QF site links ([6120d89](https://github.com/privacy-scaling-explorations/maci/commit/6120d89e94bbea732e306aacac972d9e2907e77d))
561
+ * update sidebar_position of docs ([93a6faf](https://github.com/privacy-scaling-explorations/maci/commit/93a6fafdd7e483937a55d16e6cc99dd6e8aae4a2))
562
+ * update sidebar_position of docs ([63be592](https://github.com/privacy-scaling-explorations/maci/commit/63be5928ee47dc53af9326516deabb5d8639d905))
563
+ * update testing header ([688225c](https://github.com/privacy-scaling-explorations/maci/commit/688225c0a5d783fa8b585578e4ca0662e4ad1bd1))
564
+ * update the favicon file ([1056fe7](https://github.com/privacy-scaling-explorations/maci/commit/1056fe74f7dd265e7125c8031897980b83148816))
565
+ * **website/versioned_docs/version-v1.x:** typo fix ([#893](https://github.com/privacy-scaling-explorations/maci/issues/893)) ([c90466c](https://github.com/privacy-scaling-explorations/maci/commit/c90466c1cac756fc3aa711874cd7d63d1b8ada73))
566
+ * **website:** apply linter for website and remove unused packages ([1a3b343](https://github.com/privacy-scaling-explorations/maci/commit/1a3b343948f9f48ed4948a5ade63b4b55645f4ab))