@maci-protocol/cli 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.
- package/CHANGELOG.md +797 -0
- package/LICENSE +22 -0
- package/README.md +12 -0
- package/build/hardhat.config.d.ts +5 -0
- package/build/hardhat.config.d.ts.map +1 -0
- package/build/hardhat.config.js +27 -0
- package/build/hardhat.config.js.map +1 -0
- package/build/package.json +78 -0
- package/build/ts/cliInit.d.ts +2 -0
- package/build/ts/cliInit.d.ts.map +1 -0
- package/build/ts/cliInit.js +11 -0
- package/build/ts/cliInit.js.map +1 -0
- package/build/ts/index.d.ts +3 -0
- package/build/ts/index.d.ts.map +1 -0
- package/build/ts/index.js +900 -0
- package/build/ts/index.js.map +1 -0
- package/build/ts/utils/banner.d.ts +6 -0
- package/build/ts/utils/banner.d.ts.map +1 -0
- package/build/ts/utils/banner.js +30 -0
- package/build/ts/utils/banner.js.map +1 -0
- package/build/ts/utils/constants.d.ts +2 -0
- package/build/ts/utils/constants.d.ts.map +1 -0
- package/build/ts/utils/constants.js +10 -0
- package/build/ts/utils/constants.js.map +1 -0
- package/build/ts/utils/defaults.d.ts +7 -0
- package/build/ts/utils/defaults.d.ts.map +1 -0
- package/build/ts/utils/defaults.js +16 -0
- package/build/ts/utils/defaults.js.map +1 -0
- package/build/ts/utils/index.d.ts +6 -0
- package/build/ts/utils/index.d.ts.map +1 -0
- package/build/ts/utils/index.js +21 -0
- package/build/ts/utils/index.js.map +1 -0
- package/build/ts/utils/interfaces.d.ts +41 -0
- package/build/ts/utils/interfaces.d.ts.map +1 -0
- package/build/ts/utils/interfaces.js +3 -0
- package/build/ts/utils/interfaces.js.map +1 -0
- package/build/ts/utils/prompts.d.ts +7 -0
- package/build/ts/utils/prompts.d.ts.map +1 -0
- package/build/ts/utils/prompts.js +16 -0
- package/build/ts/utils/prompts.js.map +1 -0
- package/build/ts/utils/storage.d.ts +25 -0
- package/build/ts/utils/storage.d.ts.map +1 -0
- package/build/ts/utils/storage.js +65 -0
- package/build/ts/utils/storage.js.map +1 -0
- package/build/tsconfig.build.tsbuildinfo +1 -0
- package/package.json +79 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,797 @@
|
|
|
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
|
+
* fix(merge): tmp-anon-poll-joining merge
|
|
132
|
+
|
|
133
|
+
* fix(merge): tmp-anon-poll-joining merge
|
|
134
|
+
|
|
135
|
+
* test(ceremonyparams): add poll joining in the test
|
|
136
|
+
|
|
137
|
+
* test(processmessages): add poll joining for the test
|
|
138
|
+
|
|
139
|
+
without key-change test
|
|
140
|
+
|
|
141
|
+
* test(polljoining): add poll joining in the test
|
|
142
|
+
|
|
143
|
+
* test(tallyvotes): add poll joining in the test
|
|
144
|
+
|
|
145
|
+
* test(core): add joinPoll function in tests
|
|
146
|
+
|
|
147
|
+
* style(typo): inclusion proof
|
|
148
|
+
|
|
149
|
+
* style(todo): remove finished todo
|
|
150
|
+
|
|
151
|
+
* style(merge): after merge style
|
|
152
|
+
|
|
153
|
+
* style(return): inline return
|
|
154
|
+
|
|
155
|
+
* style(eslint): remove unnecessary eslint-disable
|
|
156
|
+
|
|
157
|
+
* refactor(joiningcircuitargs): add interface IJoiningCircuitArgs
|
|
158
|
+
|
|
159
|
+
* refactor(joinpoll): async read state file
|
|
160
|
+
|
|
161
|
+
* style(genmacisignup): add function description
|
|
162
|
+
|
|
163
|
+
* refactor(gensignuptree): add IGenSignUpTreeArgs interface
|
|
164
|
+
|
|
165
|
+
* style(polljoining): remove extra inlcudes and comments
|
|
166
|
+
|
|
167
|
+
* feat(pollvkkeys): init
|
|
168
|
+
|
|
169
|
+
* feat(vkregistry): separate set functions (process/tally/poll)
|
|
170
|
+
|
|
171
|
+
* test(pollvkkey): adjust test to setPollVkKey
|
|
172
|
+
|
|
173
|
+
* refactor(vkregistry): use setVerifyingKeys in setVerifyingKeysBatch
|
|
174
|
+
|
|
175
|
+
* refactor(poll): add verifier and vkRegystry in constructor
|
|
176
|
+
|
|
177
|
+
* refactor(poll): put verifier and vkRegistry into extContracts
|
|
178
|
+
|
|
179
|
+
* test(core e2e): fix sanity checks test for incorrect signature
|
|
180
|
+
|
|
181
|
+
* refactor(test): removing only from tests
|
|
182
|
+
|
|
183
|
+
* refactor(macistatetree): use LeanIMT instead of QuinTree
|
|
184
|
+
|
|
185
|
+
* refactor(crypto): export hashLeanIMT from index
|
|
186
|
+
|
|
187
|
+
* feat(joinpoll): use genSignUpTree instead of genMaciStateFromContract
|
|
188
|
+
|
|
189
|
+
* feat(joinpoll cli): add optional parameters
|
|
190
|
+
|
|
191
|
+
* test(coordinator): add pollJoiningZkeyPath in app.test
|
|
192
|
+
|
|
193
|
+
* refactor(joinpoll): prettier
|
|
194
|
+
|
|
195
|
+
* test(coordinator): add joinPoll
|
|
196
|
+
|
|
197
|
+
* fix(poll): joiningCircuitInputs with correct siblings, indices and actualStateTreeDepth
|
|
198
|
+
|
|
199
|
+
* test(integration): add joinPoll
|
|
200
|
+
|
|
201
|
+
* build(coordinator): add COORDINATOR_POLL_ZKEY_NAME
|
|
202
|
+
|
|
203
|
+
* refactor(mergestate): remove Maci from MergeState
|
|
204
|
+
|
|
205
|
+
* test(e2e): test:e2e add joinPoll
|
|
206
|
+
|
|
207
|
+
* test(e2e): test:keyChange add joinPoll
|
|
208
|
+
|
|
209
|
+
* docs(complete documentation): complete documentation of the new workflow
|
|
210
|
+
|
|
211
|
+
* docs(documentation): add v3 docs, revert v2 docs
|
|
212
|
+
|
|
213
|
+
* style(docs): prettier
|
|
214
|
+
|
|
215
|
+
* refactor(joinpoll): add generateAndVerifyProof and getStateIndexAndCreditBalance
|
|
216
|
+
|
|
217
|
+
* docs(blogpost): blogpost cuvering the latest updates
|
|
218
|
+
|
|
219
|
+
* docs(blogpost): kudos to our team members!
|
|
220
|
+
|
|
221
|
+
* style(prettier): blog
|
|
222
|
+
|
|
223
|
+
* fix(joinpoll): index value of the user in the state tree leaves
|
|
224
|
+
|
|
225
|
+
* docs(blog): remove poll-joining
|
|
226
|
+
* message processing is changed
|
|
227
|
+
|
|
228
|
+
* fix(ipoll): add missing parameter
|
|
229
|
+
|
|
230
|
+
* fix(poll-tests): add missing parameter maxMessagebatchSize
|
|
231
|
+
|
|
232
|
+
* feat(poll.ts): add chain hash updating
|
|
233
|
+
|
|
234
|
+
* test(poll tests): add test for checking chain hash computation
|
|
235
|
+
|
|
236
|
+
* feat(poll.ts): add batch hashes array computation
|
|
237
|
+
|
|
238
|
+
* feat(poll.sol): pad zeroes to the maximum size of batch
|
|
239
|
+
|
|
240
|
+
* feat(messageprocessor): update process messages to use chain hash
|
|
241
|
+
|
|
242
|
+
* refactor(vkregistry): refactor function call
|
|
243
|
+
|
|
244
|
+
* feat(processmessages.circom): add chainHash feature in circuits and test for that
|
|
245
|
+
|
|
246
|
+
* test(processmessages): rearrange test for key-change
|
|
247
|
+
|
|
248
|
+
* refactor(mergemessages): refactor functions calls which include mergemessages
|
|
249
|
+
|
|
250
|
+
* refactor(mergemessages): add some more changes about functions call which include mergemessages
|
|
251
|
+
|
|
252
|
+
* test(all tests): fixing tests after refactoring code
|
|
253
|
+
|
|
254
|
+
* refactor(accqueue): remove all calls for accqueue
|
|
255
|
+
|
|
256
|
+
* fix(currentmessagebatchindex): fix message batch indexing
|
|
257
|
+
|
|
258
|
+
* refactor(circuit tests): refactor code for circuit testing
|
|
259
|
+
|
|
260
|
+
* test(ceremonyparams.test): correct constants for CeremonyParams test
|
|
261
|
+
|
|
262
|
+
* perf(processmessages.circom + contracts): optimize last batch padding, remove unused inputs
|
|
263
|
+
|
|
264
|
+
* docs(padlastbatch method): update doc comment
|
|
265
|
+
|
|
266
|
+
* docs(poll.ts): remove stale comments
|
|
267
|
+
|
|
268
|
+
* docs(test comments): fix typos
|
|
269
|
+
|
|
270
|
+
* ci(treedepths mock): modify interface for mocked function
|
|
271
|
+
|
|
272
|
+
* fix(ceremony params test): fix circuit inputs
|
|
273
|
+
|
|
274
|
+
* test(messagevalidator): fix function calls for messagevalidator circuit in tests
|
|
275
|
+
|
|
276
|
+
* chore(comments): fix unusefull comments
|
|
277
|
+
|
|
278
|
+
* refactor(poll.sol): replace external contracts with maci only
|
|
279
|
+
|
|
280
|
+
* perf(messageprocessor.sol): hardcode initialization for batchHashes array
|
|
281
|
+
|
|
282
|
+
* docs(comments): fix some more comments
|
|
283
|
+
|
|
284
|
+
* test(test for pr checks): correct some of tests for PR checks
|
|
285
|
+
|
|
286
|
+
* ci: 🎡 renamed old ProcessMessages_10-2-1-2_test
|
|
287
|
+
|
|
288
|
+
* ci: 🎡 correct rapidsnark/build/prover path
|
|
289
|
+
|
|
290
|
+
* style(reviews): solve some reviews for merging
|
|
291
|
+
|
|
292
|
+
* refactor(messageaqq): remove more message merging and message aqq
|
|
293
|
+
|
|
294
|
+
* style(messageaqq): remove more message merging and message aqq
|
|
295
|
+
|
|
296
|
+
* refactor(messageaqq): remove message aqq from subgraph
|
|
297
|
+
|
|
298
|
+
* test(coordinator): hide NOT_MERGED_MESSAGE_TREE error
|
|
299
|
+
|
|
300
|
+
* test(coordinator): fix test about message merging
|
|
301
|
+
|
|
302
|
+
* test(proveonchain): change chainHash calculation
|
|
303
|
+
|
|
304
|
+
* test(proveonchain): fix chainHashes declaration
|
|
305
|
+
|
|
306
|
+
* test(proveonchain): fix chainHash calculation
|
|
307
|
+
|
|
308
|
+
* test(proveonchain): fix chainHashes calculations
|
|
309
|
+
|
|
310
|
+
* test(proveonchain): fix chainHashes calculation
|
|
311
|
+
|
|
312
|
+
* test(proveonchain): fix loop limit
|
|
313
|
+
|
|
314
|
+
* style(review comments): resolve some of review comments
|
|
315
|
+
|
|
316
|
+
* style(review comments): resolve some of review comments
|
|
317
|
+
|
|
318
|
+
* test(lint:ts): fix e2e test because of lint:ts check
|
|
319
|
+
|
|
320
|
+
* docs(wrong changes): fix wrong changes about documentation that is not in our scope
|
|
321
|
+
|
|
322
|
+
* refactor(batchsizes): change batchSizes struct with messageBatchSize variable
|
|
323
|
+
|
|
324
|
+
* refactor(contracts): rollback to provide external contract references
|
|
325
|
+
|
|
326
|
+
* docs(messageprocessor.sol): fix typo
|
|
327
|
+
|
|
328
|
+
* refactor(messagebatchsize): chenge messageBatchSize location from Params.sol to Poll.sol
|
|
329
|
+
|
|
330
|
+
* refactor(maxmessages): remove maxMessages from maxValues
|
|
331
|
+
|
|
332
|
+
* refactor(sltimestemp): remove slTimestamp from circuits
|
|
333
|
+
|
|
334
|
+
* refactor(review comments): resolve more review comments
|
|
335
|
+
|
|
336
|
+
* fix(subgraph): fix bug about maxVoteOptions dunction call
|
|
337
|
+
|
|
338
|
+
* fix(sltimestamp): fix test for removing slTimestap signal
|
|
339
|
+
|
|
340
|
+
* refactor(promise.all): refactor promise.all for only one async call
|
|
341
|
+
|
|
342
|
+
* fix(subgraph): try to fix subgraph build
|
|
343
|
+
|
|
344
|
+
* revert(.nx folder): remove .nx folder from cli folder
|
|
345
|
+
|
|
346
|
+
### Features
|
|
347
|
+
|
|
348
|
+
* add logs output option for debugging and auditing ([d638fb6](https://github.com/privacy-scaling-explorations/maci/commit/d638fb67348ce34c2f93222911b0c29c14a6b9b2))
|
|
349
|
+
* add number of valid vote options ([cdba5a3](https://github.com/privacy-scaling-explorations/maci/commit/cdba5a3ca939fab8e51e40b734bd2061a87daa37))
|
|
350
|
+
* add start and end timestmap for poll ([cf67b53](https://github.com/privacy-scaling-explorations/maci/commit/cf67b539d7d5dfd8b83ba3e0becaa20d0292b410))
|
|
351
|
+
* 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))
|
|
352
|
+
* anonymous poll joining milestone 2 and 3 ([#1750](https://github.com/privacy-scaling-explorations/maci/issues/1750)) ([47d6937](https://github.com/privacy-scaling-explorations/maci/commit/47d69371113f2b0f07cc9f60208e0601a4f9a065))
|
|
353
|
+
* **circuits:** add poll joined circuit ([30c4f6a](https://github.com/privacy-scaling-explorations/maci/commit/30c4f6a6edbbe8f2a9685e3bb40b9eaa5e893d84))
|
|
354
|
+
* **contracts:** add anon aadhaar gatekeeper checker ([13f14b0](https://github.com/privacy-scaling-explorations/maci/commit/13f14b07fd5fe8433d46b6fc6bab94216b06c97d))
|
|
355
|
+
* **contracts:** integrate excubiae for gatekeepers ([fae260b](https://github.com/privacy-scaling-explorations/maci/commit/fae260bbdd4d6b7a8749f61c0310526448a6c030))
|
|
356
|
+
* **contracts:** relay messages ([1f10971](https://github.com/privacy-scaling-explorations/maci/commit/1f1097110909f09b924137d4a2567d4723542eb8))
|
|
357
|
+
* force the same key for each poll ([#2063](https://github.com/privacy-scaling-explorations/maci/issues/2063)) ([11e5b8a](https://github.com/privacy-scaling-explorations/maci/commit/11e5b8aa577a88aa1dcf5c745dab900352da351d))
|
|
358
|
+
* make nullifier not leak identity between polls ([#1974](https://github.com/privacy-scaling-explorations/maci/issues/1974)) ([c9e7efc](https://github.com/privacy-scaling-explorations/maci/commit/c9e7efc825be2d0aaabae014ae51a97e2adaa413))
|
|
359
|
+
* rebase anon poll joining with dev ([c384a5b](https://github.com/privacy-scaling-explorations/maci/commit/c384a5b8e53706bb00060f684242e8ba9a4d11e8))
|
|
360
|
+
* **relayer:** add auth guard for message publishing ([813bfc7](https://github.com/privacy-scaling-explorations/maci/commit/813bfc7b25e403902e6779ef4304ee48bb5640e9))
|
|
361
|
+
* **sdk:** return processProofs, tallyProofs and tallyData in generateProofs ([#2193](https://github.com/privacy-scaling-explorations/maci/issues/2193)) ([dfbc410](https://github.com/privacy-scaling-explorations/maci/commit/dfbc410d4267fb6e3d327aa3b645792d7380aff7))
|
|
362
|
+
* use excubiae policies instead of gatekeepers ([a2319b1](https://github.com/privacy-scaling-explorations/maci/commit/a2319b19e473e683a301bd79b3ab2b06e83f9452))
|
|
363
|
+
* use gatekeeper per poll ([#1961](https://github.com/privacy-scaling-explorations/maci/issues/1961)) ([8e1ab15](https://github.com/privacy-scaling-explorations/maci/commit/8e1ab154f8a4f23e7cceac513c8b08da6c4eeb27))
|
|
364
|
+
* voice credits per poll ([#1967](https://github.com/privacy-scaling-explorations/maci/issues/1967)) ([f59e9c3](https://github.com/privacy-scaling-explorations/maci/commit/f59e9c350133efb2fbbc37e5139addf5e34c55e6))
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
### Bug Fixes
|
|
368
|
+
|
|
369
|
+
* add missing parts after anon poll joining rebase ([6349806](https://github.com/privacy-scaling-explorations/maci/commit/63498069fce87dd615d5be1db84a69332fcefe6e))
|
|
370
|
+
* anon poll joining ([bc6d4c2](https://github.com/privacy-scaling-explorations/maci/commit/bc6d4c28ce19d7d84d86fb6c96ca6a5f26780558))
|
|
371
|
+
* storage write for e2e tests ([1370f82](https://github.com/privacy-scaling-explorations/maci/commit/1370f8226074d129f91409a3898a5867af43814c))
|
|
372
|
+
* tests for poll joining ([e33c5dc](https://github.com/privacy-scaling-explorations/maci/commit/e33c5dc784ae9126a286cc002e5e5128f428bca3))
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
### Code Refactoring
|
|
376
|
+
|
|
377
|
+
* cleanup anon poll joining ([c94bd8e](https://github.com/privacy-scaling-explorations/maci/commit/c94bd8e52713a976d639aaeac3226cc4c2ea9fb5))
|
|
378
|
+
* **cli:** cleanup signup command ([601269c](https://github.com/privacy-scaling-explorations/maci/commit/601269c8c5c508289e3f95ac6b55603c73d19779))
|
|
379
|
+
* **cli:** move deploy vk registry and testing commands to sdk ([bcd8d12](https://github.com/privacy-scaling-explorations/maci/commit/bcd8d12980067a5d1618fe43c8d3a9b5c5d5be84))
|
|
380
|
+
* **cli:** move key generation commands to sdk ([08634a1](https://github.com/privacy-scaling-explorations/maci/commit/08634a150bc8ca2428069a741a5ebda7a197dc8d))
|
|
381
|
+
* **cli:** move maci state generation to sdk ([f922298](https://github.com/privacy-scaling-explorations/maci/commit/f92229850ad4c6416274dcab64fd981de070a491))
|
|
382
|
+
* **cli:** move proof generation and poll deploy to sdk ([31922b2](https://github.com/privacy-scaling-explorations/maci/commit/31922b2f816ecdd254d761e49b25081f5c9fa9a3))
|
|
383
|
+
* **cli:** move prove onchain to sdk ([452a68a](https://github.com/privacy-scaling-explorations/maci/commit/452a68a452ac33f9186ecf735e8d5df852a5c5e1))
|
|
384
|
+
* **cli:** move publish commands to sdk ([aa16343](https://github.com/privacy-scaling-explorations/maci/commit/aa1634325c2617f3a8a95e3013adc60758b996ae))
|
|
385
|
+
* **cli:** move signups merging to sdk ([36a8d6d](https://github.com/privacy-scaling-explorations/maci/commit/36a8d6de45ae2dc8e9fb49fb2a1092b31216ed66))
|
|
386
|
+
* **cli:** move vk commands to sdk ([1f2a81e](https://github.com/privacy-scaling-explorations/maci/commit/1f2a81e67ccdea1ca6136dd71005cb7f91ae02fb))
|
|
387
|
+
* **cli:** use contract storage for cli ([b417ee7](https://github.com/privacy-scaling-explorations/maci/commit/b417ee7de9c54fb875c363ca38c1c41eb34d8e8e))
|
|
388
|
+
* **cli:** use verify from sdk ([eadd2e4](https://github.com/privacy-scaling-explorations/maci/commit/eadd2e4f2ebc5f1bfe94d6b0c8f01208d7e37f93))
|
|
389
|
+
* contract imports and proofs ([#2074](https://github.com/privacy-scaling-explorations/maci/issues/2074)) ([66dfab7](https://github.com/privacy-scaling-explorations/maci/commit/66dfab7e0916f5891f47ae1448b89f7b0fd0ed27))
|
|
390
|
+
* deploy maci command ([3eb6915](https://github.com/privacy-scaling-explorations/maci/commit/3eb691568a01e94cbbdb2f4f806efae002b19328))
|
|
391
|
+
* gen proofs ([7bba1c5](https://github.com/privacy-scaling-explorations/maci/commit/7bba1c5ab0abfb0d518400cefbc00a3cd75dadd2))
|
|
392
|
+
* join poll sdk ([52607a7](https://github.com/privacy-scaling-explorations/maci/commit/52607a7df7c73f1b8371035f19fbd2433beab8b5))
|
|
393
|
+
* make separate testing package ([#2229](https://github.com/privacy-scaling-explorations/maci/issues/2229)) ([bd07a7f](https://github.com/privacy-scaling-explorations/maci/commit/bd07a7f0783b2efe2659bc18255f8f4ed2e3c0d3))
|
|
394
|
+
* poll deploy sdk ([#2189](https://github.com/privacy-scaling-explorations/maci/issues/2189)) ([da1b785](https://github.com/privacy-scaling-explorations/maci/commit/da1b7852cea94663a97ef7ceef1c3e9b8ca3eda8))
|
|
395
|
+
* **sdk:** change sdk package structure ([3255909](https://github.com/privacy-scaling-explorations/maci/commit/3255909f685e613446d2a499f3fb9caa89dc4f24))
|
|
396
|
+
* setVerifyingKeys ([8ce195b](https://github.com/privacy-scaling-explorations/maci/commit/8ce195baa5191bce63fd807cd75f3f75e2ad0d76))
|
|
397
|
+
* test suite cleanup ([#2233](https://github.com/privacy-scaling-explorations/maci/issues/2233)) ([5795741](https://github.com/privacy-scaling-explorations/maci/commit/5795741b8531a179247bf41438d2294d53de8d0d))
|
|
398
|
+
* user sdk ([#2064](https://github.com/privacy-scaling-explorations/maci/issues/2064)) ([aac1ce7](https://github.com/privacy-scaling-explorations/maci/commit/aac1ce7d4db7141a6d57bf9c940751d0886b5d9e))
|
|
399
|
+
* verifying keys sdk ([#2070](https://github.com/privacy-scaling-explorations/maci/issues/2070)) ([44c9e1e](https://github.com/privacy-scaling-explorations/maci/commit/44c9e1e79f4d4c34c95fd46c33e4008be8cf4a07))
|
|
400
|
+
* vote sdk ([#2089](https://github.com/privacy-scaling-explorations/maci/issues/2089)) ([fed0e25](https://github.com/privacy-scaling-explorations/maci/commit/fed0e251bf09e1e34ec0a43ba58d89d3a95aa02c))
|
|
401
|
+
* vote submission ([a66da9e](https://github.com/privacy-scaling-explorations/maci/commit/a66da9e1725f9f458341c5f6f269bca0d2d6aa37))
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
### Miscellaneous
|
|
405
|
+
|
|
406
|
+
* add logger for contract helpers ([a688400](https://github.com/privacy-scaling-explorations/maci/commit/a6884006427f91f46ee2804fc75bd7a51533cdd6))
|
|
407
|
+
* **deps-dev:** bump @types/mocha from 10.0.8 to 10.0.10 ([a8b029a](https://github.com/privacy-scaling-explorations/maci/commit/a8b029a140b3bc81c639c26e049a766ce67b8886))
|
|
408
|
+
* **deps-dev:** bump @types/node from 20.17.19 to 22.13.9 ([aa7c356](https://github.com/privacy-scaling-explorations/maci/commit/aa7c356469592547f3d60c05077268267d7ea186))
|
|
409
|
+
* **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))
|
|
410
|
+
* **deps-dev:** bump @types/node from 22.12.0 to 22.13.1 ([5f06af0](https://github.com/privacy-scaling-explorations/maci/commit/5f06af0180f522f552519529c07d2bb660fdd586))
|
|
411
|
+
* **deps-dev:** bump @types/node from 22.13.1 to 22.13.4 ([dba94f4](https://github.com/privacy-scaling-explorations/maci/commit/dba94f4fe6d405eaca655dfdc8ca01d57664b99b))
|
|
412
|
+
* **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))
|
|
413
|
+
* **deps-dev:** bump @types/node from 22.9.0 to 22.10.7 ([3e4a5ae](https://github.com/privacy-scaling-explorations/maci/commit/3e4a5ae43cc57d6ebaedeb5ce95ca6dd1c968ffe))
|
|
414
|
+
* **deps-dev:** bump @types/snarkjs from 0.7.8 to 0.7.9 ([5259169](https://github.com/privacy-scaling-explorations/maci/commit/5259169853cd08431f1b6433e578008b356be342))
|
|
415
|
+
* **deps-dev:** bump mocha from 10.7.3 to 11.0.1 ([457a504](https://github.com/privacy-scaling-explorations/maci/commit/457a5048580a5460ad012b10486a65df0dacae0e))
|
|
416
|
+
* **deps-dev:** bump mocha from 10.8.2 to 11.1.0 ([f524a07](https://github.com/privacy-scaling-explorations/maci/commit/f524a07f5a3b1e94eaf6f230ecf16476f4c6810d))
|
|
417
|
+
* **deps-dev:** bump ts-mocha from 10.0.0 to 11.1.0 ([df84193](https://github.com/privacy-scaling-explorations/maci/commit/df84193a1ad0980523aba66f5b43b5a6cdd74307))
|
|
418
|
+
* **deps-dev:** bump typescript and typedoc ([4ee5de5](https://github.com/privacy-scaling-explorations/maci/commit/4ee5de5e29c6326b6728dc2ccd97da3bdea42fd7))
|
|
419
|
+
* **deps-dev:** bump typescript from 5.7.3 to 5.8.2 ([e37f1bf](https://github.com/privacy-scaling-explorations/maci/commit/e37f1bffd8193de316e748d0406cfb606455cb46))
|
|
420
|
+
* **deps:** bump @commander-js/extra-typings from 12.1.0 to 13.0.0 ([fb0a635](https://github.com/privacy-scaling-explorations/maci/commit/fb0a63556313962fb8c45cf2f3937abdd9f87d42))
|
|
421
|
+
* **deps:** bump @commander-js/extra-typings from 13.0.0 to 13.1.0 ([#2067](https://github.com/privacy-scaling-explorations/maci/issues/2067)) ([0e1fd2d](https://github.com/privacy-scaling-explorations/maci/commit/0e1fd2dc65a468f1e77b12d486d318101084cd59))
|
|
422
|
+
* **deps:** bump commander from 12.1.0 to 13.0.0 ([919907d](https://github.com/privacy-scaling-explorations/maci/commit/919907d27670de6cdf4b0f61efbda2354222a96d))
|
|
423
|
+
* **deps:** bump commander from 13.0.0 to 13.1.0 ([c951f73](https://github.com/privacy-scaling-explorations/maci/commit/c951f731db4b6e7f2fe70629c6ce99796192924a))
|
|
424
|
+
* **deps:** bump dotenv from 16.4.5 to 16.4.7 ([#2032](https://github.com/privacy-scaling-explorations/maci/issues/2032)) ([43eec88](https://github.com/privacy-scaling-explorations/maci/commit/43eec880410cc48d2435bc4f531276ffc588bcb3))
|
|
425
|
+
* **deps:** bump ethers from 6.13.4 to 6.13.5 ([5e0256c](https://github.com/privacy-scaling-explorations/maci/commit/5e0256c58ff02921a3eeb58b3478a673140ccdff))
|
|
426
|
+
* **deps:** bump hardhat from 2.22.15 to 2.22.18 ([cd2950f](https://github.com/privacy-scaling-explorations/maci/commit/cd2950ff9397e0a569a2b519bb4f9c84f261ac3a))
|
|
427
|
+
* **deps:** bump hardhat from 2.22.18 to 2.22.19 ([49af291](https://github.com/privacy-scaling-explorations/maci/commit/49af2919e353d322808c12ca0d5a77575c73e044))
|
|
428
|
+
* optimize lean imt and minor improvements ([a68701b](https://github.com/privacy-scaling-explorations/maci/commit/a68701b409284a1d6c787aa275a2eaf26b55ee5d))
|
|
429
|
+
* **relayer:** add more e2e tests ([0cbfc40](https://github.com/privacy-scaling-explorations/maci/commit/0cbfc40b2915924cdc6b6fc7db4392868f6f8845))
|
|
430
|
+
* remove redundant tests and cleanup ([9946687](https://github.com/privacy-scaling-explorations/maci/commit/99466875cfc84ed29f385356914bb0fd68d7da57))
|
|
431
|
+
* update solidity version and cli fixes ([e9fd8b0](https://github.com/privacy-scaling-explorations/maci/commit/e9fd8b0816afd6249a88b3c3556411e2c10ab631))
|
|
432
|
+
* update the readme ([#2242](https://github.com/privacy-scaling-explorations/maci/issues/2242)) ([ffdceee](https://github.com/privacy-scaling-explorations/maci/commit/ffdceee3074446f81deae5ef4e3df67f98aaada7))
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
## [2.5.0](https://github.com/privacy-scaling-explorations/maci/compare/v2.4.0...v2.5.0) (2024-11-20)
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
### Features
|
|
440
|
+
|
|
441
|
+
* **contracts:** add tally results ([5d8a720](https://github.com/privacy-scaling-explorations/maci/commit/5d8a7203f9eb300f86cca5e83a3858571081e333))
|
|
442
|
+
* **contracts:** add total spent to tally ([ac206f3](https://github.com/privacy-scaling-explorations/maci/commit/ac206f37c0c3f546408a9b996324fc2cf1bc5ba8))
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
### Miscellaneous
|
|
446
|
+
|
|
447
|
+
* **contracts:** add struct for add tally results args ([45eb28d](https://github.com/privacy-scaling-explorations/maci/commit/45eb28d698df9e68f0a9538f3cb03d0956ed372d))
|
|
448
|
+
* **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))
|
|
449
|
+
* **deps-dev:** bump @types/node from 22.8.1 to 22.9.0 ([0e11e5d](https://github.com/privacy-scaling-explorations/maci/commit/0e11e5d668fed2e2168de56e87981b0edcca8cd9))
|
|
450
|
+
* **deps-dev:** bump nyc from 17.0.0 to 17.1.0 ([3dce47c](https://github.com/privacy-scaling-explorations/maci/commit/3dce47c8c2a016765ae68b48ebd38b36226b9709))
|
|
451
|
+
* **deps-dev:** bump typescript from 5.5.4 to 5.6.3 ([8058c5d](https://github.com/privacy-scaling-explorations/maci/commit/8058c5de1d865317c79a00508b672091cd7b1eb0))
|
|
452
|
+
* **deps:** bump ethers from 6.13.2 to 6.13.4 ([b698a03](https://github.com/privacy-scaling-explorations/maci/commit/b698a036d3fa008a7a47327f343a1a312129fead))
|
|
453
|
+
* **deps:** bump hardhat from 2.22.8 to 2.22.13 ([f8a139a](https://github.com/privacy-scaling-explorations/maci/commit/f8a139a0f0c836851a93bb6051213927df1faa2a))
|
|
454
|
+
* **deps:** bump snarkjs from 0.7.4 to 0.7.5 ([5f5ffa6](https://github.com/privacy-scaling-explorations/maci/commit/5f5ffa67d3448dc25b11ba5ffd111e644662d194))
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
## [2.4.0](https://github.com/privacy-scaling-explorations/maci/compare/v2.3.0...v2.4.0) (2024-09-30)
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
### Features
|
|
462
|
+
|
|
463
|
+
* **scripts:** added merkleproof gatekeeper to signup script and utils ([#1823](https://github.com/privacy-scaling-explorations/maci/issues/1823)) ([f5d7e6d](https://github.com/privacy-scaling-explorations/maci/commit/f5d7e6df2aab2dc264235264a9593282054bdfa2))
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
### Bug Fixes
|
|
467
|
+
|
|
468
|
+
* ensure nightly workflow use correct paths ([#1814](https://github.com/privacy-scaling-explorations/maci/issues/1814)) ([e0c81ac](https://github.com/privacy-scaling-explorations/maci/commit/e0c81ac310fdceb35b6a18c390751164444dc28b))
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
### Miscellaneous
|
|
472
|
+
|
|
473
|
+
* **deps-dev:** bump @types/mocha from 10.0.7 to 10.0.8 ([#1827](https://github.com/privacy-scaling-explorations/maci/issues/1827)) ([4deae8b](https://github.com/privacy-scaling-explorations/maci/commit/4deae8bb3a4ea5cf1b4ad16018186a593142adb8))
|
|
474
|
+
* **deps-dev:** bump @types/prompt from 1.1.8 to 1.1.9 ([#1826](https://github.com/privacy-scaling-explorations/maci/issues/1826)) ([52bf4b6](https://github.com/privacy-scaling-explorations/maci/commit/52bf4b60d8a34201f2acc2e2283144eb2a584abe))
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
## [2.3.0](https://github.com/privacy-scaling-explorations/maci/compare/v2.2.1...v2.3.0) (2024-09-05)
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
### Miscellaneous
|
|
482
|
+
|
|
483
|
+
* **ceremony:** update ceremony tests to work with v2 params and keys ([#1807](https://github.com/privacy-scaling-explorations/maci/issues/1807)) ([6bf1ffb](https://github.com/privacy-scaling-explorations/maci/commit/6bf1ffb42e4537dba52fb25b1fc7e370e9a39d76))
|
|
484
|
+
* get poll mode within sdk ([#1800](https://github.com/privacy-scaling-explorations/maci/issues/1800)) ([71545c1](https://github.com/privacy-scaling-explorations/maci/commit/71545c1ceb3b082c812081639eb2c0c15a58113f))
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
## [2.2.1](https://github.com/privacy-scaling-explorations/maci/compare/v2.2.0...v2.2.1) (2024-08-19)
|
|
489
|
+
|
|
490
|
+
**Note:** Version bump only for package maci-cli
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
## [2.2.0](https://github.com/privacy-scaling-explorations/maci/compare/v2.1.0...v2.2.0) (2024-08-19)
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
### Features
|
|
500
|
+
|
|
501
|
+
* return voice credits on signup ([d1b7e3d](https://github.com/privacy-scaling-explorations/maci/commit/d1b7e3ddbfa7fdef33a3badd09e259d83eebd55b))
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
### Miscellaneous
|
|
505
|
+
|
|
506
|
+
* **deps-dev:** bump @types/node from 22.1.0 to 22.2.0 ([ac18985](https://github.com/privacy-scaling-explorations/maci/commit/ac189852bf6abb787736c474ad87927afaa5163c))
|
|
507
|
+
* **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))
|
|
508
|
+
* **deps-dev:** bump mocha from 10.7.0 to 10.7.3 ([6ba908f](https://github.com/privacy-scaling-explorations/maci/commit/6ba908f5f78628aa6afe973b3d71ae54ff08c735))
|
|
509
|
+
* **deps:** bump hardhat from 2.22.7 to 2.22.8 ([#1755](https://github.com/privacy-scaling-explorations/maci/issues/1755)) ([92b30af](https://github.com/privacy-scaling-explorations/maci/commit/92b30af1c18f8261235c26f61de6004287107351))
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
## [2.1.0](https://github.com/privacy-scaling-explorations/maci/compare/v2.0.0...v2.1.0) (2024-08-07)
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
### Features
|
|
517
|
+
|
|
518
|
+
* **sdk:** get hats gatekeeper data ([a06fa6b](https://github.com/privacy-scaling-explorations/maci/commit/a06fa6b9a400192ea96c98441ba489f4c23e56e6))
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
## [2.0.0](https://github.com/privacy-scaling-explorations/maci/compare/v1.2.0...v2.0.0) (2024-08-06)
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
### ⚠ BREAKING CHANGES
|
|
526
|
+
|
|
527
|
+
* **topup:** No more topups
|
|
528
|
+
|
|
529
|
+
### Features
|
|
530
|
+
|
|
531
|
+
* add extractVkToFile function to cli command ([346ebee](https://github.com/privacy-scaling-explorations/maci/commit/346ebee25b0cc624bccfc0f06f9f5a6c05b0e00c))
|
|
532
|
+
* **cli:** add export from contracts, circuits for cli package ([8f90c79](https://github.com/privacy-scaling-explorations/maci/commit/8f90c7952444b3dbd209310229bad05d6f02a9fc))
|
|
533
|
+
* **cli:** add initial voice credits from signup event ([0900e69](https://github.com/privacy-scaling-explorations/maci/commit/0900e69fb5bde930cab760e7a4ec150e61f1af17))
|
|
534
|
+
* **cli:** add provider fallback for poll data sdk method ([580b92e](https://github.com/privacy-scaling-explorations/maci/commit/580b92e27050c16e61a133207ccc419b64f34a26))
|
|
535
|
+
* **cli:** add publish batch method for cli sdk ([843fe7e](https://github.com/privacy-scaling-explorations/maci/commit/843fe7e764c55201b21520981185fa925e473835))
|
|
536
|
+
* **cli:** add sdk command to get eas gatekeeper data ([#1701](https://github.com/privacy-scaling-explorations/maci/issues/1701)) ([bd894d8](https://github.com/privacy-scaling-explorations/maci/commit/bd894d8378413d54f878b2b076cdbf16e498f012))
|
|
537
|
+
* **cli:** add start block for signup event parsing ([9657b6e](https://github.com/privacy-scaling-explorations/maci/commit/9657b6e47eb47cdfb7bfb076893d473f5a99fd52))
|
|
538
|
+
* **cli:** return additional data from publish batch command ([7271d5f](https://github.com/privacy-scaling-explorations/maci/commit/7271d5ff76d6957e460a84b152af54f92f7ec0a6))
|
|
539
|
+
* **contracts:** add new adapter for lowdb to support browser env ([a3c2371](https://github.com/privacy-scaling-explorations/maci/commit/a3c23719f22ae2dd54e21805aa478041517adbce))
|
|
540
|
+
* **contracts:** added message processor and tally addresses to the maci contract ([#1715](https://github.com/privacy-scaling-explorations/maci/issues/1715)) ([801b774](https://github.com/privacy-scaling-explorations/maci/commit/801b7747852a63885ed8d6ae43d81260dab9c76f))
|
|
541
|
+
* **contracts:** tally qv and non-qv optimisations ([b0b7b38](https://github.com/privacy-scaling-explorations/maci/commit/b0b7b38bf008e8a542b550c75ada40ac21854944))
|
|
542
|
+
* **contract:** support qv and non-qv verification keys ([a0cce8c](https://github.com/privacy-scaling-explorations/maci/commit/a0cce8c52950b2232c5cd47e98825ce401aac002))
|
|
543
|
+
* export extractVkToFile function ([e65ca2e](https://github.com/privacy-scaling-explorations/maci/commit/e65ca2ebe65094eec477ef796887b2b3fc7dd9dd))
|
|
544
|
+
* 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))
|
|
545
|
+
* export pubkey and update description of deployment ([c782d24](https://github.com/privacy-scaling-explorations/maci/commit/c782d2496b2ddd1c8d12c1bd31b2ea948a364fdf))
|
|
546
|
+
* **multiple-polls:** allow concurrent polls ([14e89ba](https://github.com/privacy-scaling-explorations/maci/commit/14e89baea1ede9bc9bad79fafb5c362d6a6a81e9))
|
|
547
|
+
* **sdk:** add function to get zupass gatekeeper data ([#1649](https://github.com/privacy-scaling-explorations/maci/issues/1649)) ([49794ab](https://github.com/privacy-scaling-explorations/maci/commit/49794ab9e195f353e1df6c281e1159f0968bd95a))
|
|
548
|
+
* support deployment without hardhat ([dab5e2b](https://github.com/privacy-scaling-explorations/maci/commit/dab5e2b0c05f00d4ede53b67ea118d05a952c5c3))
|
|
549
|
+
* use mode instead of flag for voting option ([34421de](https://github.com/privacy-scaling-explorations/maci/commit/34421deb4da54da732cd34d868e76e04a5eea501))
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
### Bug Fixes
|
|
553
|
+
|
|
554
|
+
* add coordinator public key hash public input ([9766bbf](https://github.com/privacy-scaling-explorations/maci/commit/9766bbfcecd41bd0f39c1422978d959705b1b500))
|
|
555
|
+
* add uq argument in cli/index ([6a0dd44](https://github.com/privacy-scaling-explorations/maci/commit/6a0dd443ba5e678e6d76140db8cfc3a4e25b60a0))
|
|
556
|
+
* avoid export prompt in cli/sdk ([#1591](https://github.com/privacy-scaling-explorations/maci/issues/1591)) ([8479dd7](https://github.com/privacy-scaling-explorations/maci/commit/8479dd790e7d130d423a04831521a62fdc2fc058))
|
|
557
|
+
* **cli-signup:** added comments ([6192759](https://github.com/privacy-scaling-explorations/maci/commit/6192759fd5e1c8006ab8ef9933c182e7434ffcd4))
|
|
558
|
+
* **cli-signup:** changed validation for the signup data and voice credit data ([a099aff](https://github.com/privacy-scaling-explorations/maci/commit/a099aff68f2e2f580c597a8e797fbf5191e31b88))
|
|
559
|
+
* **cli:** fix cli vkRegistry typo ([499582b](https://github.com/privacy-scaling-explorations/maci/commit/499582b836f64a238728bd38d57bc67c2c53a1b0))
|
|
560
|
+
* **cli:** fix vk commands flags ([#1587](https://github.com/privacy-scaling-explorations/maci/issues/1587)) ([8ab3d7d](https://github.com/privacy-scaling-explorations/maci/commit/8ab3d7d9df178939116f45e85c119ac8403b8440))
|
|
561
|
+
* **cli:** generate ecdh shared key only one time ([a75ccae](https://github.com/privacy-scaling-explorations/maci/commit/a75ccae86338c1d62435cec83309ae3668a906b9))
|
|
562
|
+
* **cli:** genLocalState '-o' arg is a string and does not need parsing ([3326d4a](https://github.com/privacy-scaling-explorations/maci/commit/3326d4ad17911e244bfa1f45b4cd005e0139de08))
|
|
563
|
+
* **cli:** read state index from event args ([7d7991b](https://github.com/privacy-scaling-explorations/maci/commit/7d7991b3f525e9be509987baecb3c99cf24f8c4a))
|
|
564
|
+
* do not import enum as type ([#1641](https://github.com/privacy-scaling-explorations/maci/issues/1641)) ([45fca46](https://github.com/privacy-scaling-explorations/maci/commit/45fca46c48fc7090fc16d47a7b29b71f248faf23))
|
|
565
|
+
* export typechain instead of contract ([#1590](https://github.com/privacy-scaling-explorations/maci/issues/1590)) ([4e792c4](https://github.com/privacy-scaling-explorations/maci/commit/4e792c4fad6253207422fd16764b19e24a4041fb))
|
|
566
|
+
* export value from utils/interfaces vs utils ([#1642](https://github.com/privacy-scaling-explorations/maci/issues/1642)) ([c0a5a52](https://github.com/privacy-scaling-explorations/maci/commit/c0a5a52e7d1c9803a7d7cd3f0de48e77991de7e4))
|
|
567
|
+
* **isregistered:** use a block range to fetch events ([#1514](https://github.com/privacy-scaling-explorations/maci/issues/1514)) ([2740e4c](https://github.com/privacy-scaling-explorations/maci/commit/2740e4cc795d631a780dffccbedc09f0417fda59))
|
|
568
|
+
* **nightly-ceremony:** fix wrong path in zkey/dat filename ([57c79be](https://github.com/privacy-scaling-explorations/maci/commit/57c79bef4126769f5af2567a27f8012971252aed))
|
|
569
|
+
* **nightly:** checkout tag v1.2.2 on nightly-ceremony workflow ([ef5cfd9](https://github.com/privacy-scaling-explorations/maci/commit/ef5cfd9a7e9960c5a61133508d5b934b8a1d03a5))
|
|
570
|
+
* **nightly:** fix issue with artifacts not found due to wrong filename ([908e377](https://github.com/privacy-scaling-explorations/maci/commit/908e377e45abbad3f450f93197ffc450cf85cf4d))
|
|
571
|
+
* **poll-command:** fixed poll command to support merged state root ([#1477](https://github.com/privacy-scaling-explorations/maci/issues/1477)) ([ee6a16e](https://github.com/privacy-scaling-explorations/maci/commit/ee6a16eb366b75b4ec86095467cf4f15e05e07bb))
|
|
572
|
+
* publish proof onchain ([e813174](https://github.com/privacy-scaling-explorations/maci/commit/e8131741b3fb5059572822c04cb61b1cbae9599d))
|
|
573
|
+
* remove se flag in testscript ([c13cdec](https://github.com/privacy-scaling-explorations/maci/commit/c13cdec8fb937b44fb42326c4b84178a4ff0646e))
|
|
574
|
+
|
|
575
|
+
|
|
576
|
+
### Code Refactoring
|
|
577
|
+
|
|
578
|
+
* **contracts:** do not return contract addresses on poll deploy ([43d5224](https://github.com/privacy-scaling-explorations/maci/commit/43d52240755a3371ff0f7e0454e6a0dad80ddce4))
|
|
579
|
+
* general cleanup, variables/events/functions renaming ([b5f5015](https://github.com/privacy-scaling-explorations/maci/commit/b5f50150c9c97265207d8b6fd89d92d11a4b70cf))
|
|
580
|
+
* **maci:** remove subsidy feature to simplify further protocol improvements ([52fc7c5](https://github.com/privacy-scaling-explorations/maci/commit/52fc7c5b8f2d389868bca6171ffd15a94b1d1659))
|
|
581
|
+
* **topup:** remove the topup feature ([67711d4](https://github.com/privacy-scaling-explorations/maci/commit/67711d44058831302d4556f12d1972ffacede653))
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
### Miscellaneous
|
|
585
|
+
|
|
586
|
+
* add @types/snarkjs package ([57bf0ed](https://github.com/privacy-scaling-explorations/maci/commit/57bf0edf4453d18c7c154ae928c30899b6996ebd))
|
|
587
|
+
* add doc entries for new maci version (currently being developed) ([c72a130](https://github.com/privacy-scaling-explorations/maci/commit/c72a130cf6dcd4e8e5e59b374d8a63c1cfaae8cd))
|
|
588
|
+
* add forking options ([2f0908b](https://github.com/privacy-scaling-explorations/maci/commit/2f0908b67c0068385fe399e67ed2d44790588a5c))
|
|
589
|
+
* add function to get semaphore gatekeeper details ([c877d21](https://github.com/privacy-scaling-explorations/maci/commit/c877d21b698ea884773a06455e0d6a4bff57b8b0))
|
|
590
|
+
* add name to gatekeepers and add sdk function ([#1639](https://github.com/privacy-scaling-explorations/maci/issues/1639)) ([30984d0](https://github.com/privacy-scaling-explorations/maci/commit/30984d0f0a2b4a5e76dd3414d008b98ae9809c01))
|
|
591
|
+
* add qv and non-qv key setup during deploy ([29f9e17](https://github.com/privacy-scaling-explorations/maci/commit/29f9e173e788105b420b2ec0ea4f40d423b27685))
|
|
592
|
+
* bump to 1.2.2 ([e63278f](https://github.com/privacy-scaling-explorations/maci/commit/e63278f71937a1fa908ec8f4be2d43114701c134))
|
|
593
|
+
* **ceremony:** update ceremony params tests ([b78830d](https://github.com/privacy-scaling-explorations/maci/commit/b78830d921d39952fbbca0fe7529340ee47ca59f))
|
|
594
|
+
* **contracts:** add typedoc script for contracts package ([43459a0](https://github.com/privacy-scaling-explorations/maci/commit/43459a02301f102e80a709a0a722dd591e8e00ef))
|
|
595
|
+
* **deps-dev:** bump @types/mocha from 10.0.6 to 10.0.7 ([07c3480](https://github.com/privacy-scaling-explorations/maci/commit/07c3480efc40ad1d3f651b78cd7c3aaeee8d7f8a))
|
|
596
|
+
* **deps-dev:** bump @types/node from 20.11.20 to 20.11.24 ([c575eca](https://github.com/privacy-scaling-explorations/maci/commit/c575eca7c54c262764ce794a919f3b1d58d7d8e7))
|
|
597
|
+
* **deps-dev:** bump @types/node from 20.11.24 to 20.11.25 ([5eb49f9](https://github.com/privacy-scaling-explorations/maci/commit/5eb49f9090fc6db3a80ad2d63548d93430ff7645))
|
|
598
|
+
* **deps-dev:** bump @types/node from 20.11.25 to 20.11.28 ([81bebaa](https://github.com/privacy-scaling-explorations/maci/commit/81bebaa880cbc15b8c8445d412b9fc9d89580e67))
|
|
599
|
+
* **deps-dev:** bump @types/node from 20.11.28 to 20.11.30 ([5ef4420](https://github.com/privacy-scaling-explorations/maci/commit/5ef44209d16cd441067fb67201daa61cf968382d))
|
|
600
|
+
* **deps-dev:** bump @types/node from 20.11.30 to 20.12.2 ([e7c32d0](https://github.com/privacy-scaling-explorations/maci/commit/e7c32d0ddd506727f229d950239a116961bbe1a0))
|
|
601
|
+
* **deps-dev:** bump @types/node from 20.12.10 to 20.12.11 ([3019c66](https://github.com/privacy-scaling-explorations/maci/commit/3019c66eb70e54b376e9464417e073bd98d96b6a))
|
|
602
|
+
* **deps-dev:** bump @types/node from 20.12.11 to 20.12.12 ([bd0a0a5](https://github.com/privacy-scaling-explorations/maci/commit/bd0a0a5a1ec685542c2af4f6962186176d5453ba))
|
|
603
|
+
* **deps-dev:** bump @types/node from 20.12.2 to 20.12.5 ([588392f](https://github.com/privacy-scaling-explorations/maci/commit/588392f2f773addce0204f236fc26981ead1f7bb))
|
|
604
|
+
* **deps-dev:** bump @types/node from 20.12.5 to 20.12.7 ([f1b00de](https://github.com/privacy-scaling-explorations/maci/commit/f1b00deb29788e390dcecd5b1741339f96f06f73))
|
|
605
|
+
* **deps-dev:** bump @types/node from 20.12.7 to 20.12.10 ([cf5026a](https://github.com/privacy-scaling-explorations/maci/commit/cf5026a42a41c0078467fb477fdd51a2afb31e1f))
|
|
606
|
+
* **deps-dev:** bump @types/node from 20.14.10 to 20.14.11 ([01564c0](https://github.com/privacy-scaling-explorations/maci/commit/01564c0503379ca65ce90ea77fdc5ebcd9ae81c5))
|
|
607
|
+
* **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))
|
|
608
|
+
* **deps-dev:** bump @types/node from 20.14.2 to 20.14.8 ([636ac22](https://github.com/privacy-scaling-explorations/maci/commit/636ac22bd29d12e5af7f69c7dd639d0223595992))
|
|
609
|
+
* **deps-dev:** bump @types/node from 20.14.8 to 20.14.10 ([add0ce4](https://github.com/privacy-scaling-explorations/maci/commit/add0ce4e406fea4bfe2b839facc6a0a33b3fe3bf))
|
|
610
|
+
* **deps-dev:** bump chai-as-promised from 7.1.1 to 7.1.2 ([6930a1c](https://github.com/privacy-scaling-explorations/maci/commit/6930a1c6590f0b8d9971ac38bf06d44f90b88760))
|
|
611
|
+
* **deps-dev:** bump mocha from 10.3.0 to 10.4.0 ([7bf5afe](https://github.com/privacy-scaling-explorations/maci/commit/7bf5afe954bcb6b34dbe7f109c9c7e8d5396f1b2))
|
|
612
|
+
* **deps-dev:** bump mocha from 10.4.0 to 10.5.0 ([e5c14cf](https://github.com/privacy-scaling-explorations/maci/commit/e5c14cf01e9b5beb6232e80345121dbb47190fd0))
|
|
613
|
+
* **deps-dev:** bump mocha from 10.5.0 to 10.6.0 ([6847bb3](https://github.com/privacy-scaling-explorations/maci/commit/6847bb374893672bf7e809fc80d124e2d874b784))
|
|
614
|
+
* **deps-dev:** bump mocha from 10.6.0 to 10.7.0 ([#1687](https://github.com/privacy-scaling-explorations/maci/issues/1687)) ([2cad35b](https://github.com/privacy-scaling-explorations/maci/commit/2cad35bab133af79f77ea9c19098d3561ba06f69))
|
|
615
|
+
* **deps-dev:** bump nyc from 15.1.0 to 17.0.0 ([c7f4414](https://github.com/privacy-scaling-explorations/maci/commit/c7f441417d7c7ec8019867801b77e7b5c07c2307))
|
|
616
|
+
* **deps-dev:** bump typescript from 5.3.3 to 5.4.2 ([591c767](https://github.com/privacy-scaling-explorations/maci/commit/591c767308f746fbfc32a9f184192912895f080c))
|
|
617
|
+
* **deps-dev:** bump typescript from 5.4.2 to 5.4.3 ([a2f5c8a](https://github.com/privacy-scaling-explorations/maci/commit/a2f5c8ac32394fc7672051d5342baf7e6f9567ce))
|
|
618
|
+
* **deps-dev:** bump typescript from 5.4.3 to 5.4.4 ([5e047ea](https://github.com/privacy-scaling-explorations/maci/commit/5e047eaa96d508addf34e35764ddaf4deb221593))
|
|
619
|
+
* **deps-dev:** bump typescript from 5.4.4 to 5.4.5 ([ea6339d](https://github.com/privacy-scaling-explorations/maci/commit/ea6339da96dda38a931cb6d39615c9267ca45b81))
|
|
620
|
+
* **deps-dev:** bump typescript from 5.4.5 to 5.5.2 ([e2b4d45](https://github.com/privacy-scaling-explorations/maci/commit/e2b4d45235c82bba349d959a164442cae90ad97f))
|
|
621
|
+
* **deps-dev:** bump typescript from 5.5.2 to 5.5.3 ([c979188](https://github.com/privacy-scaling-explorations/maci/commit/c979188358becfc4b434a2f73331e640ce595846))
|
|
622
|
+
* **deps-dev:** bump typescript from 5.5.3 to 5.5.4 ([8ed2e2b](https://github.com/privacy-scaling-explorations/maci/commit/8ed2e2b109a950137dd289aa7d3eca4268079272))
|
|
623
|
+
* **deps:** bump @commander-js/extra-typings from 12.0.0 to 12.0.1 ([59c205c](https://github.com/privacy-scaling-explorations/maci/commit/59c205caad88d9388d35f6e6d7db357571abbaf9))
|
|
624
|
+
* **deps:** bump @nomicfoundation/hardhat-toolbox from 4.0.0 to 5.0.0 ([c403cb4](https://github.com/privacy-scaling-explorations/maci/commit/c403cb4b9c27e15958493a6d19555161ecef743c))
|
|
625
|
+
* **deps:** bump ethers from 6.11.1 to 6.12.0 ([9db5a93](https://github.com/privacy-scaling-explorations/maci/commit/9db5a93d32396d80b76e2d20d1af529e6a97292a))
|
|
626
|
+
* **deps:** bump ethers from 6.12.0 to 6.12.1 ([16b4615](https://github.com/privacy-scaling-explorations/maci/commit/16b46159a132abb82b4659c424a065bb418bd31e))
|
|
627
|
+
* **deps:** bump ethers from 6.13.0 to 6.13.1 ([b32694d](https://github.com/privacy-scaling-explorations/maci/commit/b32694da7aa60e0215daa56d2b64ed5e5f8d9d45))
|
|
628
|
+
* **deps:** bump ethers from 6.13.1 to 6.13.2 ([#1709](https://github.com/privacy-scaling-explorations/maci/issues/1709)) ([c9de72e](https://github.com/privacy-scaling-explorations/maci/commit/c9de72eead282027cc9dcab0edd9170a0fbe5a2e))
|
|
629
|
+
* **deps:** bump hardhat from 2.22.1 to 2.22.2 ([397e50b](https://github.com/privacy-scaling-explorations/maci/commit/397e50b6ded4cc81ce299747b2847254af7ea1ce))
|
|
630
|
+
* **deps:** bump hardhat from 2.22.3 to 2.22.4 ([481a1e7](https://github.com/privacy-scaling-explorations/maci/commit/481a1e7a83ad8984880a98aa09824b3dc689acd9))
|
|
631
|
+
* **deps:** bump hardhat from 2.22.5 to 2.22.6 ([6949eee](https://github.com/privacy-scaling-explorations/maci/commit/6949eee8717c16c129b15c570283ea58ce39ec33))
|
|
632
|
+
* **deps:** bump snarkjs from 0.7.3 to 0.7.4 ([50642af](https://github.com/privacy-scaling-explorations/maci/commit/50642afa368a91c47ebe32089f4bdb4a159ac1cd))
|
|
633
|
+
* **docs:** fixed broken links ([#1585](https://github.com/privacy-scaling-explorations/maci/issues/1585)) ([4b2012e](https://github.com/privacy-scaling-explorations/maci/commit/4b2012eb3827611e8a7fb0d441e6fd1da8df478e))
|
|
634
|
+
* fix typos ([96ae030](https://github.com/privacy-scaling-explorations/maci/commit/96ae030bfe10b0fb94e1304cd017f8775cd58b1d))
|
|
635
|
+
* **genlocalstate:** add start block calculation on genLocalState cli command ([615dee4](https://github.com/privacy-scaling-explorations/maci/commit/615dee4012faa3524de1f04d38ea37ee8d113f73))
|
|
636
|
+
* **keys:** update maci keys in docs and scripts ([403262f](https://github.com/privacy-scaling-explorations/maci/commit/403262f3941a2b4e41b9cc05cc8dc340ebe5e759))
|
|
637
|
+
* optimize message processor and tally ([d75b244](https://github.com/privacy-scaling-explorations/maci/commit/d75b2446c2ee012d146afe8d7bc423f5b94e4579))
|
|
638
|
+
* **release:** publish 1.2.1 ([93564f8](https://github.com/privacy-scaling-explorations/maci/commit/93564f8a98baa0fee65db16e2e40209d9ac1b3ae))
|
|
639
|
+
* **release:** publish 2.0.0 ([04e647d](https://github.com/privacy-scaling-explorations/maci/commit/04e647d231df34952569ad6ff802e0b2333eb658))
|
|
640
|
+
* remove duplicate words ([f138abe](https://github.com/privacy-scaling-explorations/maci/commit/f138abe87bb19219a8355aa34a484be8a16637a5))
|
|
641
|
+
* remove max values ([8f951b0](https://github.com/privacy-scaling-explorations/maci/commit/8f951b0fcc73212d99d3ddc962fbaa9788471fb6))
|
|
642
|
+
* **signup:** fix flaky test ([#1582](https://github.com/privacy-scaling-explorations/maci/issues/1582)) ([69663ea](https://github.com/privacy-scaling-explorations/maci/commit/69663ea7f81b418ceb0034662296367297e85f0a))
|
|
643
|
+
* unify maci address arguments ([dfc5fd2](https://github.com/privacy-scaling-explorations/maci/commit/dfc5fd2050f60e869c940d656ed66c895dc23fe5))
|
|
644
|
+
* update hardhat to 2.21.1 ([ba6e236](https://github.com/privacy-scaling-explorations/maci/commit/ba6e236be14ff9b29126e887c9d552bc207e7467))
|
|
645
|
+
* use async fs instead of sync version ([fb8317e](https://github.com/privacy-scaling-explorations/maci/commit/fb8317ef3943a8434083de6e1b0f9469f15dd113))
|
|
646
|
+
* use non-zero start and end blocks for proof generation ([59887e7](https://github.com/privacy-scaling-explorations/maci/commit/59887e760fb1bc8741ee9322ea90305334df280d))
|
|
647
|
+
* **zkeys:** use ts to download zkey artifacts and simplify repo ([d364f24](https://github.com/privacy-scaling-explorations/maci/commit/d364f24c074a860744d10ed62eae73c58f8c3250))
|
|
648
|
+
|
|
649
|
+
|
|
650
|
+
|
|
651
|
+
## [1.2.0](https://github.com/privacy-scaling-explorations/maci/compare/v1.1.1...v1.2.0) (2024-02-23)
|
|
652
|
+
|
|
653
|
+
|
|
654
|
+
### Features
|
|
655
|
+
|
|
656
|
+
* add interfaces and factory contracts with Natspec ([579a53f](https://github.com/privacy-scaling-explorations/maci/commit/579a53f1f9a501e95fbfb064d39272c57a9e4f21))
|
|
657
|
+
* **circuits:** remove circomlib fork in favour of latest and zk-kit ([bf11b40](https://github.com/privacy-scaling-explorations/maci/commit/bf11b4092cd531cf0993534061cf7c24e8de44e2)), closes [#772](https://github.com/privacy-scaling-explorations/maci/issues/772)
|
|
658
|
+
* **circuits:** remove zkey-manager in favour of circomkit ([d79e9c0](https://github.com/privacy-scaling-explorations/maci/commit/d79e9c0ee18df27c3bd3e5e49924db21303d1c45))
|
|
659
|
+
* **cli:** accept signer as parameter to cli commands ([b1802e7](https://github.com/privacy-scaling-explorations/maci/commit/b1802e79ac853aa796ba7078e994683b0db35061))
|
|
660
|
+
* **cli:** add get poll cli command ([e6e2dd3](https://github.com/privacy-scaling-explorations/maci/commit/e6e2dd3714ff4a5261a864f26aef5fb9e745ac22))
|
|
661
|
+
* **cli:** add relevant information in tally.json to simplify verify interface ([6fa9c1e](https://github.com/privacy-scaling-explorations/maci/commit/6fa9c1ee62fabff44410e4bd3ab71847de4338ed))
|
|
662
|
+
* **cli:** add seed param for generate keypair command ([29d7b20](https://github.com/privacy-scaling-explorations/maci/commit/29d7b2057741012811622c30f91cda74cf4906eb))
|
|
663
|
+
* **cli:** improve cli integration ux ([7727ab1](https://github.com/privacy-scaling-explorations/maci/commit/7727ab1d99096b296d6c3f25956b0465d036aa4d))
|
|
664
|
+
* **contracts:** return contract addresses when deploying the poll contract ([e94998c](https://github.com/privacy-scaling-explorations/maci/commit/e94998c12d8a5f2bde2fb54b4af384d42e35d646))
|
|
665
|
+
* modify cli/.env.template and allow hardhat.config.ts to read env variables ([a206df1](https://github.com/privacy-scaling-explorations/maci/commit/a206df111ef8439bb1c0b7d484a288087602c9f2))
|
|
666
|
+
* optimize deployment and tally event ([185b407](https://github.com/privacy-scaling-explorations/maci/commit/185b407df6db0484824b99286a6b0e866a7345bf))
|
|
667
|
+
* **proofs:** make preferred witness type in circuit's genProof function ([2b95044](https://github.com/privacy-scaling-explorations/maci/commit/2b95044921cd0bed72694d069e2f9ed8fa44e72e))
|
|
668
|
+
* **qv:** add optional flag to use quadratic voting or not in MACI ([86ba854](https://github.com/privacy-scaling-explorations/maci/commit/86ba8548780049245482e5277cc47f4a8776e9e6))
|
|
669
|
+
* update sidebar ([6206a1b](https://github.com/privacy-scaling-explorations/maci/commit/6206a1b8849108d78997e00b01c6e7f11efce124))
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
### Bug Fixes
|
|
673
|
+
|
|
674
|
+
* add on-chain verification ([6427f37](https://github.com/privacy-scaling-explorations/maci/commit/6427f373d805805adb6205270f5074561d5c3a35))
|
|
675
|
+
* **circuits:** enforce use of stateIndex from message ([510e6ee](https://github.com/privacy-scaling-explorations/maci/commit/510e6ee365958e8c7f72cfca6cea75d15a89d28b))
|
|
676
|
+
* **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)
|
|
677
|
+
* **cli:** add env initialization for hardhat config ([5442b8a](https://github.com/privacy-scaling-explorations/maci/commit/5442b8a88e3133f2cbdbcf68ed1710207d5f0988))
|
|
678
|
+
* **cli:** export genLocalState ([0026669](https://github.com/privacy-scaling-explorations/maci/commit/0026669b31420ad31da1fa7eb716822217a3df30))
|
|
679
|
+
* **cli:** give priority to gatekeeper and voice credit proxy args ([1597ee3](https://github.com/privacy-scaling-explorations/maci/commit/1597ee3a00c05fdf8ff46811804a78af450f066c))
|
|
680
|
+
* **cli:** prioritize contract addresses params ([8ec36c4](https://github.com/privacy-scaling-explorations/maci/commit/8ec36c4d65329b40d7e232861c63208761d73b0a)), closes [#1039](https://github.com/privacy-scaling-explorations/maci/issues/1039)
|
|
681
|
+
* **cli:** remove files property from package.json ([5c544c6](https://github.com/privacy-scaling-explorations/maci/commit/5c544c62f071f7e9e2d613fe80c0bfda2a75e202))
|
|
682
|
+
* **cli:** remove hardcoded gas limit from signup and publish ([1bf3a4b](https://github.com/privacy-scaling-explorations/maci/commit/1bf3a4b525956bf06a99cdb93aa5f3eef2d34390)), closes [#1086](https://github.com/privacy-scaling-explorations/maci/issues/1086)
|
|
683
|
+
* **cli:** remove redundant local check for poll address ([8b19756](https://github.com/privacy-scaling-explorations/maci/commit/8b1975665fdacffc9b116822d99d4b711f4e2871)), closes [#1084](https://github.com/privacy-scaling-explorations/maci/issues/1084)
|
|
684
|
+
* **cli:** run all the tests for package ([859a8cf](https://github.com/privacy-scaling-explorations/maci/commit/859a8cfd4a45fa8919a536f9503fc838b5aa4568))
|
|
685
|
+
* **cli:** signup loop length ([bfecd5b](https://github.com/privacy-scaling-explorations/maci/commit/bfecd5be779b5564d0a4436ad7725d2aedcbb320))
|
|
686
|
+
* **contracts:** fix wrong tally processing check ([a90bcf8](https://github.com/privacy-scaling-explorations/maci/commit/a90bcf838a1236f212e9e22a725e3e605dbc707e)), closes [#1137](https://github.com/privacy-scaling-explorations/maci/issues/1137)
|
|
687
|
+
* **contracts:** save numSignups after merging maciStateAq inside the Poll contract ([4985b2d](https://github.com/privacy-scaling-explorations/maci/commit/4985b2d61655f3b802186fc03c2d85a658c0f0da)), closes [#1091](https://github.com/privacy-scaling-explorations/maci/issues/1091)
|
|
688
|
+
* **fetch:** fix bugs related to logs fetching ([7c7874e](https://github.com/privacy-scaling-explorations/maci/commit/7c7874e86ccfff35a45b33caa7587bd3c0b1cf01)), closes [#1043](https://github.com/privacy-scaling-explorations/maci/issues/1043) [#1044](https://github.com/privacy-scaling-explorations/maci/issues/1044)
|
|
689
|
+
* **fix integrationtests:** fix integrationTests caused by refactoring ([09ae37f](https://github.com/privacy-scaling-explorations/maci/commit/09ae37fd63db7ee75b977d33e67ded050ce7441d))
|
|
690
|
+
* **fix subsidy.sol issues:** address PR on Subsidy.sol ([bb68116](https://github.com/privacy-scaling-explorations/maci/commit/bb6811667f912c9ab0b3af2af083a5421a0d832b))
|
|
691
|
+
* **message-batch-index:** remove redundant check ([98c00a6](https://github.com/privacy-scaling-explorations/maci/commit/98c00a674133e020ea42ab3fee5d089a15d47920))
|
|
692
|
+
* **nightly:** add back snarkjs to cli as dev dependency and fix poll duration ([1e5e41d](https://github.com/privacy-scaling-explorations/maci/commit/1e5e41d1b1d322af50935058c2dde71c6ccc91bb))
|
|
693
|
+
* **publish:** ensure we publish the correct files ([bc42724](https://github.com/privacy-scaling-explorations/maci/commit/bc42724b34cf0c047c5692fbf477ed013a102aee))
|
|
694
|
+
* **signups:** ensure we account for the blank state leaf ([b1c8c97](https://github.com/privacy-scaling-explorations/maci/commit/b1c8c9719da5d47b92408f1222399c9c4acf3df9)), closes [#947](https://github.com/privacy-scaling-explorations/maci/issues/947)
|
|
695
|
+
* **tests:** fix ceremony params nightly workflow and convert to ts ([b2b4d4a](https://github.com/privacy-scaling-explorations/maci/commit/b2b4d4ad8f3e02ca8eacce7e694b65e104f668e0))
|
|
696
|
+
* undefined error reading totalSpentVoiceCredits ([10e46af](https://github.com/privacy-scaling-explorations/maci/commit/10e46afd39ec265d0c74f69a3ee13a57340e8955))
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
### Code Refactoring
|
|
700
|
+
|
|
701
|
+
* **circuits:** fix ts types, improve docs ([a849486](https://github.com/privacy-scaling-explorations/maci/commit/a84948685d2e4be426cef50c5c608c107b5142b1))
|
|
702
|
+
* **cli:** print relevant values when comparing fails ([2e26126](https://github.com/privacy-scaling-explorations/maci/commit/2e26126f61cf95417aa3f5021775fc657cae7b95))
|
|
703
|
+
* **cli:** use object args for cli commands ([41c4333](https://github.com/privacy-scaling-explorations/maci/commit/41c4333f8471b6a9ed616e5081dd99684b458b51))
|
|
704
|
+
* **contracts:** cleanup unused scripts and organize ts code ([458bc6b](https://github.com/privacy-scaling-explorations/maci/commit/458bc6b09cbc8db652dbb72525e299a4c2631caf))
|
|
705
|
+
* **contracts:** refactor contracts code by removing dead code, and various optimizations ([7cbe5bd](https://github.com/privacy-scaling-explorations/maci/commit/7cbe5bd67dbfe98b46b485a75361a6cc3badb7ff))
|
|
706
|
+
* **contracts:** remove maxValues and batchSizes from Maci.deployPoll() and instead calculate ([5393868](https://github.com/privacy-scaling-explorations/maci/commit/5393868efa270d9308e78c96e9bf6a7e8d63f3b6)), closes [#1066](https://github.com/privacy-scaling-explorations/maci/issues/1066)
|
|
707
|
+
* **core:** refactor the core package subsidy and tally functions ([0af7dd2](https://github.com/privacy-scaling-explorations/maci/commit/0af7dd2d448c4796c3872665d43654343f9fc3e3))
|
|
708
|
+
* **core:** remove unnecessary messageAq from Poll ([d3930f7](https://github.com/privacy-scaling-explorations/maci/commit/d3930f706963747903305cce1ee5a716ea28c31d))
|
|
709
|
+
* **crypto:** remove ffjavascript and implement utils functions locally ([0b2986f](https://github.com/privacy-scaling-explorations/maci/commit/0b2986fcaadbfce37ff9fc0007ddeae97573924e)), closes [#458](https://github.com/privacy-scaling-explorations/maci/issues/458)
|
|
710
|
+
* **nonqv:** optimize tally votes non qv circuit and contracts ([ea632a9](https://github.com/privacy-scaling-explorations/maci/commit/ea632a97862c4304c764f511ab480b3664224b5f))
|
|
711
|
+
* **optimisedmt:** remove dependency and implement locally ([c7d81e2](https://github.com/privacy-scaling-explorations/maci/commit/c7d81e20aaf6308c7d4e1efc09c497729f6a8f10))
|
|
712
|
+
* **refactor verify.ts:** refactor verify cli command for Tally and Subsidy contracts ([dedfda6](https://github.com/privacy-scaling-explorations/maci/commit/dedfda6364d9a0ba26492eda6621a32c07fc0683))
|
|
713
|
+
* **remove messageaqfactory:** remove messageAqFactory; remove redundant pollFactory dependency ([dcd1c67](https://github.com/privacy-scaling-explorations/maci/commit/dcd1c67f14f0cb92979d13e7887373ff6e354a6f))
|
|
714
|
+
* **repo:** remove redundant code from certain packages ([d55497a](https://github.com/privacy-scaling-explorations/maci/commit/d55497a9805812b2d2472386caecf75995d6efcf))
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
### Miscellaneous
|
|
718
|
+
|
|
719
|
+
* add a badges to README.md ([888524b](https://github.com/privacy-scaling-explorations/maci/commit/888524baae82d56edbf0c794e587de174906c34c))
|
|
720
|
+
* add types check ([69f038f](https://github.com/privacy-scaling-explorations/maci/commit/69f038f55e6c740d43b8b5376db999bcf92de845))
|
|
721
|
+
* apply prettier ([8b905c0](https://github.com/privacy-scaling-explorations/maci/commit/8b905c0948d4a1f950653c6812067ec98ebfcbc8))
|
|
722
|
+
* bundle size optimizations ([18da49c](https://github.com/privacy-scaling-explorations/maci/commit/18da49c791e53350158659df8248d48af8e80f6d))
|
|
723
|
+
* **ceremony:** add circuit tests with ceremony params ([58611db](https://github.com/privacy-scaling-explorations/maci/commit/58611dbf62f2dc01cf978d6bf01cf15bdef77356))
|
|
724
|
+
* **changelog:** add CHANGELOG of v1.1.1 ([f0c315a](https://github.com/privacy-scaling-explorations/maci/commit/f0c315a4c1b86f88839f2dbe4c4b9f59193f7be4))
|
|
725
|
+
* **cli:** change maci-cli script run instructions ([c51c34d](https://github.com/privacy-scaling-explorations/maci/commit/c51c34dc915721770474ad3555853ce1264aea07))
|
|
726
|
+
* **cli:** clarify cli commands ([3aa4f33](https://github.com/privacy-scaling-explorations/maci/commit/3aa4f33aa7f4558f16da65b5a3fb93b282bd4fe5))
|
|
727
|
+
* **cli:** integrate linter ([49571a1](https://github.com/privacy-scaling-explorations/maci/commit/49571a1199a8a027c64a7c39bd21f46a3a268f43))
|
|
728
|
+
* **cli:** optimize bundle size ([39268b2](https://github.com/privacy-scaling-explorations/maci/commit/39268b2ff8e0d27d062c6d3bc52a63ce8038ec5e))
|
|
729
|
+
* **cli:** prepare cli package for web apps ([f706d9a](https://github.com/privacy-scaling-explorations/maci/commit/f706d9aa5689f58e646650d92b188f27e5beb4d8))
|
|
730
|
+
* **cli:** reorganize e2e tests and add more tests for cli commands ([6000227](https://github.com/privacy-scaling-explorations/maci/commit/6000227231bee3917686b64685c14ca329fcf38b))
|
|
731
|
+
* **cli:** support install for web apps ([3166cdd](https://github.com/privacy-scaling-explorations/maci/commit/3166cdd249450c36f069e0d9703980902339eb54))
|
|
732
|
+
* **cli:** unify publish arg type ([50635dc](https://github.com/privacy-scaling-explorations/maci/commit/50635dc429f8784dde3815d91384c3d67eae8f85))
|
|
733
|
+
* **contract:** apply linter for deploy scripts and contracts ([9af9c04](https://github.com/privacy-scaling-explorations/maci/commit/9af9c0497a2491eaf89fbff475cf0f60bc04f59c))
|
|
734
|
+
* **contracts:** enable linter ([5c92154](https://github.com/privacy-scaling-explorations/maci/commit/5c92154fc09f0c59ca5054229798f3c8ad7d134d))
|
|
735
|
+
* **core:** add `CircuitInputs` type ([c4b72b0](https://github.com/privacy-scaling-explorations/maci/commit/c4b72b0f0b25a1bb147348a728a9550c8b6460a1))
|
|
736
|
+
* **core:** add quiet flag to process messages to log errors ([8793a09](https://github.com/privacy-scaling-explorations/maci/commit/8793a09dd3c52021d467b27e1cb64c023faba317)), closes [#1135](https://github.com/privacy-scaling-explorations/maci/issues/1135)
|
|
737
|
+
* **core:** add Typedoc comments ([a8521ee](https://github.com/privacy-scaling-explorations/maci/commit/a8521eea97bca47298bc2c59ae1c31df9533258b))
|
|
738
|
+
* **coverage:** setup coverage for TS packages ([f4e6964](https://github.com/privacy-scaling-explorations/maci/commit/f4e6964b3e268e4d3f2819b85e6abf3e34bcb10e))
|
|
739
|
+
* **dependencies:** update project dependencies and remove redundant ones ([4c5ac27](https://github.com/privacy-scaling-explorations/maci/commit/4c5ac27767492c9867a6e2ab2acd6b10fe132847))
|
|
740
|
+
* **deps-dev:** bump @types/node from 18.19.6 to 20.10.8 ([6645120](https://github.com/privacy-scaling-explorations/maci/commit/664512038212d36d40799e8c4787847735bd7d82))
|
|
741
|
+
* **deps-dev:** bump @types/node from 20.10.8 to 20.11.0 ([805d253](https://github.com/privacy-scaling-explorations/maci/commit/805d2536a54478c51403362419ecad0b6ab736a7))
|
|
742
|
+
* **deps-dev:** bump @types/node from 20.11.0 to 20.11.2 ([45839e8](https://github.com/privacy-scaling-explorations/maci/commit/45839e8c2668ec56ea06221758605f88029ea8a1))
|
|
743
|
+
* **deps-dev:** bump @types/node from 20.11.10 to 20.11.16 ([8144919](https://github.com/privacy-scaling-explorations/maci/commit/8144919939f7d9a841eb6fce7182628cedbf8746))
|
|
744
|
+
* **deps-dev:** bump @types/node from 20.11.16 to 20.11.17 ([44de5db](https://github.com/privacy-scaling-explorations/maci/commit/44de5db0c25a5fdfd5c13c397f49edb7185bf1f5))
|
|
745
|
+
* **deps-dev:** bump @types/node from 20.11.17 to 20.11.19 ([8d86b32](https://github.com/privacy-scaling-explorations/maci/commit/8d86b32ef70b89f4239aad3903fd36937cf6a90f))
|
|
746
|
+
* **deps-dev:** bump @types/node from 20.11.2 to 20.11.5 ([7698ede](https://github.com/privacy-scaling-explorations/maci/commit/7698edef2b95bc017e54c1fc0d796ccc9da3de85))
|
|
747
|
+
* **deps-dev:** bump @types/node from 20.11.5 to 20.11.10 ([a2c445a](https://github.com/privacy-scaling-explorations/maci/commit/a2c445a295e792e421f6c1537b2b21f8a7648683))
|
|
748
|
+
* **deps-dev:** bump lerna from 6.6.2 to 8.0.2 ([4b150ad](https://github.com/privacy-scaling-explorations/maci/commit/4b150ade7c4fbaf88eb0e1f629cec6749377706d))
|
|
749
|
+
* **deps-dev:** bump mocha from 10.2.0 to 10.3.0 ([2b76e04](https://github.com/privacy-scaling-explorations/maci/commit/2b76e0445f5da5864a335352f66eac33c070ab29))
|
|
750
|
+
* **deps-dev:** bump typescript from 5.2.2 to 5.3.3 ([4ec399d](https://github.com/privacy-scaling-explorations/maci/commit/4ec399dd6e984c12ebd24d0b20c14c1104872500))
|
|
751
|
+
* **deps:** bump @commander-js/extra-typings from 11.1.0 to 12.0.0 ([8688daa](https://github.com/privacy-scaling-explorations/maci/commit/8688daadb2cd2f863bbee718e30cf8d9e8c9b110))
|
|
752
|
+
* **deps:** bump commander from 11.1.0 to 12.0.0 ([72b1a2e](https://github.com/privacy-scaling-explorations/maci/commit/72b1a2e672d4808d3b2c7a3ad13e92b7db0811c8))
|
|
753
|
+
* **deps:** bump dotenv from 16.3.1 to 16.3.2 ([845becc](https://github.com/privacy-scaling-explorations/maci/commit/845becc8508d841b01430eb56379f828687b840b))
|
|
754
|
+
* **deps:** bump dotenv from 16.3.2 to 16.4.1 ([2430c50](https://github.com/privacy-scaling-explorations/maci/commit/2430c50ba5625f87f632f302c420a7fd10f5467a))
|
|
755
|
+
* **deps:** bump dotenv from 16.4.1 to 16.4.2 ([8431e74](https://github.com/privacy-scaling-explorations/maci/commit/8431e74c22099dcd7201e7005dbc25bc03c9e65c))
|
|
756
|
+
* **deps:** bump dotenv from 16.4.2 to 16.4.4 ([472c616](https://github.com/privacy-scaling-explorations/maci/commit/472c616570c427f508f3854e1cd357ceed4a8e1a))
|
|
757
|
+
* **deps:** bump ethers from 6.10.0 to 6.11.0 ([815696d](https://github.com/privacy-scaling-explorations/maci/commit/815696de4268c41e466ab6794215807a38906938))
|
|
758
|
+
* **deps:** bump ethers from 6.11.0 to 6.11.1 ([a01f434](https://github.com/privacy-scaling-explorations/maci/commit/a01f434451a377447052518236a23ad3c9051d17))
|
|
759
|
+
* **deps:** bump ethers from 6.9.2 to 6.10.0 ([dd8b4a0](https://github.com/privacy-scaling-explorations/maci/commit/dd8b4a048c013f28be175cc0db17fe5fc45d5976))
|
|
760
|
+
* **deps:** bump hardhat from 2.19.4 to 2.19.5 ([40ab10d](https://github.com/privacy-scaling-explorations/maci/commit/40ab10defff0a538aefa81d67fd6ce04b69f5eb6))
|
|
761
|
+
* **deps:** bump hardhat from 2.19.5 to 2.20.1 ([68543a6](https://github.com/privacy-scaling-explorations/maci/commit/68543a6886b2836c42fd18b77f9e98f322fb971e))
|
|
762
|
+
* **deps:** bump snarkjs from 0.7.2 to 0.7.3 ([cf95b6f](https://github.com/privacy-scaling-explorations/maci/commit/cf95b6ff6f66342e3b75dedd5c70d62f8f0816b1))
|
|
763
|
+
* **deps:** remove circomlib and add big-integer ([50eff2f](https://github.com/privacy-scaling-explorations/maci/commit/50eff2f6a8e009c19eab50b3b3e15b779d63f8f3))
|
|
764
|
+
* **key-change:** add tests and docs around key-change ([ce394e2](https://github.com/privacy-scaling-explorations/maci/commit/ce394e2d2bf3c8c6748cf8e8d1e401b8f3c924ee))
|
|
765
|
+
* linter ([42ea4f0](https://github.com/privacy-scaling-explorations/maci/commit/42ea4f0ae8b342f6bd5ca5ac86f1bdd143978324))
|
|
766
|
+
* linter unification ([61a8bcd](https://github.com/privacy-scaling-explorations/maci/commit/61a8bcd915fd3e4b4da3c00d40704d892c02f51b))
|
|
767
|
+
* **maci-cli:** check hardhat config file ([3a6ac6b](https://github.com/privacy-scaling-explorations/maci/commit/3a6ac6b41b759edff67533c0b665777329d63735))
|
|
768
|
+
* **poll:** unify pollId type ([21d01ef](https://github.com/privacy-scaling-explorations/maci/commit/21d01efc565df74ea8b71dfeeead60be5a07db56))
|
|
769
|
+
* **publishing:** remove bash script for empty ballot roots contract ([025287c](https://github.com/privacy-scaling-explorations/maci/commit/025287c778547e0acb1582532f3412e022cca6fa))
|
|
770
|
+
* rebased with the dev branch ([8165968](https://github.com/privacy-scaling-explorations/maci/commit/8165968fb18aa599a30c2f4ba48553cf65a16980))
|
|
771
|
+
* **release:** publish 1.1.2 ([10b3a85](https://github.com/privacy-scaling-explorations/maci/commit/10b3a85cc9b53c0fc1ccdf54221a48ec8d6efe0d))
|
|
772
|
+
* remove `gitHead` field from package.json ([d38ba71](https://github.com/privacy-scaling-explorations/maci/commit/d38ba71301469f350b3d80eab5bf94e779dda9cc))
|
|
773
|
+
* run prettier ([d09cd0e](https://github.com/privacy-scaling-explorations/maci/commit/d09cd0e01ac747245307ceec5343d9ed30d7a6f0))
|
|
774
|
+
* run prettier fix after bumping version ([e1f85a5](https://github.com/privacy-scaling-explorations/maci/commit/e1f85a53bbb72696b6998af5406748fd18df4701))
|
|
775
|
+
* **topup:** implement test cases for the topup feature ([7775a8b](https://github.com/privacy-scaling-explorations/maci/commit/7775a8b3295f29b098446d3e78a4200c03c847dd))
|
|
776
|
+
* update ptauFiles URLs ([b11b56a](https://github.com/privacy-scaling-explorations/maci/commit/b11b56ae09d78ef89443b094adad5b1916438ca1))
|
|
777
|
+
* **website:** apply linter for website and remove unused packages ([1a3b343](https://github.com/privacy-scaling-explorations/maci/commit/1a3b343948f9f48ed4948a5ade63b4b55645f4ab))
|
|
778
|
+
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
## [1.1.2](https://github.com/gurrpi/maci/compare/v1.1.1...v1.1.2) (2023-01-19)
|
|
782
|
+
|
|
783
|
+
### Code Refactoring
|
|
784
|
+
|
|
785
|
+
- **remove messageaqfactory:** remove messageAqFactory; remove redundant pollFactory dependency ([dcd1c67](https://github.com/gurrpi/maci/commit/dcd1c67f14f0cb92979d13e7887373ff6e354a6f))
|
|
786
|
+
|
|
787
|
+
### Miscellaneous
|
|
788
|
+
|
|
789
|
+
- add a badges to README.md ([888524b](https://github.com/gurrpi/maci/commit/888524baae82d56edbf0c794e587de174906c34c))
|
|
790
|
+
- **changelog:** add CHANGELOG of v1.1.1 ([ea1f0ca](https://github.com/gurrpi/maci/commit/ea1f0ca93f1618df0ba046f1f01b2abad57e0ee1))
|
|
791
|
+
|
|
792
|
+
## [1.1.1](https://github.com/gurrpi/maci/compare/v1.1.0...v1.1.1) (2022-12-03)
|
|
793
|
+
|
|
794
|
+
### Bug Fixes
|
|
795
|
+
|
|
796
|
+
- **maci:** upgraded minor version and fixed bug in testnet deployment ([5ef5ed8](https://github.com/gurrpi/maci/commit/5ef5ed842360277ac823c6919e171d0c51ff5702)), closes [#551](https://github.com/gurrpi/maci/issues/551) [#552](https://github.com/gurrpi/maci/issues/552)
|
|
797
|
+
- **maci:** upgraded snarkjs and other dependencies ([0ce643a](https://github.com/gurrpi/maci/commit/0ce643a18704c1a2d9245e8e85032874a11f004e))
|