@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
@@ -0,0 +1,1108 @@
1
+ ---
2
+ title: Deployed MACI Smart Contracts
3
+ description: Deployed MACI Smart Contracts
4
+ sidebar_label: Deployed MACI Smart Contracts
5
+ sidebar_position: 2
6
+ ---
7
+
8
+ There are a number of MACI's smart contracts which can be re-used by different deployments. These are the following:
9
+
10
+ - [VkRegistry](https://github.com/privacy-scaling-explorations/maci/blob/dev/contracts/contracts/VkRegistry.sol)
11
+ - [PoseidonHashers](https://github.com/privacy-scaling-explorations/maci/blob/dev/contracts/contracts/crypto/Hasher.sol)
12
+ - [PollFactory](https://github.com/privacy-scaling-explorations/maci/blob/dev/contracts/contracts/PollFactory.sol)
13
+ - [MessageProcessorFactory](https://github.com/privacy-scaling-explorations/maci/blob/dev/contracts/contracts/MessageProcessorFactory.sol)
14
+ - [TallyFactory](https://github.com/privacy-scaling-explorations/maci/blob/dev/contracts/contracts/TallyFactory.sol)
15
+ - [Verifier](https://github.com/privacy-scaling-explorations/maci/blob/dev/contracts/contracts/crypto/Verifier.sol)
16
+ - [FreeForAllGatekeeper](https://github.com/privacy-scaling-explorations/maci/blob/v2.5.0/packages/contracts/contracts/gatekeepers/FreeForAllGatekeeper.sol)
17
+ - [ConstantInitialVoiceCreditProxy](https://github.com/privacy-scaling-explorations/maci/blob/dev/contracts/contracts/initialVoiceCreditProxy/ConstantInitialVoiceCreditProxy.sol) - if you are happy to work with a fixed amount of credits
18
+
19
+ VkRegistries can be re-used by different protocols to share the same set of verifying keys. Please be advised that you should be verifying that those verifying keys are the ones that have undergone a trusted setup ceremony.
20
+
21
+ In order to verify you will need the following:
22
+
23
+ - configure the cli (`cd cli && cp .env.example .env` and set the correct env vars)
24
+ - download the keys (`pnpm download-zkeys:ceremony` from the monorepo root)
25
+ - run checkVerifyingKeys with the cli (see below)
26
+
27
+ ```bash
28
+ cd cli && node build/ts/index.js checkVerifyingKeys -q false -vk 0x74569d524a193daC0D3Df17B9E207C916174745b -s 6 -i 2 -m 9 -v 3 -b 2 -p ./zkeys/ProcessMessages_6-9-2-3/processMessages_6-9-2-3.zkey -t ./zkeys/TallyVotes_6-2-3/tallyVotes_6-2-3.zkey
29
+ ```
30
+
31
+ :::info
32
+ You should change the -vk parameter to the VkRegistry address for the chain you are deploying to. Also you might need to modify the parameters based on the circuit configuration. Please refer to the [circuits page](/docs/technical-references/zk-snark-circuits/setup) for more information. Also you can add `-uq false` if you want to check non quadratic voting keys.
33
+ :::
34
+
35
+ ## Contract Addresses
36
+
37
+ ### Arbitrum Sepolia
38
+
39
+ | Contract | Address |
40
+ | -------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
41
+ | ConstantInitialVoiceCreditProxy (99 Credits) | [0x41a29A58A63A998c9Edde6883Bcec2d89835a8e9](https://sepolia.arbiscan.io/address/0x41a29A58A63A998c9Edde6883Bcec2d89835a8e9) |
42
+ | FreeForAllGatekeeper | [0x9e98cAA76492338627BAD0e5a6AA2762d827E169](https://sepolia.arbiscan.io/address/0x9e98cAA76492338627BAD0e5a6AA2762d827E169) |
43
+ | Verifier | [0xB400794f463d90ce5f462A43d8E6f9155656d02d](https://sepolia.arbiscan.io/address/0xB400794f463d90ce5f462A43d8E6f9155656d02d) |
44
+ | PollFactory | [0xBa350B0cF67a0dEDa103A5d0d297bd120bF87E39](https://sepolia.arbiscan.io/address/0xBa350B0cF67a0dEDa103A5d0d297bd120bF87E39) |
45
+ | MessageProcessorFactory | [0x96FD5e4E40671Bf8d5f1d0E3F3402488680B8376](https://sepolia.arbiscan.io/address/0x96FD5e4E40671Bf8d5f1d0E3F3402488680B8376) |
46
+ | TallyFactory | [0xEEBc671e15B3f1c7483161F866d76ad84645d7C8](https://sepolia.arbiscan.io/address/0xEEBc671e15B3f1c7483161F866d76ad84645d7C8) |
47
+ | MACI (stateTreeDepth = 10) | [0x1446a1a1af027e58C8Bd29e231C01dB35b2F485E](https://sepolia.arbiscan.io/address/0x1446a1a1af027e58C8Bd29e231C01dB35b2F485E) |
48
+ | VkRegistry (10-2-1-2 and 10-1-2) | [0xE21F9Ea298b62032B3C2206955cd12c4Ab0a046b](https://sepolia.arbiscan.io/address/0xE21F9Ea298b62032B3C2206955cd12c4Ab0a046b) |
49
+ | PoseidonT3 | [0xa0e0aC07c211D329ebA2D6ec552F4dC1B230A89A](https://sepolia.arbiscan.io/address/0xa0e0aC07c211D329ebA2D6ec552F4dC1B230A89A) |
50
+ | PoseidonT4 | [0x4f02c99df5731C8C69f6baa62Aa4C9f99C529CE2](https://sepolia.arbiscan.io/address/0x0CC8B7Aed7d79a8B948636242706265548D0B10a) |
51
+ | PoseidonT5 | [0xB8Bc2c7cF71441fF7E6F111D3457e3d61c564968](https://sepolia.arbiscan.io/address/0xB8Bc2c7cF71441fF7E6F111D3457e3d61c564968) |
52
+ | PoseidonT6 | [0x37282fEde56aa1d7266Ecb12DC3b342D12044e2E](https://sepolia.arbiscan.io/address/0x37282fEde56aa1d7266Ecb12DC3b342D12044e2E) |
53
+
54
+ ### Arbitrum Mainnet
55
+
56
+ | Contract | Address |
57
+ | --------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- |
58
+ | ConstantInitialVoiceCreditProxy (200 Credits) | [0x16FC13edD59D4b9F788Fb11A70eA022E1Bb1B856](https://arbiscan.io/address/0x16FC13edD59D4b9F788Fb11A70eA022E1Bb1B856) |
59
+ | FreeForAllGatekeeper | [0x8BA83Dd6E0E448417C519A38c90Ee570A4CA3e9f](https://arbiscan.io/address/0x8BA83Dd6E0E448417C519A38c90Ee570A4CA3e9f) |
60
+ | Verifier | [0x2427Ab201488Ac81Bec421F179B1Be23c55ebC27](https://arbiscan.io/address/0x2427Ab201488Ac81Bec421F179B1Be23c55ebC27) |
61
+ | PollFactory | [0x2F1A5B4F8F3B7348C66A1522622b1DB712261607](https://arbiscan.io/address/0x2F1A5B4F8F3B7348C66A1522622b1DB712261607) |
62
+ | MessageProcessorFactory | [0xE4c9d4248F1371C5C61d406A9859f9FE667567a5](https://arbiscan.io/address/0xE4c9d4248F1371C5C61d406A9859f9FE667567a5) |
63
+ | TallyFactory | [0x57034389Dbe3DE1D1C14763f55B77A2279D6d43C](https://arbiscan.io/address/0x57034389Dbe3DE1D1C14763f55B77A2279D6d43C) |
64
+ | MACI (stateTreeDepth = 14) | [0x78c3bF1b2Bc3A5512e274cA8407D2339Bb859761](https://arbiscan.io/address/0x78c3bF1b2Bc3A5512e274cA8407D2339Bb859761) |
65
+ | VkRegistry (14-9-2-3 and 14-2-3) | [0x6aA5baD99aC44bB008930c68CE2249549Cf10944](https://arbiscan.io/address/0x6aA5baD99aC44bB008930c68CE2249549Cf10944) |
66
+ | PoseidonT3 | [0x2F1398ab5E322d357dF8CdD2e7ba73122c5FDDA4](https://arbiscan.io/address/0x2F1398ab5E322d357dF8CdD2e7ba73122c5FDDA4) |
67
+ | PoseidonT4 | [0x8778dA47eF619f56341fE95514e95fa0FF3B77C6](https://arbiscan.io/address/0x8778dA47eF619f56341fE95514e95fa0FF3B77C6) |
68
+ | PoseidonT5 | [0x43B519FF023757508311518AC41B5fA1CfD57181](https://arbiscan.io/address/0x43B519FF023757508311518AC41B5fA1CfD57181) |
69
+ | PoseidonT6 | [0xb123798B1b21082100D289BeA24bFF0F8dfcbEe1](https://arbiscan.io/address/0xb123798B1b21082100D289BeA24bFF0F8dfcbEe1) |
70
+
71
+ ### Optimism
72
+
73
+ | Contract | Address |
74
+ | --------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
75
+ | ConstantInitialVoiceCreditProxy (200 Credits) | [0x83dD551541C580e338206f1f677835D427C92dE2](https://optimistic.etherscan.io/address/0x83dD551541C580e338206f1f677835D427C92dE2) |
76
+ | FreeForAllGatekeeper | [0xD5C41106db85EDd0298279AcFCE5A722060cc5f9](https://optimistic.etherscan.io/address/0xD5C41106db85EDd0298279AcFCE5A722060cc5f9) |
77
+ | Verifier | [0x88C2c6A7535463962A34757FE63cc4F296381aba](https://optimistic.etherscan.io/address/0x88C2c6A7535463962A34757FE63cc4F296381aba) |
78
+ | PollFactory | [0x50045B05cb1C76410783D8A3e5625a99d5729339](https://optimistic.etherscan.io/address/0x50045B05cb1C76410783D8A3e5625a99d5729339) |
79
+ | MessageProcessorFactory | [0xbB28555E989799478442483CD1f2D370a14e2C42](https://optimistic.etherscan.io/address/0xbB28555E989799478442483CD1f2D370a14e2C42) |
80
+ | TallyFactory | [0xdA10b22B81eb8EA6BC04aa9b86d3f9d969CD49F0](https://optimistic.etherscan.io/address/0xdA10b22B81eb8EA6BC04aa9b86d3f9d969CD49F0) |
81
+ | MACI (stateTreeDepth = 14) | [0x3D4C58074DCD8E6526885F465ab5F311b6B290B5](https://optimistic.etherscan.io/address/0x3D4C58074DCD8E6526885F465ab5F311b6B290B5) |
82
+ | VkRegistry (14-9-2-3 and 14-2-3) | [0x7E16271EaE58F52a0431F87Ee7E40c978178C63F](https://optimistic.etherscan.io/address/0x7E16271EaE58F52a0431F87Ee7E40c978178C63F) |
83
+ | PoseidonT3 | [0xF8E637e5c9EC3A8d8fa8843A6dF833348E1F1E66](https://optimistic.etherscan.io/address/0xF8E637e5c9EC3A8d8fa8843A6dF833348E1F1E66) |
84
+ | PoseidonT4 | [0x0a0D66baFDa8c8838281084d9C3d68Dd9a6Fc274](https://optimistic.etherscan.io/address/0x0a0D66baFDa8c8838281084d9C3d68Dd9a6Fc274) |
85
+ | PoseidonT5 | [0xD2F6c828606Ad8e985008Cd825012f269B50CD58](https://optimistic.etherscan.io/address/0xD2F6c828606Ad8e985008Cd825012f269B50CD58) |
86
+ | PoseidonT6 | [0x982530673Ce9e5Efa02438c694d48327Aa4fB592](https://optimistic.etherscan.io/address/0x982530673Ce9e5Efa02438c694d48327Aa4fB592) |
87
+
88
+ ### Optimism Sepolia
89
+
90
+ | Contract | Address |
91
+ | -------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
92
+ | ConstantInitialVoiceCreditProxy (99 Credits) | [0x4473aC3e68ad78D67757336ABaAa2Dced08cfcdF](https://sepolia-optimism.etherscan.io/address/0x4473aC3e68ad78D67757336ABaAa2Dced08cfcdF) |
93
+ | FreeForAllGatekeeper | [0xa4fF6765C207C84AbeFCe0226b24204f9ceBAB45](https://sepolia-optimism.etherscan.io/address/0xa4fF6765C207C84AbeFCe0226b24204f9ceBAB45) |
94
+ | Verifier | [0xB1abb44291ff487f96636758b07Ccd9881f64c9A](https://sepolia-optimism.etherscan.io/address/0xB1abb44291ff487f96636758b07Ccd9881f64c9A) |
95
+ | PollFactory | [0xad844a9567ada5996FFC0D2DeC78b3767a1c0501](https://sepolia-optimism.etherscan.io/address/0xad844a9567ada5996FFC0D2DeC78b3767a1c0501) |
96
+ | MessageProcessorFactory | [0xbBb6f1B4232F993e5a026217a3D596B332062CB3](https://sepolia-optimism.etherscan.io/address/0xbBb6f1B4232F993e5a026217a3D596B332062CB3) |
97
+ | TallyFactory | [0x1356f05179cdcAD2D8708B539A75de082118de92](https://sepolia-optimism.etherscan.io/address/0x1356f05179cdcAD2D8708B539A75de082118de92) |
98
+ | MACI (stateTreeDepth = 10) | [0x94f29E6d14A01c1330CE8f7421Db489Fe5A14976](https://sepolia-optimism.etherscan.io/address/0x94f29E6d14A01c1330CE8f7421Db489Fe5A14976) |
99
+ | VkRegistry (10-2-1-2 and 10-1-2) | [0x42B1AB3d98B8235204E75112e5d9E974cE7531cC](https://sepolia-optimism.etherscan.io/address/0x42B1AB3d98B8235204E75112e5d9E974cE7531cC) |
100
+ | PoseidonT3 | [0x07490eba00dc4ACA6721D052Fa4C5002Aa077233](https://sepolia-optimism.etherscan.io/address/0x07490eba00dc4ACA6721D052Fa4C5002Aa077233) |
101
+ | PoseidonT4 | [0xbb0e724CE02e5E7eDd31e632dc6e59F229a1126d](https://sepolia-optimism.etherscan.io/address/0xbb0e724CE02e5E7eDd31e632dc6e59F229a1126d) |
102
+ | PoseidonT5 | [0xE0398F7DFAC494c530F6404AfEaC8669ABeD2679](https://sepolia-optimism.etherscan.io/address/0xE0398F7DFAC494c530F6404AfEaC8669ABeD2679) |
103
+ | PoseidonT6 | [0xfD77833F10a29c76A6a0ede235Eb651D744d0E2F](https://sepolia-optimism.etherscan.io/address/0xfD77833F10a29c76A6a0ede235Eb651D744d0E2F) |
104
+
105
+ ### Scroll Sepolia
106
+
107
+ | Contract | Address |
108
+ | -------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- |
109
+ | ConstantInitialVoiceCreditProxy (99 Credits) | [0xB486cce9B4507A67Db147B0802D5673774C8D278](https://sepolia.scrollscan.com/address/0xB486cce9B4507A67Db147B0802D5673774C8D278) |
110
+ | FreeForAllGatekeeper | [0x83dD551541C580e338206f1f677835D427C92dE2](https://sepolia.scrollscan.com/address/0x83dD551541C580e338206f1f677835D427C92dE2) |
111
+ | Verifier | [0xD5C41106db85EDd0298279AcFCE5A722060cc5f9](https://sepolia.scrollscan.com/address/0xD5C41106db85EDd0298279AcFCE5A722060cc5f9) |
112
+ | PollFactory | [0x982530673Ce9e5Efa02438c694d48327Aa4fB592](https://sepolia.scrollscan.com/address/0x982530673Ce9e5Efa02438c694d48327Aa4fB592) |
113
+ | MessageProcessorFactory | [0x50045B05cb1C76410783D8A3e5625a99d5729339](https://sepolia.scrollscan.com/address/0x50045B05cb1C76410783D8A3e5625a99d5729339) |
114
+ | TallyFactory | [0xbB28555E989799478442483CD1f2D370a14e2C42](https://sepolia.scrollscan.com/address/0xbB28555E989799478442483CD1f2D370a14e2C42) |
115
+ | MACI (stateTreeDepth = 10) | [0xdA10b22B81eb8EA6BC04aa9b86d3f9d969CD49F0](https://sepolia.scrollscan.com/address/0xdA10b22B81eb8EA6BC04aa9b86d3f9d969CD49F0) |
116
+ | VkRegistry (10-2-1-2 and 10-1-2) | [0x3D4C58074DCD8E6526885F465ab5F311b6B290B5](https://sepolia.scrollscan.com/address/0x3D4C58074DCD8E6526885F465ab5F311b6B290B5) |
117
+ | PoseidonT3 | [0x88C2c6A7535463962A34757FE63cc4F296381aba](https://sepolia.scrollscan.com/address/0x88C2c6A7535463962A34757FE63cc4F296381aba) |
118
+ | PoseidonT4 | [0x0a0D66baFDa8c8838281084d9C3d68Dd9a6Fc274](https://sepolia.scrollscan.com/address/0x0a0D66baFDa8c8838281084d9C3d68Dd9a6Fc274) |
119
+ | PoseidonT5 | [0xE0398F7DFAC494c530F6404AfEaC8669ABeD2679](https://sepolia.scrollscan.com/address/0xE0398F7DFAC494c530F6404AfEaC8669ABeD2679) |
120
+ | PoseidonT6 | [0xD2F6c828606Ad8e985008Cd825012f269B50CD58](https://sepolia.scrollscan.com/address/0xD2F6c828606Ad8e985008Cd825012f269B50CD58) |
121
+
122
+ ### Base
123
+
124
+ | Contract | Address |
125
+ | --------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- |
126
+ | ConstantInitialVoiceCreditProxy (200 Credits) | [0x16FC13edD59D4b9F788Fb11A70eA022E1Bb1B856](https://basescan.org/address/0x16FC13edD59D4b9F788Fb11A70eA022E1Bb1B856) |
127
+ | FreeForAllGatekeeper | [0x8BA83Dd6E0E448417C519A38c90Ee570A4CA3e9f](https://basescan.org/address/0x8BA83Dd6E0E448417C519A38c90Ee570A4CA3e9f) |
128
+ | Verifier | [0x2427Ab201488Ac81Bec421F179B1Be23c55ebC27](https://basescan.org/address/0x2427Ab201488Ac81Bec421F179B1Be23c55ebC27) |
129
+ | PollFactory | [0x2F1A5B4F8F3B7348C66A1522622b1DB712261607](https://basescan.org/address/0x2F1A5B4F8F3B7348C66A1522622b1DB712261607) |
130
+ | MessageProcessorFactory | [0xE4c9d4248F1371C5C61d406A9859f9FE667567a5](https://basescan.org/address/0xE4c9d4248F1371C5C61d406A9859f9FE667567a5) |
131
+ | TallyFactory | [0x57034389Dbe3DE1D1C14763f55B77A2279D6d43C](https://basescan.org/address/0x57034389Dbe3DE1D1C14763f55B77A2279D6d43C) |
132
+ | MACI (stateTreeDepth = 14) | [0xe98D62574B1b780b8C13B1917700001dc5FEc68a](https://basescan.org/address/0xe98D62574B1b780b8C13B1917700001dc5FEc68a) |
133
+ | VkRegistry (14-9-2-3 and 14-2-3) | [0x6aA5baD99aC44bB008930c68CE2249549Cf10944](https://basescan.org/address/0x6aA5baD99aC44bB008930c68CE2249549Cf10944) |
134
+ | PoseidonT3 | [0x2F1398ab5E322d357dF8CdD2e7ba73122c5FDDA4](https://basescan.org/address/0x2F1398ab5E322d357dF8CdD2e7ba73122c5FDDA4) |
135
+ | PoseidonT4 | [0x8778dA47eF619f56341fE95514e95fa0FF3B77C6](https://basescan.org/address/0x8778dA47eF619f56341fE95514e95fa0FF3B77C6) |
136
+ | PoseidonT5 | [0xB8Bc2c7cF71441fF7E6F111D3457e3d61c564968](https://basescan.org/address/0xB8Bc2c7cF71441fF7E6F111D3457e3d61c564968) |
137
+ | PoseidonT6 | [0x37282fEde56aa1d7266Ecb12DC3b342D12044e2E](https://basescan.org/address/0x37282fEde56aa1d7266Ecb12DC3b342D12044e2E) |
138
+
139
+ ### Base Sepolia
140
+
141
+ | Contract | Address |
142
+ | -------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
143
+ | ConstantInitialVoiceCreditProxy (99 Credits) | [0x16FC13edD59D4b9F788Fb11A70eA022E1Bb1B856](https://sepolia.basescan.org/address/0x16FC13edD59D4b9F788Fb11A70eA022E1Bb1B856) |
144
+ | FreeForAllGatekeeper | [0x8BA83Dd6E0E448417C519A38c90Ee570A4CA3e9f](https://sepolia.basescan.org/address/0x8BA83Dd6E0E448417C519A38c90Ee570A4CA3e9f) |
145
+ | Verifier | [0x2427Ab201488Ac81Bec421F179B1Be23c55ebC27](https://sepolia.basescan.org/address/0x2427Ab201488Ac81Bec421F179B1Be23c55ebC27) |
146
+ | PollFactory | [0x2F1A5B4F8F3B7348C66A1522622b1DB712261607](https://sepolia.basescan.org/address/0x2F1A5B4F8F3B7348C66A1522622b1DB712261607) |
147
+ | MessageProcessorFactory | [0xE4c9d4248F1371C5C61d406A9859f9FE667567a5](https://sepolia.basescan.org/address/0xE4c9d4248F1371C5C61d406A9859f9FE667567a5) |
148
+ | TallyFactory | [0x57034389Dbe3DE1D1C14763f55B77A2279D6d43C](https://sepolia.basescan.org/address/0x57034389Dbe3DE1D1C14763f55B77A2279D6d43C) |
149
+ | MACI (stateTreeDepth = 10) | [0x78c3bF1b2Bc3A5512e274cA8407D2339Bb859761](https://sepolia.basescan.org/address/0x78c3bF1b2Bc3A5512e274cA8407D2339Bb859761) |
150
+ | VkRegistry (10-2-1-2 and 10-1-2) | [0x6aA5baD99aC44bB008930c68CE2249549Cf10944](https://sepolia.basescan.org/address/0x6aA5baD99aC44bB008930c68CE2249549Cf10944) |
151
+ | PoseidonT3 | [0x2F1398ab5E322d357dF8CdD2e7ba73122c5FDDA4](https://sepolia.basescan.org/address/0x2F1398ab5E322d357dF8CdD2e7ba73122c5FDDA4) |
152
+ | PoseidonT4 | [0x8778dA47eF619f56341fE95514e95fa0FF3B77C6](https://sepolia.basescan.org/address/0x8778dA47eF619f56341fE95514e95fa0FF3B77C6) |
153
+ | PoseidonT5 | [0xB8Bc2c7cF71441fF7E6F111D3457e3d61c564968](https://sepolia.basescan.org/address/0xB8Bc2c7cF71441fF7E6F111D3457e3d61c564968) |
154
+ | PoseidonT6 | [0x37282fEde56aa1d7266Ecb12DC3b342D12044e2E](https://sepolia.basescan.org/address/0x37282fEde56aa1d7266Ecb12DC3b342D12044e2E) |
155
+
156
+ ## Raw JSON with deployed contracts and tx hashes
157
+
158
+ **packages/contracts/deployed-contracts.json**
159
+
160
+ ```json
161
+ {
162
+ "optimism_sepolia": {
163
+ "instance": {
164
+ "0x4473aC3e68ad78D67757336ABaAa2Dced08cfcdF": {
165
+ "id": "ConstantInitialVoiceCreditProxy",
166
+ "deploymentTxHash": "0x8b62e4abe0db623981b8873a5f88f3c447b4202159e5d47b1d3158c1914afb91",
167
+ "verify": {
168
+ "args": "[\"99\"]"
169
+ }
170
+ },
171
+ "0xa4fF6765C207C84AbeFCe0226b24204f9ceBAB45": {
172
+ "id": "FreeForAllGatekeeper",
173
+ "deploymentTxHash": "0x7fa84fe66edeb0f6d13999344289d0404eac443e52dab4c9b25d7415ff84e45b",
174
+ "verify": {
175
+ "args": "[]"
176
+ }
177
+ },
178
+ "0xB1abb44291ff487f96636758b07Ccd9881f64c9A": {
179
+ "id": "Verifier",
180
+ "deploymentTxHash": "0x50377144a799369d26cb0f4de471a9c95a3b7de0a3aed18363cb1204ee45213a",
181
+ "verify": {
182
+ "args": "[]"
183
+ }
184
+ },
185
+ "0x07490eba00dc4ACA6721D052Fa4C5002Aa077233": {
186
+ "id": "PoseidonT3",
187
+ "deploymentTxHash": "0x799a38ec8dfa740286f496da91d3549cfc923aa8f7c32cf0af2e03829ddb105f",
188
+ "verify": {
189
+ "args": "[]"
190
+ }
191
+ },
192
+ "0xbb0e724CE02e5E7eDd31e632dc6e59F229a1126d": {
193
+ "id": "PoseidonT4",
194
+ "deploymentTxHash": "0x82e8dedbfd9a583b7b09d5e3d7a0b14d0b7a5062438ab70d3154d15f888ef960",
195
+ "verify": {
196
+ "args": "[]"
197
+ }
198
+ },
199
+ "0xE0398F7DFAC494c530F6404AfEaC8669ABeD2679": {
200
+ "id": "PoseidonT5",
201
+ "deploymentTxHash": "0xd57d72b7d519b81bd80b01c0b80669fb4c14b3b349b3d5555e7007ec0adae68d",
202
+ "verify": {
203
+ "args": "[]"
204
+ }
205
+ },
206
+ "0xfD77833F10a29c76A6a0ede235Eb651D744d0E2F": {
207
+ "id": "PoseidonT6",
208
+ "deploymentTxHash": "0xb37f2be891314378b5f8579ba5bd95df7b0f1652b4f91356ddeb9e86ea7311fe",
209
+ "verify": {
210
+ "args": "[]"
211
+ }
212
+ },
213
+ "0xad844a9567ada5996FFC0D2DeC78b3767a1c0501": {
214
+ "id": "PollFactory",
215
+ "deploymentTxHash": "0x99a4dd853297e4aa9a824c509268926875f9ec2971b6c6e74b3179fd4f8845ca",
216
+ "verify": {
217
+ "args": "[]"
218
+ }
219
+ },
220
+ "0xbBb6f1B4232F993e5a026217a3D596B332062CB3": {
221
+ "id": "MessageProcessorFactory",
222
+ "deploymentTxHash": "0xe817a6c240bdbb19a974f9a36eed9fd89794229496ed51db591b23382910bbb2",
223
+ "verify": {
224
+ "args": "[]"
225
+ }
226
+ },
227
+ "0x1356f05179cdcAD2D8708B539A75de082118de92": {
228
+ "id": "TallyFactory",
229
+ "deploymentTxHash": "0x7b57994dccdbeeff25d9f7f58fde0f35cd10ce53eb160009c565033a370a0600",
230
+ "verify": {
231
+ "args": "[]"
232
+ }
233
+ },
234
+ "0x42B1AB3d98B8235204E75112e5d9E974cE7531cC": {
235
+ "id": "VkRegistry",
236
+ "deploymentTxHash": "0x1b05a22de2735ed74b58532303e7af01659b066206e696f4c8e6df61bc97f442",
237
+ "verify": {
238
+ "args": "[]"
239
+ }
240
+ },
241
+ "0x6f9F7Fef2FF7F5D1Ff8966F751EC154146d8f431": {
242
+ "id": "ConstantInitialVoiceCreditProxy",
243
+ "deploymentTxHash": "0xe5b6ce84a95af89c64cff82901bc26b96d67bf4ffb18d4e82ebfcbc19c4392f2",
244
+ "verify": {
245
+ "args": "[\"99\"]"
246
+ }
247
+ },
248
+ "0x6b414ff158581Ac940797463a44221d0ba6A0B9C": {
249
+ "id": "FreeForAllGatekeeper",
250
+ "deploymentTxHash": "0x5f7640018acb7155aa510e05cca92ad40003327dfe75fcab7d61bd21fefdea67",
251
+ "verify": {
252
+ "args": "[]"
253
+ }
254
+ }
255
+ },
256
+ "named": {
257
+ "Verifier": {
258
+ "address": "0xB1abb44291ff487f96636758b07Ccd9881f64c9A",
259
+ "count": 1
260
+ },
261
+ "PoseidonT3": {
262
+ "address": "0x07490eba00dc4ACA6721D052Fa4C5002Aa077233",
263
+ "count": 1
264
+ },
265
+ "PoseidonT4": {
266
+ "address": "0xbb0e724CE02e5E7eDd31e632dc6e59F229a1126d",
267
+ "count": 1
268
+ },
269
+ "PoseidonT5": {
270
+ "address": "0xE0398F7DFAC494c530F6404AfEaC8669ABeD2679",
271
+ "count": 1
272
+ },
273
+ "PoseidonT6": {
274
+ "address": "0xfD77833F10a29c76A6a0ede235Eb651D744d0E2F",
275
+ "count": 1
276
+ },
277
+ "PollFactory": {
278
+ "address": "0xad844a9567ada5996FFC0D2DeC78b3767a1c0501",
279
+ "count": 1
280
+ },
281
+ "MessageProcessorFactory": {
282
+ "address": "0xbBb6f1B4232F993e5a026217a3D596B332062CB3",
283
+ "count": 1
284
+ },
285
+ "TallyFactory": {
286
+ "address": "0x1356f05179cdcAD2D8708B539A75de082118de92",
287
+ "count": 1
288
+ },
289
+ "VkRegistry": {
290
+ "address": "0x42B1AB3d98B8235204E75112e5d9E974cE7531cC",
291
+ "count": 1
292
+ },
293
+ "ConstantInitialVoiceCreditProxy": {
294
+ "address": "0x6f9F7Fef2FF7F5D1Ff8966F751EC154146d8f431",
295
+ "count": 1
296
+ },
297
+ "FreeForAllGatekeeper": {
298
+ "address": "0x6b414ff158581Ac940797463a44221d0ba6A0B9C",
299
+ "count": 1
300
+ }
301
+ }
302
+ },
303
+ "arbitrum_sepolia": {
304
+ "instance": {
305
+ "0x41a29A58A63A998c9Edde6883Bcec2d89835a8e9": {
306
+ "id": "ConstantInitialVoiceCreditProxy",
307
+ "deploymentTxHash": "0x897bfb740aba18fff51fcde7c5c1f97b2727f4a0122118fa300411684004211c",
308
+ "verify": {
309
+ "args": "[\"99\"]"
310
+ }
311
+ },
312
+ "0x9e98cAA76492338627BAD0e5a6AA2762d827E169": {
313
+ "id": "FreeForAllGatekeeper",
314
+ "deploymentTxHash": "0x5a740ad234560fab4097150f6c6acbf95224b4949ff3d82b477903a435a60621",
315
+ "verify": {
316
+ "args": "[]"
317
+ }
318
+ },
319
+ "0xB400794f463d90ce5f462A43d8E6f9155656d02d": {
320
+ "id": "Verifier",
321
+ "deploymentTxHash": "0xbf743a2514c0a57bb7972a5a2cbaa2b57ffeac78c51ed730b5ccf29e2a428ad3",
322
+ "verify": {
323
+ "args": "[]"
324
+ }
325
+ },
326
+ "0xa0e0aC07c211D329ebA2D6ec552F4dC1B230A89A": {
327
+ "id": "PoseidonT3",
328
+ "deploymentTxHash": "0x8c0f24d6d5837334143bf181ae74ae8c4d8218f40681146f88cc6d793b416065",
329
+ "verify": {
330
+ "args": "[]"
331
+ }
332
+ },
333
+ "0x0CC8B7Aed7d79a8B948636242706265548D0B10a": {
334
+ "id": "PoseidonT4",
335
+ "deploymentTxHash": "0xbc566db1ae8192e94418cfc9082d2a8f7dc71352438b92790a8ae9e01de86999",
336
+ "verify": {
337
+ "args": "[]"
338
+ }
339
+ },
340
+ "0x43B519FF023757508311518AC41B5fA1CfD57181": {
341
+ "id": "PoseidonT5",
342
+ "deploymentTxHash": "0x28c63a2021aac9f0400affd73d9bd57de107a557bed40299ab0ee7adb58fdcb1",
343
+ "verify": {
344
+ "args": "[]"
345
+ }
346
+ },
347
+ "0xb123798B1b21082100D289BeA24bFF0F8dfcbEe1": {
348
+ "id": "PoseidonT6",
349
+ "deploymentTxHash": "0xdfa42ab39a49f75c8d14cd750610b1cf2aaecf6f767362f732551416ae4445c5",
350
+ "verify": {
351
+ "args": "[]"
352
+ }
353
+ },
354
+ "0xBa350B0cF67a0dEDa103A5d0d297bd120bF87E39": {
355
+ "id": "PollFactory",
356
+ "deploymentTxHash": "0x4a955482e8a4ecb0e275cb978980b2b85c765c0ced4e9005612ac989a5769d11",
357
+ "verify": {
358
+ "args": "[]"
359
+ }
360
+ },
361
+ "0x96FD5e4E40671Bf8d5f1d0E3F3402488680B8376": {
362
+ "id": "MessageProcessorFactory",
363
+ "deploymentTxHash": "0x51727155edfd8c178c583801f24714dd9e4fbdd6e7c9bbbe0e7663ea3d9a3198",
364
+ "verify": {
365
+ "args": "[]"
366
+ }
367
+ },
368
+ "0xEEBc671e15B3f1c7483161F866d76ad84645d7C8": {
369
+ "id": "TallyFactory",
370
+ "deploymentTxHash": "0xc1c7e05a40164b8429517eed34b2042e593df11091840a9820451ee0d8f796c9",
371
+ "verify": {
372
+ "args": "[]"
373
+ }
374
+ },
375
+ "0xE21F9Ea298b62032B3C2206955cd12c4Ab0a046b": {
376
+ "id": "VkRegistry",
377
+ "deploymentTxHash": "0x2216dc97941a301e817d630a1a5ec31a7997f0d3ea5bcf5581defd374d8ab8aa",
378
+ "verify": {
379
+ "args": "[]"
380
+ }
381
+ }
382
+ },
383
+ "named": {
384
+ "ConstantInitialVoiceCreditProxy": {
385
+ "address": "0x41a29A58A63A998c9Edde6883Bcec2d89835a8e9",
386
+ "count": 1
387
+ },
388
+ "FreeForAllGatekeeper": {
389
+ "address": "0x9e98cAA76492338627BAD0e5a6AA2762d827E169",
390
+ "count": 1
391
+ },
392
+ "Verifier": {
393
+ "address": "0xB400794f463d90ce5f462A43d8E6f9155656d02d",
394
+ "count": 1
395
+ },
396
+ "PoseidonT3": {
397
+ "address": "0xa0e0aC07c211D329ebA2D6ec552F4dC1B230A89A",
398
+ "count": 1
399
+ },
400
+ "PoseidonT4": {
401
+ "address": "0x0CC8B7Aed7d79a8B948636242706265548D0B10a",
402
+ "count": 1
403
+ },
404
+ "PoseidonT5": {
405
+ "address": "0x43B519FF023757508311518AC41B5fA1CfD57181",
406
+ "count": 1
407
+ },
408
+ "PoseidonT6": {
409
+ "address": "0xb123798B1b21082100D289BeA24bFF0F8dfcbEe1",
410
+ "count": 1
411
+ },
412
+ "PollFactory": {
413
+ "address": "0xBa350B0cF67a0dEDa103A5d0d297bd120bF87E39",
414
+ "count": 1
415
+ },
416
+ "MessageProcessorFactory": {
417
+ "address": "0x96FD5e4E40671Bf8d5f1d0E3F3402488680B8376",
418
+ "count": 1
419
+ },
420
+ "TallyFactory": {
421
+ "address": "0xEEBc671e15B3f1c7483161F866d76ad84645d7C8",
422
+ "count": 1
423
+ },
424
+ "VkRegistry": {
425
+ "address": "0xE21F9Ea298b62032B3C2206955cd12c4Ab0a046b",
426
+ "count": 1
427
+ }
428
+ }
429
+ },
430
+ "base_sepolia": {
431
+ "instance": {
432
+ "0x16FC13edD59D4b9F788Fb11A70eA022E1Bb1B856": {
433
+ "id": "ConstantInitialVoiceCreditProxy",
434
+ "deploymentTxHash": "0x2d94f77f843c7f3f19eec1d0cac75a1260e0708e47ee9cb7fbf72c63ebcb156b",
435
+ "verify": {
436
+ "args": "[\"99\"]"
437
+ }
438
+ },
439
+ "0x8BA83Dd6E0E448417C519A38c90Ee570A4CA3e9f": {
440
+ "id": "FreeForAllGatekeeper",
441
+ "deploymentTxHash": "0x24c07b7ccc8ab143f03b03749ad81e4830456d4353f3c9783ffd08b3ea2d1004",
442
+ "verify": {
443
+ "args": "[]"
444
+ }
445
+ },
446
+ "0x2427Ab201488Ac81Bec421F179B1Be23c55ebC27": {
447
+ "id": "Verifier",
448
+ "deploymentTxHash": "0x536d8665489c174d17d584b9dc3e6a6ccc595e5b232f8029879ae49e2c38c3d6",
449
+ "verify": {
450
+ "args": "[]"
451
+ }
452
+ },
453
+ "0x2F1398ab5E322d357dF8CdD2e7ba73122c5FDDA4": {
454
+ "id": "PoseidonT3",
455
+ "deploymentTxHash": "0xc87ffe646d64cde4e819636490a8eb8d246233aeb58b42d06ff76ab04c07a301",
456
+ "verify": {
457
+ "args": "[]"
458
+ }
459
+ },
460
+ "0x8778dA47eF619f56341fE95514e95fa0FF3B77C6": {
461
+ "id": "PoseidonT4",
462
+ "deploymentTxHash": "0xcebcf39fd5857e595b50139004123c27a29c504ed12440c062833fcda2525848",
463
+ "verify": {
464
+ "args": "[]"
465
+ }
466
+ },
467
+ "0xB8Bc2c7cF71441fF7E6F111D3457e3d61c564968": {
468
+ "id": "PoseidonT5",
469
+ "deploymentTxHash": "0x64d9db02a0b4cb29135e56becafe30c045919f20328e3d10a50f69f27add94e9",
470
+ "verify": {
471
+ "args": "[]"
472
+ }
473
+ },
474
+ "0x37282fEde56aa1d7266Ecb12DC3b342D12044e2E": {
475
+ "id": "PoseidonT6",
476
+ "deploymentTxHash": "0xfd556b278a7b10b70382207c733de3f9e97ad3e2ed6821a3acd16011f3b94084",
477
+ "verify": {
478
+ "args": "[]"
479
+ }
480
+ },
481
+ "0x2F1A5B4F8F3B7348C66A1522622b1DB712261607": {
482
+ "id": "PollFactory",
483
+ "deploymentTxHash": "0xe89d4e3c14bd680691568382e38b9400034632672b802eb1ae684afc03f7bf82",
484
+ "verify": {
485
+ "args": "[]"
486
+ }
487
+ },
488
+ "0xE4c9d4248F1371C5C61d406A9859f9FE667567a5": {
489
+ "id": "MessageProcessorFactory",
490
+ "deploymentTxHash": "0x7d709c06be1a8055a9f12dc40eb71b27ce71fccddf5ffb1f488ed5ed3cadfbd6",
491
+ "verify": {
492
+ "args": "[]"
493
+ }
494
+ },
495
+ "0x57034389Dbe3DE1D1C14763f55B77A2279D6d43C": {
496
+ "id": "TallyFactory",
497
+ "deploymentTxHash": "0xb5e583c45a53ac522d1025a0b594f3e58dd4fa1f837baadeb47bcc164eac0439",
498
+ "verify": {
499
+ "args": "[]"
500
+ }
501
+ },
502
+ "0x6aA5baD99aC44bB008930c68CE2249549Cf10944": {
503
+ "id": "VkRegistry",
504
+ "deploymentTxHash": "0xdb1cbc7acc63c814dc238177adbf4012a1ccf743be3b2ef8ac2bde66177fe3a1",
505
+ "verify": {
506
+ "args": "[]"
507
+ }
508
+ }
509
+ },
510
+ "named": {
511
+ "ConstantInitialVoiceCreditProxy": {
512
+ "address": "0x16FC13edD59D4b9F788Fb11A70eA022E1Bb1B856",
513
+ "count": 1
514
+ },
515
+ "FreeForAllGatekeeper": {
516
+ "address": "0x8BA83Dd6E0E448417C519A38c90Ee570A4CA3e9f",
517
+ "count": 1
518
+ },
519
+ "Verifier": {
520
+ "address": "0x2427Ab201488Ac81Bec421F179B1Be23c55ebC27",
521
+ "count": 1
522
+ },
523
+ "PoseidonT3": {
524
+ "address": "0x2F1398ab5E322d357dF8CdD2e7ba73122c5FDDA4",
525
+ "count": 1
526
+ },
527
+ "PoseidonT4": {
528
+ "address": "0x8778dA47eF619f56341fE95514e95fa0FF3B77C6",
529
+ "count": 1
530
+ },
531
+ "PoseidonT5": {
532
+ "address": "0xB8Bc2c7cF71441fF7E6F111D3457e3d61c564968",
533
+ "count": 1
534
+ },
535
+ "PoseidonT6": {
536
+ "address": "0x37282fEde56aa1d7266Ecb12DC3b342D12044e2E",
537
+ "count": 1
538
+ },
539
+ "PollFactory": {
540
+ "address": "0x2F1A5B4F8F3B7348C66A1522622b1DB712261607",
541
+ "count": 1
542
+ },
543
+ "MessageProcessorFactory": {
544
+ "address": "0xE4c9d4248F1371C5C61d406A9859f9FE667567a5",
545
+ "count": 1
546
+ },
547
+ "TallyFactory": {
548
+ "address": "0x57034389Dbe3DE1D1C14763f55B77A2279D6d43C",
549
+ "count": 1
550
+ },
551
+ "VkRegistry": {
552
+ "address": "0x6aA5baD99aC44bB008930c68CE2249549Cf10944",
553
+ "count": 1
554
+ }
555
+ }
556
+ },
557
+ "scroll_sepolia": {
558
+ "instance": {
559
+ "0xB486cce9B4507A67Db147B0802D5673774C8D278": {
560
+ "id": "ConstantInitialVoiceCreditProxy",
561
+ "deploymentTxHash": "0x19fffe5a56c36405586b627d896513ca6949b654faac219e5d39041f7ce67d93",
562
+ "verify": {
563
+ "args": "[\"99\"]"
564
+ }
565
+ },
566
+ "0x83dD551541C580e338206f1f677835D427C92dE2": {
567
+ "id": "FreeForAllGatekeeper",
568
+ "deploymentTxHash": "0x637fbce4ecd191f31f768f3d46a67727c29e61149cd9d2f8830f2c685cda5019",
569
+ "verify": {
570
+ "args": "[]"
571
+ }
572
+ },
573
+ "0xD5C41106db85EDd0298279AcFCE5A722060cc5f9": {
574
+ "id": "Verifier",
575
+ "deploymentTxHash": "0xeb106e6aa2ec41e7fd36306d843cdc2a70e6b2ed3e2156664177a23db29bf400",
576
+ "verify": {
577
+ "args": "[]"
578
+ }
579
+ },
580
+ "0x88C2c6A7535463962A34757FE63cc4F296381aba": {
581
+ "id": "PoseidonT3",
582
+ "deploymentTxHash": "0xe6f4d9bcbd8012fd7bf90aefe60818722cbeef7c40dff937aa4fb90c06e2384a",
583
+ "verify": {
584
+ "args": "[]"
585
+ }
586
+ },
587
+ "0xF8E637e5c9EC3A8d8fa8843A6dF833348E1F1E66": {
588
+ "id": "PoseidonT4",
589
+ "deploymentTxHash": "0x041f2bfa9258dde9a411d9bf6155bdb9282dbd4eb4182cc9052e6285679c0ff1",
590
+ "verify": {
591
+ "args": "[]"
592
+ }
593
+ },
594
+ "0x0a0D66baFDa8c8838281084d9C3d68Dd9a6Fc274": {
595
+ "id": "PoseidonT5",
596
+ "deploymentTxHash": "0x197041bb741918efd7d1cb1ccdd58a76e53da56fdebfa7fa3f5850349cb457d6",
597
+ "verify": {
598
+ "args": "[]"
599
+ }
600
+ },
601
+ "0xD2F6c828606Ad8e985008Cd825012f269B50CD58": {
602
+ "id": "PoseidonT6",
603
+ "deploymentTxHash": "0xff9c1393788a82b95c00b037bfac7fcb6857836e604bdadd42049cbf0d88537a",
604
+ "verify": {
605
+ "args": "[]"
606
+ }
607
+ },
608
+ "0x982530673Ce9e5Efa02438c694d48327Aa4fB592": {
609
+ "id": "PollFactory",
610
+ "deploymentTxHash": "0x1a0ba85163df584ea645e3f4de1173d8e7c86d4bd1641b2f6f10d8d2a5cde971",
611
+ "verify": {
612
+ "args": "[]"
613
+ }
614
+ },
615
+ "0x50045B05cb1C76410783D8A3e5625a99d5729339": {
616
+ "id": "MessageProcessorFactory",
617
+ "deploymentTxHash": "0x85717a2b7f555c5a31d67a401b4c233a216de27c4e8ccbc8ead5ab4241f92dba",
618
+ "verify": {
619
+ "args": "[]"
620
+ }
621
+ },
622
+ "0xbB28555E989799478442483CD1f2D370a14e2C42": {
623
+ "id": "TallyFactory",
624
+ "deploymentTxHash": "0xa7634556c12fb6e039fc189544b61ec5baa8fda94f5499e71751fa57e53c164e",
625
+ "verify": {
626
+ "args": "[]"
627
+ }
628
+ },
629
+ "0x3D4C58074DCD8E6526885F465ab5F311b6B290B5": {
630
+ "id": "VkRegistry",
631
+ "deploymentTxHash": "0x147fe06bd640870ef3e4dca188c89d8c75b35e3ce30bc9b972e0eae573658537",
632
+ "verify": {
633
+ "args": "[]"
634
+ }
635
+ },
636
+ "0x33Cc5e8b6f158B9ee3600EcD3f3DE76c6B7765a7": {
637
+ "id": "ZupassGatekeeper",
638
+ "deploymentTxHash": "0xe6954597b9079895f6facc122e2a0bd9af00bc0401bf6f61d9d7824aed534754",
639
+ "verify": {
640
+ "args": "[\"280209352117126055869169359893920931853\",\"13908133709081944902758389525983124100292637002438232157513257158004852609027\",\"7654374482676219729919246464135900991450848628968334062174564799457623790084\",\"0xd81aB9859e1d423aC51170256BedD0Aa00e4eD5A\"]"
641
+ }
642
+ }
643
+ },
644
+ "named": {
645
+ "ConstantInitialVoiceCreditProxy": {
646
+ "address": "0xB486cce9B4507A67Db147B0802D5673774C8D278",
647
+ "count": 1
648
+ },
649
+ "FreeForAllGatekeeper": {
650
+ "address": "0x83dD551541C580e338206f1f677835D427C92dE2",
651
+ "count": 1
652
+ },
653
+ "Verifier": {
654
+ "address": "0xD5C41106db85EDd0298279AcFCE5A722060cc5f9",
655
+ "count": 1
656
+ },
657
+ "PoseidonT3": {
658
+ "address": "0x88C2c6A7535463962A34757FE63cc4F296381aba",
659
+ "count": 1
660
+ },
661
+ "PoseidonT4": {
662
+ "address": "0xF8E637e5c9EC3A8d8fa8843A6dF833348E1F1E66",
663
+ "count": 1
664
+ },
665
+ "PoseidonT5": {
666
+ "address": "0x0a0D66baFDa8c8838281084d9C3d68Dd9a6Fc274",
667
+ "count": 1
668
+ },
669
+ "PoseidonT6": {
670
+ "address": "0xD2F6c828606Ad8e985008Cd825012f269B50CD58",
671
+ "count": 1
672
+ },
673
+ "PollFactory": {
674
+ "address": "0x982530673Ce9e5Efa02438c694d48327Aa4fB592",
675
+ "count": 1
676
+ },
677
+ "MessageProcessorFactory": {
678
+ "address": "0x50045B05cb1C76410783D8A3e5625a99d5729339",
679
+ "count": 1
680
+ },
681
+ "TallyFactory": {
682
+ "address": "0xbB28555E989799478442483CD1f2D370a14e2C42",
683
+ "count": 1
684
+ },
685
+ "VkRegistry": {
686
+ "address": "0x3D4C58074DCD8E6526885F465ab5F311b6B290B5",
687
+ "count": 1
688
+ },
689
+ "ZupassGatekeeper": {
690
+ "address": "0x33Cc5e8b6f158B9ee3600EcD3f3DE76c6B7765a7",
691
+ "count": 1
692
+ }
693
+ }
694
+ },
695
+ "base": {
696
+ "instance": {
697
+ "0x16FC13edD59D4b9F788Fb11A70eA022E1Bb1B856": {
698
+ "id": "ConstantInitialVoiceCreditProxy",
699
+ "deploymentTxHash": "0x242651353bbceb375246239a73005c9d9359754e5739d354ad9f90b76e80be0c",
700
+ "verify": {
701
+ "args": "[\"200\"]"
702
+ }
703
+ },
704
+ "0x8BA83Dd6E0E448417C519A38c90Ee570A4CA3e9f": {
705
+ "id": "FreeForAllGatekeeper",
706
+ "deploymentTxHash": "0x9bd1a8595f8ab33fac82958a02dd8bfc59756d367c74a0c9d87718fdcf973060",
707
+ "verify": {
708
+ "args": "[]"
709
+ }
710
+ },
711
+ "0x2427Ab201488Ac81Bec421F179B1Be23c55ebC27": {
712
+ "id": "Verifier",
713
+ "deploymentTxHash": "0x6eedd506c4339c14df939a98bd15b6e503eecc4e3a693dcb313a56a14ca7d8f9",
714
+ "verify": {
715
+ "args": "[]"
716
+ }
717
+ },
718
+ "0x2F1398ab5E322d357dF8CdD2e7ba73122c5FDDA4": {
719
+ "id": "PoseidonT3",
720
+ "deploymentTxHash": "0x0908efdd06741443bd38d57eab6d07daaa15f782a2eba0d485116580da21785d",
721
+ "verify": {
722
+ "args": "[]"
723
+ }
724
+ },
725
+ "0x8778dA47eF619f56341fE95514e95fa0FF3B77C6": {
726
+ "id": "PoseidonT4",
727
+ "deploymentTxHash": "0x4551ba77ad63c28cbf4910e2a3db99b6b8eb1a94e0d902c2366b08a8324b8819",
728
+ "verify": {
729
+ "args": "[]"
730
+ }
731
+ },
732
+ "0xB8Bc2c7cF71441fF7E6F111D3457e3d61c564968": {
733
+ "id": "PoseidonT5",
734
+ "deploymentTxHash": "0x2dea3913d068f5c365b88da011b542f8c86daa78bff60b0239dfbc1284d8c6ef",
735
+ "verify": {
736
+ "args": "[]"
737
+ }
738
+ },
739
+ "0x37282fEde56aa1d7266Ecb12DC3b342D12044e2E": {
740
+ "id": "PoseidonT6",
741
+ "deploymentTxHash": "0x56974c8cae477fba1c16ecebcf2bc929a112471e25e1779cdad3da43b45a6cd2",
742
+ "verify": {
743
+ "args": "[]"
744
+ }
745
+ },
746
+ "0x2F1A5B4F8F3B7348C66A1522622b1DB712261607": {
747
+ "id": "PollFactory",
748
+ "deploymentTxHash": "0x9a9640ccb8a938f97729bfc78e891161082de511c10ab0b62b0e18edd514a017",
749
+ "verify": {
750
+ "args": "[]"
751
+ }
752
+ },
753
+ "0xE4c9d4248F1371C5C61d406A9859f9FE667567a5": {
754
+ "id": "MessageProcessorFactory",
755
+ "deploymentTxHash": "0x1a23828d513579f09360065323b553de620ae8ce7dfa487dc43397d30700f8fb",
756
+ "verify": {
757
+ "args": "[]"
758
+ }
759
+ },
760
+ "0x57034389Dbe3DE1D1C14763f55B77A2279D6d43C": {
761
+ "id": "TallyFactory",
762
+ "deploymentTxHash": "0xa9afd6b34776d392bdeb5a8eea1c4d6692a2c0b000e131b9eecb4b5e0fc2bff6",
763
+ "verify": {
764
+ "args": "[]"
765
+ }
766
+ },
767
+ "0x6aA5baD99aC44bB008930c68CE2249549Cf10944": {
768
+ "id": "VkRegistry",
769
+ "deploymentTxHash": "0x15fd66ac9c193eae37b2b447621ff1d7603a4b55c54c73e0468f900136fc37cb",
770
+ "verify": {
771
+ "args": "[]"
772
+ }
773
+ }
774
+ },
775
+ "named": {
776
+ "ConstantInitialVoiceCreditProxy": {
777
+ "address": "0x16FC13edD59D4b9F788Fb11A70eA022E1Bb1B856",
778
+ "count": 1
779
+ },
780
+ "FreeForAllGatekeeper": {
781
+ "address": "0x8BA83Dd6E0E448417C519A38c90Ee570A4CA3e9f",
782
+ "count": 1
783
+ },
784
+ "Verifier": {
785
+ "address": "0x2427Ab201488Ac81Bec421F179B1Be23c55ebC27",
786
+ "count": 1
787
+ },
788
+ "PoseidonT3": {
789
+ "address": "0x2F1398ab5E322d357dF8CdD2e7ba73122c5FDDA4",
790
+ "count": 1
791
+ },
792
+ "PoseidonT4": {
793
+ "address": "0x8778dA47eF619f56341fE95514e95fa0FF3B77C6",
794
+ "count": 1
795
+ },
796
+ "PoseidonT5": {
797
+ "address": "0xB8Bc2c7cF71441fF7E6F111D3457e3d61c564968",
798
+ "count": 1
799
+ },
800
+ "PoseidonT6": {
801
+ "address": "0x37282fEde56aa1d7266Ecb12DC3b342D12044e2E",
802
+ "count": 1
803
+ },
804
+ "PollFactory": {
805
+ "address": "0x2F1A5B4F8F3B7348C66A1522622b1DB712261607",
806
+ "count": 1
807
+ },
808
+ "MessageProcessorFactory": {
809
+ "address": "0xE4c9d4248F1371C5C61d406A9859f9FE667567a5",
810
+ "count": 1
811
+ },
812
+ "TallyFactory": {
813
+ "address": "0x57034389Dbe3DE1D1C14763f55B77A2279D6d43C",
814
+ "count": 1
815
+ },
816
+ "VkRegistry": {
817
+ "address": "0x6aA5baD99aC44bB008930c68CE2249549Cf10944",
818
+ "count": 1
819
+ },
820
+ "MACI": {
821
+ "address": "0xe98D62574B1b780b8C13B1917700001dc5FEc68a",
822
+ "count": 1
823
+ },
824
+ "Poll": {
825
+ "poll-0": {
826
+ "address": "0xcc82063FAA821060AF76DDb7f4205AE370624d6b",
827
+ "count": 1
828
+ }
829
+ },
830
+ "MessageProcessor": {
831
+ "poll-0": {
832
+ "address": "0xaA2eAf2389B41Fd5B292C872352CbaC18BaD3bfD",
833
+ "count": 1
834
+ }
835
+ },
836
+ "Tally": {
837
+ "poll-0": {
838
+ "address": "0x989194c53be04Bd90BcbF2142e7050d011dCF048",
839
+ "count": 1
840
+ }
841
+ },
842
+ "AccQueueQuinaryMaci": {
843
+ "poll-0": {
844
+ "address": "0x688b36aa55B94Ff843C819ddd2fEE0e21c2Dc4e7",
845
+ "count": 1
846
+ }
847
+ }
848
+ }
849
+ },
850
+ "arbitrum": {
851
+ "instance": {
852
+ "0x16FC13edD59D4b9F788Fb11A70eA022E1Bb1B856": {
853
+ "id": "ConstantInitialVoiceCreditProxy",
854
+ "deploymentTxHash": "0x72ef6fcc655bcd8bbc1d545b2a51ab44ce5291bb4fa548259c42de1325145952",
855
+ "verify": {
856
+ "args": "[\"200\"]"
857
+ }
858
+ },
859
+ "0x8BA83Dd6E0E448417C519A38c90Ee570A4CA3e9f": {
860
+ "id": "FreeForAllGatekeeper",
861
+ "deploymentTxHash": "0x9c0775b0288898a94f27865d46e5bd8872492b5df65cd177b150806aab7560a7",
862
+ "verify": {
863
+ "args": "[]"
864
+ }
865
+ },
866
+ "0x2427Ab201488Ac81Bec421F179B1Be23c55ebC27": {
867
+ "id": "Verifier",
868
+ "deploymentTxHash": "0x4a1a77469dff336b80ed4ef8e7482b3a77b9e1c76e92e9bb0c3f3f3229b2ee4c",
869
+ "verify": {
870
+ "args": "[]"
871
+ }
872
+ },
873
+ "0x2F1398ab5E322d357dF8CdD2e7ba73122c5FDDA4": {
874
+ "id": "PoseidonT3",
875
+ "deploymentTxHash": "0x1479f77d3c9ccb71d3050097f9caa7c24632814282e1a530d8eefe7e34ab2949",
876
+ "verify": {
877
+ "args": "[]"
878
+ }
879
+ },
880
+ "0x8778dA47eF619f56341fE95514e95fa0FF3B77C6": {
881
+ "id": "PoseidonT4",
882
+ "deploymentTxHash": "0x3d203b3236acec539b1da934f43184924aef0cba84f375febe0919921fbea803",
883
+ "verify": {
884
+ "args": "[]"
885
+ }
886
+ },
887
+ "0xB8Bc2c7cF71441fF7E6F111D3457e3d61c564968": {
888
+ "id": "PoseidonT5",
889
+ "deploymentTxHash": "0x7a4c8f1809958494685511cf25a70d4e2906bd074843b56ccf5ce5fd96e6f2f9",
890
+ "verify": {
891
+ "args": "[]"
892
+ }
893
+ },
894
+ "0x37282fEde56aa1d7266Ecb12DC3b342D12044e2E": {
895
+ "id": "PoseidonT6",
896
+ "deploymentTxHash": "0x75853fcc0e430fdd3c4a7971d4e555161affdf93a7f5a4eaaa93c83c4c1ce94f",
897
+ "verify": {
898
+ "args": "[]"
899
+ }
900
+ },
901
+ "0x2F1A5B4F8F3B7348C66A1522622b1DB712261607": {
902
+ "id": "PollFactory",
903
+ "deploymentTxHash": "0x8315c48647621fa0cee54314ea49bcc851223eabd1f7dc9f3efcf307924ebd69",
904
+ "verify": {
905
+ "args": "[]"
906
+ }
907
+ },
908
+ "0xE4c9d4248F1371C5C61d406A9859f9FE667567a5": {
909
+ "id": "MessageProcessorFactory",
910
+ "deploymentTxHash": "0x1a30587862f43b3f2cb764cc18e4fbd09a55880bc059471998793ff4e92b6469",
911
+ "verify": {
912
+ "args": "[]"
913
+ }
914
+ },
915
+ "0x57034389Dbe3DE1D1C14763f55B77A2279D6d43C": {
916
+ "id": "TallyFactory",
917
+ "deploymentTxHash": "0x960ed63cbea915e39b7dec78d22e83f3d2c710b902262217f2444202356d0880",
918
+ "verify": {
919
+ "args": "[]"
920
+ }
921
+ },
922
+ "0x6aA5baD99aC44bB008930c68CE2249549Cf10944": {
923
+ "id": "VkRegistry",
924
+ "deploymentTxHash": "0xfeaaff43b313214986c4d1f3d3b610f5715be2c17bc10849e3cae776a505bd09",
925
+ "verify": {
926
+ "args": "[]"
927
+ }
928
+ }
929
+ },
930
+ "named": {
931
+ "ConstantInitialVoiceCreditProxy": {
932
+ "address": "0x16FC13edD59D4b9F788Fb11A70eA022E1Bb1B856",
933
+ "count": 1
934
+ },
935
+ "FreeForAllGatekeeper": {
936
+ "address": "0x8BA83Dd6E0E448417C519A38c90Ee570A4CA3e9f",
937
+ "count": 1
938
+ },
939
+ "Verifier": {
940
+ "address": "0x2427Ab201488Ac81Bec421F179B1Be23c55ebC27",
941
+ "count": 1
942
+ },
943
+ "PoseidonT3": {
944
+ "address": "0x2F1398ab5E322d357dF8CdD2e7ba73122c5FDDA4",
945
+ "count": 1
946
+ },
947
+ "PoseidonT4": {
948
+ "address": "0x8778dA47eF619f56341fE95514e95fa0FF3B77C6",
949
+ "count": 1
950
+ },
951
+ "PoseidonT5": {
952
+ "address": "0xB8Bc2c7cF71441fF7E6F111D3457e3d61c564968",
953
+ "count": 1
954
+ },
955
+ "PoseidonT6": {
956
+ "address": "0x37282fEde56aa1d7266Ecb12DC3b342D12044e2E",
957
+ "count": 1
958
+ },
959
+ "PollFactory": {
960
+ "address": "0x2F1A5B4F8F3B7348C66A1522622b1DB712261607",
961
+ "count": 1
962
+ },
963
+ "MessageProcessorFactory": {
964
+ "address": "0xE4c9d4248F1371C5C61d406A9859f9FE667567a5",
965
+ "count": 1
966
+ },
967
+ "TallyFactory": {
968
+ "address": "0x57034389Dbe3DE1D1C14763f55B77A2279D6d43C",
969
+ "count": 1
970
+ },
971
+ "VkRegistry": {
972
+ "address": "0x6aA5baD99aC44bB008930c68CE2249549Cf10944",
973
+ "count": 1
974
+ }
975
+ }
976
+ },
977
+ "optimism": {
978
+ "instance": {
979
+ "0x83dD551541C580e338206f1f677835D427C92dE2": {
980
+ "id": "ConstantInitialVoiceCreditProxy",
981
+ "deploymentTxHash": "0x44b638a8e359b5014ed77492755ade1d59cf6f5f72f39110c325e7fa463dad6a",
982
+ "verify": {
983
+ "args": "[\"200\"]"
984
+ }
985
+ },
986
+ "0xD5C41106db85EDd0298279AcFCE5A722060cc5f9": {
987
+ "id": "FreeForAllGatekeeper",
988
+ "deploymentTxHash": "0x69c745b040908eb98e63065b1f5635d7d5176d0e331d37321c564ed1b6658a5c",
989
+ "verify": {
990
+ "args": "[]"
991
+ }
992
+ },
993
+ "0x88C2c6A7535463962A34757FE63cc4F296381aba": {
994
+ "id": "Verifier",
995
+ "deploymentTxHash": "0x7f25d693564a17029b9bdfc0850a4c8ea30797e2096961558c5e05df4aa8175d",
996
+ "verify": {
997
+ "args": "[]"
998
+ }
999
+ },
1000
+ "0xF8E637e5c9EC3A8d8fa8843A6dF833348E1F1E66": {
1001
+ "id": "PoseidonT3",
1002
+ "deploymentTxHash": "0x25e4abb71a79528f8c76bcb83a1163597c80177091667ccb2fd2eb57af84b254",
1003
+ "verify": {
1004
+ "args": "[]"
1005
+ }
1006
+ },
1007
+ "0x0a0D66baFDa8c8838281084d9C3d68Dd9a6Fc274": {
1008
+ "id": "PoseidonT4",
1009
+ "deploymentTxHash": "0xff394431d7f8985936fc81009a461aa176b4e97a540b031771387e2b3a058ef5",
1010
+ "verify": {
1011
+ "args": "[]"
1012
+ }
1013
+ },
1014
+ "0xD2F6c828606Ad8e985008Cd825012f269B50CD58": {
1015
+ "id": "PoseidonT5",
1016
+ "deploymentTxHash": "0x64b18ed067fcd5aa9061255cace422992b0c02207d09a4f78e7182143bb05d88",
1017
+ "verify": {
1018
+ "args": "[]"
1019
+ }
1020
+ },
1021
+ "0x982530673Ce9e5Efa02438c694d48327Aa4fB592": {
1022
+ "id": "PoseidonT6",
1023
+ "deploymentTxHash": "0xbb20d4bdc02536ae1435cfcd4b07914161f028063d8cbf66cb8f79b2e2097929",
1024
+ "verify": {
1025
+ "args": "[]"
1026
+ }
1027
+ },
1028
+ "0x50045B05cb1C76410783D8A3e5625a99d5729339": {
1029
+ "id": "PollFactory",
1030
+ "deploymentTxHash": "0x65d63100f9eeea80513d6f8513af97e51dca6caf138488eb849f5ae600d2b5b1",
1031
+ "verify": {
1032
+ "args": "[]"
1033
+ }
1034
+ },
1035
+ "0xbB28555E989799478442483CD1f2D370a14e2C42": {
1036
+ "id": "MessageProcessorFactory",
1037
+ "deploymentTxHash": "0x74384358e8fba869c0d4be06e562a93d5020a0685ab428dbbab94068af5a6d4d",
1038
+ "verify": {
1039
+ "args": "[]"
1040
+ }
1041
+ },
1042
+ "0xdA10b22B81eb8EA6BC04aa9b86d3f9d969CD49F0": {
1043
+ "id": "TallyFactory",
1044
+ "deploymentTxHash": "0x918e20d6b1c39d921efec9bf8ebcf46ff20449750633350b8a0b9281bb621cd2",
1045
+ "verify": {
1046
+ "args": "[]"
1047
+ }
1048
+ },
1049
+ "0x7E16271EaE58F52a0431F87Ee7E40c978178C63F": {
1050
+ "id": "VkRegistry",
1051
+ "deploymentTxHash": "0x197b6b3cc28fda77c36a2b14d44c24f5b8aeff4d009939d200166476656ac521",
1052
+ "verify": {
1053
+ "args": "[]"
1054
+ }
1055
+ }
1056
+ },
1057
+ "named": {
1058
+ "ConstantInitialVoiceCreditProxy": {
1059
+ "address": "0x83dD551541C580e338206f1f677835D427C92dE2",
1060
+ "count": 1
1061
+ },
1062
+ "FreeForAllGatekeeper": {
1063
+ "address": "0xD5C41106db85EDd0298279AcFCE5A722060cc5f9",
1064
+ "count": 1
1065
+ },
1066
+ "Verifier": {
1067
+ "address": "0x88C2c6A7535463962A34757FE63cc4F296381aba",
1068
+ "count": 1
1069
+ },
1070
+ "PoseidonT3": {
1071
+ "address": "0xF8E637e5c9EC3A8d8fa8843A6dF833348E1F1E66",
1072
+ "count": 1
1073
+ },
1074
+ "PoseidonT4": {
1075
+ "address": "0x0a0D66baFDa8c8838281084d9C3d68Dd9a6Fc274",
1076
+ "count": 1
1077
+ },
1078
+ "PoseidonT5": {
1079
+ "address": "0xD2F6c828606Ad8e985008Cd825012f269B50CD58",
1080
+ "count": 1
1081
+ },
1082
+ "PoseidonT6": {
1083
+ "address": "0x982530673Ce9e5Efa02438c694d48327Aa4fB592",
1084
+ "count": 1
1085
+ },
1086
+ "PollFactory": {
1087
+ "address": "0x50045B05cb1C76410783D8A3e5625a99d5729339",
1088
+ "count": 1
1089
+ },
1090
+ "MessageProcessorFactory": {
1091
+ "address": "0xbB28555E989799478442483CD1f2D370a14e2C42",
1092
+ "count": 1
1093
+ },
1094
+ "TallyFactory": {
1095
+ "address": "0xdA10b22B81eb8EA6BC04aa9b86d3f9d969CD49F0",
1096
+ "count": 1
1097
+ },
1098
+ "VkRegistry": {
1099
+ "address": "0x7E16271EaE58F52a0431F87Ee7E40c978178C63F",
1100
+ "count": 1
1101
+ }
1102
+ },
1103
+ "verified": {
1104
+ "0x83dD551541C580e338206f1f677835D427C92dE2": true
1105
+ }
1106
+ }
1107
+ }
1108
+ ```