@maci-protocol/cli 0.0.0-ci.044d30d → 0.0.0-ci.063ef62
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/LICENSE +1 -2
- package/build/package.json +5 -5
- package/build/ts/index.js +244 -225
- package/build/ts/index.js.map +1 -1
- package/build/ts/utils/constants.d.ts +2 -0
- package/build/ts/utils/constants.d.ts.map +1 -1
- package/build/ts/utils/constants.js +7 -1
- package/build/ts/utils/constants.js.map +1 -1
- package/build/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +9 -9
package/build/ts/index.js
CHANGED
|
@@ -45,6 +45,7 @@ const fs_1 = __importDefault(require("fs"));
|
|
|
45
45
|
const path_1 = __importDefault(require("path"));
|
|
46
46
|
require("./cliInit");
|
|
47
47
|
const utils_1 = require("./utils");
|
|
48
|
+
const constants_1 = require("./utils/constants");
|
|
48
49
|
const defaults_1 = require("./utils/defaults");
|
|
49
50
|
// set the description version and name of the cli tool
|
|
50
51
|
const { description, version, name } = JSON.parse(fs_1.default.readFileSync(path_1.default.resolve(__dirname, "..", "package.json"), "utf8"));
|
|
@@ -66,25 +67,25 @@ program
|
|
|
66
67
|
.option("-q, --quiet <quiet>", "whether to print values to the console", (value) => value === "true", false)
|
|
67
68
|
.option("-r, --rpc-provider <provider>", "the rpc provider URL")
|
|
68
69
|
.requiredOption("-s, --stateTreeDepth <stateTreeDepth>", "the state tree depth", parseInt)
|
|
69
|
-
.action(async (
|
|
70
|
+
.action(async (args) => {
|
|
70
71
|
try {
|
|
71
72
|
const signer = await getSigner();
|
|
72
|
-
(0, utils_1.banner)(
|
|
73
|
+
(0, utils_1.banner)(args.quiet);
|
|
73
74
|
const network = await signer.provider?.getNetwork();
|
|
74
75
|
const [poseidonT3, poseidonT4, poseidonT5, poseidonT6] = (0, utils_1.readContractAddresses)({
|
|
75
76
|
contractNames: [sdk_1.EContracts.PoseidonT3, sdk_1.EContracts.PoseidonT4, sdk_1.EContracts.PoseidonT5, sdk_1.EContracts.PoseidonT6],
|
|
76
77
|
network: network?.name,
|
|
77
78
|
});
|
|
78
79
|
let [signupPolicyContractAddress] = (0, utils_1.readContractAddresses)({
|
|
79
|
-
contractNames: [
|
|
80
|
+
contractNames: [args.signupPolicyContractName.toString()],
|
|
80
81
|
network: network?.name,
|
|
81
82
|
});
|
|
82
83
|
if (!signupPolicyContractAddress) {
|
|
83
|
-
const checkerFactory =
|
|
84
|
-
? sdk_1.FreeForAllCheckerFactory__factory.connect(
|
|
84
|
+
const checkerFactory = args.freeForAllCheckerFactoryAddress
|
|
85
|
+
? sdk_1.FreeForAllCheckerFactory__factory.connect(args.freeForAllCheckerFactoryAddress, signer)
|
|
85
86
|
: undefined;
|
|
86
|
-
const policyFactory =
|
|
87
|
-
? sdk_1.FreeForAllPolicyFactory__factory.connect(
|
|
87
|
+
const policyFactory = args.freeForAllPolicyFactoryAddress
|
|
88
|
+
? sdk_1.FreeForAllPolicyFactory__factory.connect(args.freeForAllPolicyFactoryAddress, signer)
|
|
88
89
|
: undefined;
|
|
89
90
|
const [contract] = await (0, sdk_1.deployFreeForAllSignUpPolicy)({ checker: checkerFactory, policy: policyFactory }, signer, true);
|
|
90
91
|
signupPolicyContractAddress = await contract.getAddress();
|
|
@@ -102,13 +103,13 @@ program
|
|
|
102
103
|
poseidonT6,
|
|
103
104
|
},
|
|
104
105
|
signer,
|
|
105
|
-
stateTreeDepth:
|
|
106
|
+
stateTreeDepth: args.stateTreeDepth,
|
|
106
107
|
});
|
|
107
|
-
const emptyBallotRoots = (0, sdk_1.
|
|
108
|
+
const emptyBallotRoots = (0, sdk_1.generateEmptyBallotRoots)(args.stateTreeDepth);
|
|
108
109
|
// save to the JSON File
|
|
109
110
|
await (0, utils_1.storeContractAddresses)({
|
|
110
111
|
data: {
|
|
111
|
-
[
|
|
112
|
+
[args.signupPolicyContractName]: { address: signupPolicyContractAddress, args: [] },
|
|
112
113
|
[sdk_1.EContracts.Verifier]: { address: verifierContractAddress, args: [] },
|
|
113
114
|
[sdk_1.EContracts.MACI]: {
|
|
114
115
|
address: maciContractAddress,
|
|
@@ -117,7 +118,7 @@ program
|
|
|
117
118
|
messageProcessorFactoryContractAddress,
|
|
118
119
|
tallyFactoryContractAddress,
|
|
119
120
|
signupPolicyContractAddress,
|
|
120
|
-
|
|
121
|
+
args.stateTreeDepth,
|
|
121
122
|
emptyBallotRoots.map((root) => root.toString()),
|
|
122
123
|
],
|
|
123
124
|
},
|
|
@@ -131,7 +132,7 @@ program
|
|
|
131
132
|
},
|
|
132
133
|
signer,
|
|
133
134
|
});
|
|
134
|
-
(0, sdk_1.logGreen)({ quiet:
|
|
135
|
+
(0, sdk_1.logGreen)({ quiet: args.quiet, text: (0, sdk_1.success)(`MACI deployed at: ${maciContractAddress}`) });
|
|
135
136
|
}
|
|
136
137
|
catch (error) {
|
|
137
138
|
program.error(error.message, { exitCode: 1 });
|
|
@@ -140,75 +141,75 @@ program
|
|
|
140
141
|
program
|
|
141
142
|
.command("checkVerifyingKeys")
|
|
142
143
|
.description("check that the verifying keys in the contract match the local ones")
|
|
143
|
-
.option("-
|
|
144
|
+
.option("-m, --mode <mode>", "Voting mode (qv, non-qv, full)", (value) => constants_1.MODE_NAME_TO_ENUM[value], sdk_1.EMode.QV)
|
|
144
145
|
.option("-q, --quiet <quiet>", "whether to print values to the console", (value) => value === "true", false)
|
|
145
146
|
.option("-r, --rpc-provider <provider>", "the rpc provider URL")
|
|
146
|
-
.option("-k, --vk-contract <vkContract>", "the
|
|
147
|
+
.option("-k, --vk-contract <vkContract>", "the VerifyingKeysRegistry contract address")
|
|
147
148
|
.requiredOption("-s, --state-tree-depth <stateTreeDepth>", "the state tree depth", parseInt)
|
|
148
|
-
.requiredOption("-i, --
|
|
149
|
+
.requiredOption("-i, --tally-processing-state-tree-depth <tallyProcessingStateTreeDepth>", "the intermediate state tree depth", parseInt)
|
|
149
150
|
.requiredOption("-v, --vote-option-tree-depth <voteOptionTreeDepth>", "the vote option tree depth", parseInt)
|
|
150
|
-
.requiredOption("-b, --
|
|
151
|
+
.requiredOption("-b, --message-batch-size <messageBatchSize>", "the message batch size", parseInt)
|
|
151
152
|
.requiredOption("-p, --process-messages-zkey <processMessagesZkeyPath>", "the process messages zkey path (see different options for zkey files to use specific circuits https://maci.pse.dev/docs/trusted-setup, https://maci.pse.dev/docs/testing/#pre-compiled-artifacts-for-testing)")
|
|
152
153
|
.requiredOption("-t, --tally-votes-zkey <tallyVotesZkeyPath>", "the tally votes zkey path (see different options for zkey files to use specific circuits https://maci.pse.dev/docs/trusted-setup, https://maci.pse.dev/docs/testing/#pre-compiled-artifacts-for-testing)")
|
|
153
154
|
.requiredOption("--poll-joining-zkey <pollJoiningZkey>", "the poll joining zkey path (see different options for zkey files to use specific circuits https://maci.pse.dev/docs/trusted-setup, https://maci.pse.dev/docs/testing/#pre-compiled-artifacts-for-testing)")
|
|
154
155
|
.requiredOption("--poll-joined-zkey <pollJoinedZkey>", "the poll joined zkey path (see different options for zkey files to use specific circuits https://maci.pse.dev/docs/trusted-setup, https://maci.pse.dev/docs/testing/#pre-compiled-artifacts-for-testing)")
|
|
155
|
-
.action(async (
|
|
156
|
+
.action(async (args) => {
|
|
156
157
|
try {
|
|
157
158
|
const signer = await getSigner();
|
|
158
159
|
const network = await signer.provider?.getNetwork();
|
|
159
|
-
const [
|
|
160
|
-
contractNames: [sdk_1.EContracts.
|
|
160
|
+
const [contractAddress] = (0, utils_1.readContractAddresses)({
|
|
161
|
+
contractNames: [sdk_1.EContracts.VerifyingKeysRegistry],
|
|
161
162
|
network: network?.name,
|
|
162
|
-
defaultAddresses: [
|
|
163
|
+
defaultAddresses: [args.vkContract],
|
|
163
164
|
});
|
|
164
|
-
(0, sdk_1.logYellow)({ quiet:
|
|
165
|
+
(0, sdk_1.logYellow)({ quiet: args.quiet, text: (0, sdk_1.info)("Retrieving verifying keys from the contract...") });
|
|
165
166
|
await (0, sdk_1.checkVerifyingKeys)({
|
|
166
|
-
stateTreeDepth:
|
|
167
|
-
|
|
168
|
-
voteOptionTreeDepth:
|
|
169
|
-
messageBatchSize:
|
|
170
|
-
processMessagesZkeyPath:
|
|
171
|
-
tallyVotesZkeyPath:
|
|
172
|
-
pollJoiningZkeyPath:
|
|
173
|
-
pollJoinedZkeyPath:
|
|
174
|
-
|
|
175
|
-
|
|
167
|
+
stateTreeDepth: args.stateTreeDepth,
|
|
168
|
+
tallyProcessingStateTreeDepth: args.tallyProcessingStateTreeDepth,
|
|
169
|
+
voteOptionTreeDepth: args.voteOptionTreeDepth,
|
|
170
|
+
messageBatchSize: args.messageBatchSize,
|
|
171
|
+
processMessagesZkeyPath: args.processMessagesZkey,
|
|
172
|
+
tallyVotesZkeyPath: args.tallyVotesZkey,
|
|
173
|
+
pollJoiningZkeyPath: args.pollJoiningZkey,
|
|
174
|
+
pollJoinedZkeyPath: args.pollJoinedZkey,
|
|
175
|
+
verifyingKeysRegistry: contractAddress,
|
|
176
|
+
mode: args.mode,
|
|
176
177
|
signer,
|
|
177
178
|
});
|
|
178
|
-
(0, sdk_1.logGreen)({ quiet:
|
|
179
|
+
(0, sdk_1.logGreen)({ quiet: args.quiet, text: (0, sdk_1.success)("Verifying keys match") });
|
|
179
180
|
}
|
|
180
181
|
catch (error) {
|
|
181
182
|
program.error(error.message, { exitCode: 1 });
|
|
182
183
|
}
|
|
183
184
|
});
|
|
184
185
|
program
|
|
185
|
-
.command("
|
|
186
|
+
.command("generateMaciPubKey")
|
|
186
187
|
.description("generate a new MACI public key")
|
|
187
|
-
.requiredOption("-k, --
|
|
188
|
+
.requiredOption("-k, --private-key <privateKey>", "the private key")
|
|
188
189
|
.option("-q, --quiet <quiet>", "whether to print values to the console", (value) => value === "true", false)
|
|
189
190
|
.option("-r, --rpc-provider <provider>", "the rpc provider URL")
|
|
190
|
-
.action((
|
|
191
|
-
const publicKey = (0, sdk_1.generateMaciPublicKey)(
|
|
192
|
-
(0, sdk_1.logGreen)({ quiet:
|
|
191
|
+
.action((args) => {
|
|
192
|
+
const publicKey = (0, sdk_1.generateMaciPublicKey)(args.privateKey);
|
|
193
|
+
(0, sdk_1.logGreen)({ quiet: args.quiet, text: (0, sdk_1.success)(`Public key: ${publicKey}`) });
|
|
193
194
|
});
|
|
194
195
|
program
|
|
195
|
-
.command("
|
|
196
|
+
.command("generateMaciKeyPair")
|
|
196
197
|
.description("generate a new MACI key pair")
|
|
197
198
|
.option("-s, --seed <seed>", "seed value for keypair", (value) => (value ? BigInt(value) : undefined), undefined)
|
|
198
199
|
.option("-q, --quiet <quiet>", "whether to print values to the console", (value) => value === "true", false)
|
|
199
|
-
.action((
|
|
200
|
-
const { publicKey, privateKey } = (0, sdk_1.generateKeypair)({ seed:
|
|
201
|
-
(0, sdk_1.logGreen)({ quiet:
|
|
202
|
-
(0, sdk_1.logGreen)({ quiet:
|
|
200
|
+
.action((args) => {
|
|
201
|
+
const { publicKey, privateKey } = (0, sdk_1.generateKeypair)({ seed: args.seed });
|
|
202
|
+
(0, sdk_1.logGreen)({ quiet: args.quiet, text: (0, sdk_1.success)(`Public key: ${publicKey}`) });
|
|
203
|
+
(0, sdk_1.logGreen)({ quiet: args.quiet, text: (0, sdk_1.success)(`Private key: ${privateKey}`) });
|
|
203
204
|
});
|
|
204
205
|
program
|
|
205
|
-
.command("
|
|
206
|
+
.command("deployVerifyingKeysRegistry")
|
|
206
207
|
.description("deploy a new verification key registry contract")
|
|
207
208
|
.option("-q, --quiet <quiet>", "whether to print values to the console", (value) => value === "true", false)
|
|
208
209
|
.option("-r, --rpc-provider <provider>", "the rpc provider URL")
|
|
209
|
-
.action(async (
|
|
210
|
+
.action(async (args) => {
|
|
210
211
|
try {
|
|
211
|
-
(0, utils_1.banner)(
|
|
212
|
+
(0, utils_1.banner)(args.quiet);
|
|
212
213
|
const signer = await getSigner();
|
|
213
214
|
// assume that the vkRegistry contract is the first one to be deployed
|
|
214
215
|
const isContractAddressesStoreExists = fs_1.default.existsSync(utils_1.contractAddressesStorePath);
|
|
@@ -217,12 +218,15 @@ program
|
|
|
217
218
|
(0, utils_1.resetContractAddresses)(network?.name);
|
|
218
219
|
}
|
|
219
220
|
// deploy and store the address
|
|
220
|
-
const
|
|
221
|
+
const verifyingKeysRegistryAddress = await (0, sdk_1.deployVerifyingKeysRegistryContract)({ signer });
|
|
221
222
|
await (0, utils_1.storeContractAddresses)({
|
|
222
|
-
data: { [sdk_1.EContracts.
|
|
223
|
+
data: { [sdk_1.EContracts.VerifyingKeysRegistry]: { address: verifyingKeysRegistryAddress, args: [] } },
|
|
223
224
|
signer,
|
|
224
225
|
});
|
|
225
|
-
(0, sdk_1.logGreen)({
|
|
226
|
+
(0, sdk_1.logGreen)({
|
|
227
|
+
quiet: args.quiet,
|
|
228
|
+
text: (0, sdk_1.success)(`VerifyingKeysRegistry deployed at: ${verifyingKeysRegistryAddress}`),
|
|
229
|
+
});
|
|
226
230
|
}
|
|
227
231
|
catch (error) {
|
|
228
232
|
program.error(error.message, { exitCode: 1 });
|
|
@@ -249,37 +253,37 @@ program
|
|
|
249
253
|
program
|
|
250
254
|
.command("deployPoll")
|
|
251
255
|
.description("deploy a new poll")
|
|
252
|
-
.option("-k, --
|
|
253
|
-
.requiredOption("
|
|
254
|
-
.requiredOption("
|
|
255
|
-
.requiredOption("-i, --
|
|
256
|
-
.requiredOption("-b, --
|
|
256
|
+
.option("-k, --verifyingKeysRegistryAddress <verifyingKeysRegistryAddress>", "the vk registry contract address")
|
|
257
|
+
.requiredOption("--start <pollStartDate>", "the poll start date", parseInt)
|
|
258
|
+
.requiredOption("--end <pollEndDate>", "the poll end date", parseInt)
|
|
259
|
+
.requiredOption("-i, --tally-processing-state-tree-depth <tallyProcessingStateTreeDepth>", "the int state tree depth", parseInt)
|
|
260
|
+
.requiredOption("-b, --message-batch-size <messageBatchSize>", "the message batch size", parseInt)
|
|
257
261
|
.requiredOption("-s, --state-tree-depth <stateTreeDepth>", "the state tree depth", parseInt)
|
|
258
262
|
.requiredOption("-v, --vote-option-tree-depth <voteOptionTreeDepth>", "the vote option tree depth", parseInt)
|
|
259
|
-
.requiredOption("-p, --
|
|
260
|
-
.option("-
|
|
263
|
+
.requiredOption("-p, --public-key <publicKey>", "the coordinator public key")
|
|
264
|
+
.option("-m, --mode <mode>", "Voting mode (qv, non-qv, full)", (value) => constants_1.MODE_NAME_TO_ENUM[value], sdk_1.EMode.QV)
|
|
261
265
|
.option("-x, --maci-address <maciAddress>", "the MACI contract address")
|
|
262
|
-
.option("
|
|
266
|
+
.option("--relayers <relayers>", "the relayer addresses", (value) => value.split(",").map((item) => item.trim()))
|
|
263
267
|
.option("-q, --quiet <quiet>", "whether to print values to the console", (value) => value === "true", false)
|
|
264
268
|
.option("-r, --rpc-provider <provider>", "the rpc provider URL")
|
|
265
269
|
.option("-o, --vote-options <voteOptions>", "the number of vote options", parseInt)
|
|
266
270
|
.option("--initial-voice-credits <initialVoiceCredits>", "the initial voice credits", parseInt)
|
|
267
271
|
.option("--initial-voice-credits-proxy <initialVoiceCreditsProxy>", "the initial voice credits proxy address")
|
|
268
272
|
.option("--signup-policy <signupPolicy>", "the signup policy contract address")
|
|
269
|
-
.action(async (
|
|
273
|
+
.action(async (args) => {
|
|
270
274
|
try {
|
|
271
|
-
(0, utils_1.banner)(
|
|
275
|
+
(0, utils_1.banner)(args.quiet);
|
|
272
276
|
const signer = await getSigner();
|
|
273
277
|
const network = await signer.provider?.getNetwork();
|
|
274
|
-
const [
|
|
278
|
+
const [verifyingKeysRegistryAddress, maciAddress, initialVoiceCreditProxyAddress, verifierContractAddress] = (0, utils_1.readContractAddresses)({
|
|
275
279
|
contractNames: [
|
|
276
|
-
sdk_1.EContracts.
|
|
280
|
+
sdk_1.EContracts.VerifyingKeysRegistry,
|
|
277
281
|
sdk_1.EContracts.MACI,
|
|
278
282
|
sdk_1.EContracts.ConstantInitialVoiceCreditProxy,
|
|
279
283
|
sdk_1.EContracts.Verifier,
|
|
280
284
|
],
|
|
281
285
|
network: network?.name,
|
|
282
|
-
defaultAddresses: [
|
|
286
|
+
defaultAddresses: [args.verifyingKeysRegistryAddress, args.maciAddress, args.initialVoiceCreditsProxy],
|
|
283
287
|
});
|
|
284
288
|
const maciContract = sdk_1.MACI__factory.connect(maciAddress, signer);
|
|
285
289
|
const nextPollId = await maciContract.nextPollId();
|
|
@@ -289,40 +293,40 @@ program
|
|
|
289
293
|
contractNames: [policyContractName.toString()],
|
|
290
294
|
keys: [nextPollId.toString()],
|
|
291
295
|
network: network?.name,
|
|
292
|
-
defaultAddresses: [
|
|
296
|
+
defaultAddresses: [args.signupPolicy],
|
|
293
297
|
});
|
|
294
298
|
const { pollId, pollContractAddress, tallyContractAddress, messageProcessorContractAddress, initialVoiceCreditProxyContractAddress, policyContractAddress, } = await (0, sdk_1.deployPoll)({
|
|
295
|
-
initialVoiceCredits:
|
|
296
|
-
pollStartTimestamp:
|
|
297
|
-
pollEndTimestamp:
|
|
298
|
-
|
|
299
|
-
messageBatchSize:
|
|
300
|
-
stateTreeDepth:
|
|
301
|
-
voteOptionTreeDepth:
|
|
302
|
-
|
|
299
|
+
initialVoiceCredits: args.initialVoiceCredits || defaults_1.DEFAULT_INITIAL_VOICE_CREDITS,
|
|
300
|
+
pollStartTimestamp: args.start,
|
|
301
|
+
pollEndTimestamp: args.end,
|
|
302
|
+
tallyProcessingStateTreeDepth: args.tallyProcessingStateTreeDepth,
|
|
303
|
+
messageBatchSize: args.messageBatchSize,
|
|
304
|
+
stateTreeDepth: args.stateTreeDepth,
|
|
305
|
+
voteOptionTreeDepth: args.voteOptionTreeDepth,
|
|
306
|
+
coordinatorPublicKey: domainobjs_1.PublicKey.deserialize(args.publicKey),
|
|
303
307
|
maciAddress,
|
|
304
|
-
|
|
305
|
-
relayers:
|
|
306
|
-
mode:
|
|
308
|
+
verifyingKeysRegistryContractAddress: verifyingKeysRegistryAddress,
|
|
309
|
+
relayers: args.relayers ?? [ethers_1.ZeroAddress],
|
|
310
|
+
mode: args.mode,
|
|
307
311
|
signer,
|
|
308
|
-
voteOptions:
|
|
312
|
+
voteOptions: args.voteOptions ?? defaults_1.DEFAULT_VOTE_OPTIONS,
|
|
309
313
|
verifierContractAddress,
|
|
310
314
|
policyContractAddress: signupPolicyContractAddress,
|
|
311
315
|
initialVoiceCreditProxyContractAddress: initialVoiceCreditProxyAddress,
|
|
312
316
|
});
|
|
313
|
-
(0, sdk_1.logGreen)({ quiet:
|
|
314
|
-
(0, sdk_1.logGreen)({ quiet:
|
|
315
|
-
(0, sdk_1.logGreen)({ quiet:
|
|
317
|
+
(0, sdk_1.logGreen)({ quiet: args.quiet, text: (0, sdk_1.success)(`Poll ID: ${pollId}`) });
|
|
318
|
+
(0, sdk_1.logGreen)({ quiet: args.quiet, text: (0, sdk_1.success)(`Poll contract address: ${pollContractAddress}`) });
|
|
319
|
+
(0, sdk_1.logGreen)({ quiet: args.quiet, text: (0, sdk_1.success)(`Tally contract address: ${tallyContractAddress}`) });
|
|
316
320
|
(0, sdk_1.logGreen)({
|
|
317
|
-
quiet:
|
|
321
|
+
quiet: args.quiet,
|
|
318
322
|
text: (0, sdk_1.success)(`Message processor contract address: ${messageProcessorContractAddress}`),
|
|
319
323
|
});
|
|
320
324
|
(0, sdk_1.logGreen)({
|
|
321
|
-
quiet:
|
|
325
|
+
quiet: args.quiet,
|
|
322
326
|
text: (0, sdk_1.success)(`Initial voice credit proxy contract address: ${initialVoiceCreditProxyContractAddress}`),
|
|
323
327
|
});
|
|
324
328
|
(0, sdk_1.logGreen)({
|
|
325
|
-
quiet:
|
|
329
|
+
quiet: args.quiet,
|
|
326
330
|
text: (0, sdk_1.success)(`Signup policy contract address: ${policyContractAddress}`),
|
|
327
331
|
});
|
|
328
332
|
}
|
|
@@ -333,7 +337,7 @@ program
|
|
|
333
337
|
program
|
|
334
338
|
.command("joinPoll")
|
|
335
339
|
.description("join the poll")
|
|
336
|
-
.requiredOption("-k, --
|
|
340
|
+
.requiredOption("-k, --private-key <privateKey>", "the private key")
|
|
337
341
|
.option("-i, --state-index <stateIndex>", "the user's state index", BigInt)
|
|
338
342
|
.option("-s, --sg-data <sgData>", "the signup policy data")
|
|
339
343
|
.option("-v, --ivcp-data <ivcpData>", "the initial voice credit proxy data")
|
|
@@ -351,37 +355,37 @@ program
|
|
|
351
355
|
.option("-w, --wasm", "whether to use the wasm binaries")
|
|
352
356
|
.option("-r, --rapidsnark <rapidsnark>", "the path to the rapidsnark binary")
|
|
353
357
|
.option("-g, --poll-witnessgen <pollWitnessgen>", "the path to the poll witness generation binary")
|
|
354
|
-
.action(async (
|
|
358
|
+
.action(async (args) => {
|
|
355
359
|
try {
|
|
356
360
|
const signer = await getSigner();
|
|
357
361
|
const network = await signer.provider?.getNetwork();
|
|
358
362
|
const [maciAddress] = (0, utils_1.readContractAddresses)({
|
|
359
363
|
contractNames: [sdk_1.EContracts.MACI],
|
|
360
364
|
network: network?.name,
|
|
361
|
-
defaultAddresses: [
|
|
365
|
+
defaultAddresses: [args.maciAddress],
|
|
362
366
|
});
|
|
363
|
-
const privateKey =
|
|
367
|
+
const privateKey = args.privateKey || (await (0, utils_1.promptSensitiveValue)("Insert your MACI private key"));
|
|
364
368
|
const data = await (0, sdk_1.joinPoll)({
|
|
365
369
|
maciAddress,
|
|
366
370
|
privateKey,
|
|
367
|
-
stateIndex:
|
|
368
|
-
stateFile:
|
|
369
|
-
pollId:
|
|
371
|
+
stateIndex: args.stateIndex,
|
|
372
|
+
stateFile: args.stateFile,
|
|
373
|
+
pollId: args.pollId,
|
|
370
374
|
signer,
|
|
371
|
-
startBlock:
|
|
372
|
-
endBlock:
|
|
373
|
-
blocksPerBatch:
|
|
374
|
-
pollJoiningZkey:
|
|
375
|
-
pollWasm:
|
|
376
|
-
useWasm:
|
|
377
|
-
rapidsnark:
|
|
378
|
-
pollWitgen:
|
|
379
|
-
sgDataArg:
|
|
380
|
-
ivcpDataArg:
|
|
381
|
-
});
|
|
382
|
-
(0, sdk_1.logGreen)({ quiet:
|
|
383
|
-
(0, sdk_1.logGreen)({ quiet:
|
|
384
|
-
(0, sdk_1.logGreen)({ quiet:
|
|
375
|
+
startBlock: args.startBlock,
|
|
376
|
+
endBlock: args.endBlock,
|
|
377
|
+
blocksPerBatch: args.blocksPerBatch,
|
|
378
|
+
pollJoiningZkey: args.pollJoiningZkey,
|
|
379
|
+
pollWasm: args.pollWasm,
|
|
380
|
+
useWasm: args.wasm,
|
|
381
|
+
rapidsnark: args.rapidsnark,
|
|
382
|
+
pollWitgen: args.pollWitnessgen,
|
|
383
|
+
sgDataArg: args.sgData ?? utils_1.DEFAULT_SG_DATA,
|
|
384
|
+
ivcpDataArg: args.ivcpData ?? utils_1.DEFAULT_IVCP_DATA,
|
|
385
|
+
});
|
|
386
|
+
(0, sdk_1.logGreen)({ quiet: args.quiet, text: (0, sdk_1.info)(`User joined poll with nullifier: ${data.nullifier}`) });
|
|
387
|
+
(0, sdk_1.logGreen)({ quiet: args.quiet, text: (0, sdk_1.info)(`User joined poll with state index: ${data.pollStateIndex}`) });
|
|
388
|
+
(0, sdk_1.logGreen)({ quiet: args.quiet, text: (0, sdk_1.info)(`User joined poll with ${data.voiceCredits} voice credits`) });
|
|
385
389
|
}
|
|
386
390
|
catch (error) {
|
|
387
391
|
program.error(error.message, { exitCode: 1 });
|
|
@@ -391,9 +395,9 @@ program
|
|
|
391
395
|
.command("setVerifyingKeys")
|
|
392
396
|
.description("set the verifying keys")
|
|
393
397
|
.requiredOption("-s, --state-tree-depth <stateTreeDepth>", "the state tree depth", parseInt)
|
|
394
|
-
.requiredOption("-i, --
|
|
398
|
+
.requiredOption("-i, --tally-processing-state-tree-depth <tallyProcessingStateTreeDepth>", "the intermediate state tree depth", parseInt)
|
|
395
399
|
.requiredOption("-v, --vote-option-tree-depth <voteOptionTreeDepth>", "the vote option tree depth", parseInt)
|
|
396
|
-
.requiredOption("-b, --
|
|
400
|
+
.requiredOption("-b, --message-batch-size <messageBatchSize>", "the message batch size", parseInt)
|
|
397
401
|
.option("--poll-state-tree-depth <pollStateTreeDepth>", "the poll state tree depth", parseInt)
|
|
398
402
|
.option("--poll-joining-zkey <pollJoiningZkeyPath>", "the poll joining zkey path (see different options for zkey files to use specific circuits https://maci.pse.dev/docs/trusted-setup, https://maci.pse.dev/docs/testing/#pre-compiled-artifacts-for-testing)")
|
|
399
403
|
.option("--poll-joined-zkey <pollJoinedZkeyPath>", "the poll joined zkey path (see different options for zkey files to use specific circuits https://maci.pse.dev/docs/trusted-setup, https://maci.pse.dev/docs/testing/#pre-compiled-artifacts-for-testing)")
|
|
@@ -401,39 +405,49 @@ program
|
|
|
401
405
|
.option("--tally-votes-zkey-qv <tallyVotesZkeyPathQv>", "the tally votes qv zkey path (see different options for zkey files to use specific circuits https://maci.pse.dev/docs/trusted-setup, https://maci.pse.dev/docs/testing/#pre-compiled-artifacts-for-testing)")
|
|
402
406
|
.option("--process-messages-zkey-non-qv <processMessagesZkeyPathNonQv>", "the process messages non-qv zkey path (see different options for zkey files to use specific circuits https://maci.pse.dev/docs/trusted-setup, https://maci.pse.dev/docs/testing/#pre-compiled-artifacts-for-testing)")
|
|
403
407
|
.option("--tally-votes-zkey-non-qv <tallyVotesZkeyPathNonQv>", "the tally votes non-qv zkey path (see different options for zkey files to use specific circuits https://maci.pse.dev/docs/trusted-setup, https://maci.pse.dev/docs/testing/#pre-compiled-artifacts-for-testing)")
|
|
404
|
-
.option("
|
|
408
|
+
.option("--process-messages-zkey-full <processMessagesZkeyPathFull>", "the process messages full zkey path (see different options for zkey files to use specific circuits https://maci.pse.dev/docs/trusted-setup, https://maci.pse.dev/docs/testing/#pre-compiled-artifacts-for-testing)")
|
|
409
|
+
.option("--tally-votes-zkey-full <tallyVotesZkeyPathFull>", "the tally votes full zkey path (see different options for zkey files to use specific circuits https://maci.pse.dev/docs/trusted-setup, https://maci.pse.dev/docs/testing/#pre-compiled-artifacts-for-testing)")
|
|
410
|
+
.option("-m, --mode <mode>", "Voting mode (qv, non-qv, full)", (value) => constants_1.MODE_NAME_TO_ENUM[value], sdk_1.EMode.QV)
|
|
405
411
|
.option("-k, --vk-registry <vkRegistry>", "the vk registry contract address")
|
|
406
412
|
.option("-q, --quiet <quiet>", "whether to print values to the console", (value) => value === "true", false)
|
|
407
413
|
.option("-r, --rpc-provider <provider>", "the rpc provider URL")
|
|
408
|
-
.action(async (
|
|
414
|
+
.action(async (args) => {
|
|
409
415
|
try {
|
|
410
416
|
const signer = await getSigner();
|
|
411
417
|
const network = await signer.provider?.getNetwork();
|
|
412
|
-
const [
|
|
413
|
-
contractNames: [sdk_1.EContracts.
|
|
418
|
+
const [verifyingKeysRegistryAddress] = (0, utils_1.readContractAddresses)({
|
|
419
|
+
contractNames: [sdk_1.EContracts.VerifyingKeysRegistry],
|
|
414
420
|
network: network?.name,
|
|
415
|
-
defaultAddresses: [
|
|
421
|
+
defaultAddresses: [args.vkRegistry],
|
|
416
422
|
});
|
|
417
|
-
const
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
423
|
+
const processKeys = {
|
|
424
|
+
[sdk_1.EMode.QV]: args.processMessagesZkeyQv,
|
|
425
|
+
[sdk_1.EMode.NON_QV]: args.processMessagesZkeyNonQv,
|
|
426
|
+
[sdk_1.EMode.FULL]: args.processMessagesZkeyFull,
|
|
427
|
+
};
|
|
428
|
+
const tallyKeys = {
|
|
429
|
+
[sdk_1.EMode.QV]: args.tallyVotesZkeyQv,
|
|
430
|
+
[sdk_1.EMode.NON_QV]: args.tallyVotesZkeyNonQv,
|
|
431
|
+
[sdk_1.EMode.FULL]: args.tallyVotesZkeyFull,
|
|
432
|
+
};
|
|
433
|
+
const { pollJoiningVerifyingKey, pollJoinedVerifyingKey, processVerifyingKey, tallyVerifyingKey } = await (0, sdk_1.extractAllVerifyingKeys)({
|
|
434
|
+
pollJoiningZkeyPath: args.pollJoiningZkey,
|
|
435
|
+
pollJoinedZkeyPath: args.pollJoinedZkey,
|
|
436
|
+
processMessagesZkeyPath: processKeys[args.mode],
|
|
437
|
+
tallyVotesZkeyPath: tallyKeys[args.mode],
|
|
424
438
|
});
|
|
425
439
|
await (0, sdk_1.setVerifyingKeys)({
|
|
426
|
-
stateTreeDepth:
|
|
427
|
-
|
|
428
|
-
voteOptionTreeDepth:
|
|
429
|
-
messageBatchSize:
|
|
430
|
-
pollStateTreeDepth:
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
mode:
|
|
440
|
+
stateTreeDepth: args.stateTreeDepth,
|
|
441
|
+
tallyProcessingStateTreeDepth: args.tallyProcessingStateTreeDepth,
|
|
442
|
+
voteOptionTreeDepth: args.voteOptionTreeDepth,
|
|
443
|
+
messageBatchSize: args.messageBatchSize,
|
|
444
|
+
pollStateTreeDepth: args.pollStateTreeDepth || args.stateTreeDepth,
|
|
445
|
+
pollJoiningVerifyingKey: pollJoiningVerifyingKey,
|
|
446
|
+
pollJoinedVerifyingKey: pollJoinedVerifyingKey,
|
|
447
|
+
processMessagesVerifyingKey: processVerifyingKey,
|
|
448
|
+
tallyVotesVerifyingKey: tallyVerifyingKey,
|
|
449
|
+
verifyingKeysRegistryAddress,
|
|
450
|
+
mode: args.mode,
|
|
437
451
|
signer,
|
|
438
452
|
});
|
|
439
453
|
}
|
|
@@ -444,9 +458,9 @@ program
|
|
|
444
458
|
program
|
|
445
459
|
.command("publish")
|
|
446
460
|
.description("publish a new message to a MACI Poll contract")
|
|
447
|
-
.requiredOption("-p, --
|
|
461
|
+
.requiredOption("-p, --public-key <publicKey>", "the MACI public key which should replace the user's public key in the state tree")
|
|
448
462
|
.option("-x, --maci-address <maciAddress>", "the MACI contract address")
|
|
449
|
-
.option("-k, --
|
|
463
|
+
.option("-k, --private-key <privateKey>", "your serialized MACI private key")
|
|
450
464
|
.requiredOption("-i, --state-index <stateIndex>", "the user's state index", BigInt)
|
|
451
465
|
.requiredOption("-v, --vote-option-index <voteOptionIndex>", "the vote option index", BigInt)
|
|
452
466
|
.requiredOption("-n, --nonce <nonce>", "the message nonce", BigInt)
|
|
@@ -455,25 +469,25 @@ program
|
|
|
455
469
|
.requiredOption("-w, --new-vote-weight <newVoteWeight>", "the new vote weight", BigInt)
|
|
456
470
|
.option("-q, --quiet <quiet>", "whether to print values to the console", (value) => value === "true", false)
|
|
457
471
|
.option("-r, --rpc-provider <provider>", "the rpc provider URL")
|
|
458
|
-
.action(async (
|
|
472
|
+
.action(async (args) => {
|
|
459
473
|
try {
|
|
460
474
|
const signer = await getSigner();
|
|
461
475
|
const network = await signer.provider?.getNetwork();
|
|
462
476
|
const [maciAddress] = (0, utils_1.readContractAddresses)({
|
|
463
477
|
contractNames: [sdk_1.EContracts.MACI],
|
|
464
478
|
network: network?.name,
|
|
465
|
-
defaultAddresses: [
|
|
479
|
+
defaultAddresses: [args.maciAddress],
|
|
466
480
|
});
|
|
467
|
-
const privateKey =
|
|
481
|
+
const privateKey = args.privateKey || (await (0, utils_1.promptSensitiveValue)("Insert your MACI private key"));
|
|
468
482
|
await (0, sdk_1.publish)({
|
|
469
|
-
|
|
470
|
-
stateIndex:
|
|
471
|
-
voteOptionIndex:
|
|
472
|
-
nonce:
|
|
473
|
-
pollId:
|
|
474
|
-
newVoteWeight:
|
|
483
|
+
publicKey: args.publicKey,
|
|
484
|
+
stateIndex: args.stateIndex,
|
|
485
|
+
voteOptionIndex: args.voteOptionIndex,
|
|
486
|
+
nonce: args.nonce,
|
|
487
|
+
pollId: args.pollId,
|
|
488
|
+
newVoteWeight: args.newVoteWeight,
|
|
475
489
|
maciAddress,
|
|
476
|
-
salt:
|
|
490
|
+
salt: args.salt,
|
|
477
491
|
privateKey,
|
|
478
492
|
signer,
|
|
479
493
|
});
|
|
@@ -488,23 +502,23 @@ program
|
|
|
488
502
|
.option("-q, --quiet <quiet>", "whether to print values to the console", (value) => value === "true", false)
|
|
489
503
|
.option("-x, --maci-address <maciAddress>", "the MACI contract address")
|
|
490
504
|
.requiredOption("-p, --poll-id <pollId>", "the poll id", BigInt)
|
|
491
|
-
.action(async (
|
|
505
|
+
.action(async (args) => {
|
|
492
506
|
try {
|
|
493
507
|
const signer = await getSigner();
|
|
494
508
|
const network = await signer.provider?.getNetwork();
|
|
495
509
|
const [maciAddress] = (0, utils_1.readContractAddresses)({
|
|
496
510
|
contractNames: [sdk_1.EContracts.MACI],
|
|
497
511
|
network: network?.name,
|
|
498
|
-
defaultAddresses: [
|
|
512
|
+
defaultAddresses: [args.maciAddress],
|
|
499
513
|
});
|
|
500
514
|
const receipt = await (0, sdk_1.mergeSignups)({
|
|
501
|
-
pollId:
|
|
515
|
+
pollId: args.pollId,
|
|
502
516
|
maciAddress,
|
|
503
517
|
signer,
|
|
504
518
|
});
|
|
505
|
-
(0, sdk_1.logGreen)({ quiet:
|
|
519
|
+
(0, sdk_1.logGreen)({ quiet: args.quiet, text: (0, sdk_1.info)(`Transaction hash: ${receipt.hash}`) });
|
|
506
520
|
(0, sdk_1.logGreen)({
|
|
507
|
-
quiet:
|
|
521
|
+
quiet: args.quiet,
|
|
508
522
|
text: (0, sdk_1.success)(`Executed mergeSignups(); gas used: ${receipt.gasUsed.toString()}`),
|
|
509
523
|
});
|
|
510
524
|
}
|
|
@@ -518,19 +532,19 @@ program
|
|
|
518
532
|
.requiredOption("-s, --seconds <seconds>", "the number of seconds to fast-forward", parseInt)
|
|
519
533
|
.option("-q, --quiet <quiet>", "whether to print values to the console", (value) => value === "true", false)
|
|
520
534
|
.option("-r, --rpc-provider <provider>", "the rpc provider URL")
|
|
521
|
-
.action(async (
|
|
535
|
+
.action(async (args) => {
|
|
522
536
|
try {
|
|
523
|
-
(0, utils_1.banner)(
|
|
537
|
+
(0, utils_1.banner)(args.quiet);
|
|
524
538
|
const signer = await getSigner();
|
|
525
|
-
await (0, sdk_1.timeTravel)({ seconds:
|
|
526
|
-
(0, sdk_1.logGreen)({ quiet:
|
|
539
|
+
await (0, sdk_1.timeTravel)({ seconds: args.seconds, signer });
|
|
540
|
+
(0, sdk_1.logGreen)({ quiet: args.quiet, text: (0, sdk_1.success)(`Fast-forwarded ${args.seconds} seconds`) });
|
|
527
541
|
}
|
|
528
542
|
catch (error) {
|
|
529
543
|
program.error(error.message, { exitCode: 1 });
|
|
530
544
|
}
|
|
531
545
|
});
|
|
532
546
|
program
|
|
533
|
-
.command("
|
|
547
|
+
.command("extractVerifyingKeyToFile")
|
|
534
548
|
.description("extract vkey to json file")
|
|
535
549
|
.requiredOption("--poll-joining-zkey <pollJoiningZkey>", "the poll joining zkey path (see different options for zkey files to use specific circuits https://maci.pse.dev/docs/trusted-setup, https://maci.pse.dev/docs/testing/#pre-compiled-artifacts-for-testing)")
|
|
536
550
|
.requiredOption("--poll-joined-zkey <pollJoinedZkey>", "the poll joined zkey path (see different options for zkey files to use specific circuits https://maci.pse.dev/docs/trusted-setup, https://maci.pse.dev/docs/testing/#pre-compiled-artifacts-for-testing)")
|
|
@@ -539,16 +553,16 @@ program
|
|
|
539
553
|
.requiredOption("--process-messages-zkey-non-qv <processMessagesZkeyPathNonQv>", "the process messages non-qv zkey path (see different options for zkey files to use specific circuits https://maci.pse.dev/docs/trusted-setup, https://maci.pse.dev/docs/testing/#pre-compiled-artifacts-for-testing)")
|
|
540
554
|
.requiredOption("--tally-votes-zkey-non-qv <tallyVotesZkeyPathNonQv>", "the tally votes non-qv zkey path (see different options for zkey files to use specific circuits https://maci.pse.dev/docs/trusted-setup, https://maci.pse.dev/docs/testing/#pre-compiled-artifacts-for-testing)")
|
|
541
555
|
.requiredOption("-o, --output-file <outputFile>", "the output file path of extracted vkeys")
|
|
542
|
-
.action(async (
|
|
556
|
+
.action(async (args) => {
|
|
543
557
|
try {
|
|
544
|
-
await (0, sdk_1.
|
|
545
|
-
processMessagesZkeyPathQv:
|
|
546
|
-
tallyVotesZkeyPathQv:
|
|
547
|
-
processMessagesZkeyPathNonQv:
|
|
548
|
-
tallyVotesZkeyPathNonQv:
|
|
549
|
-
pollJoiningZkeyPath:
|
|
550
|
-
pollJoinedZkeyPath:
|
|
551
|
-
outputFilePath:
|
|
558
|
+
await (0, sdk_1.extractVerifyingKeyToFile)({
|
|
559
|
+
processMessagesZkeyPathQv: args.processMessagesZkeyQv,
|
|
560
|
+
tallyVotesZkeyPathQv: args.tallyVotesZkeyQv,
|
|
561
|
+
processMessagesZkeyPathNonQv: args.processMessagesZkeyNonQv,
|
|
562
|
+
tallyVotesZkeyPathNonQv: args.tallyVotesZkeyNonQv,
|
|
563
|
+
pollJoiningZkeyPath: args.pollJoiningZkey,
|
|
564
|
+
pollJoinedZkeyPath: args.pollJoinedZkey,
|
|
565
|
+
outputFilePath: args.outputFile,
|
|
552
566
|
});
|
|
553
567
|
}
|
|
554
568
|
catch (error) {
|
|
@@ -558,28 +572,28 @@ program
|
|
|
558
572
|
program
|
|
559
573
|
.command("signup")
|
|
560
574
|
.description("Sign up to a MACI contract")
|
|
561
|
-
.requiredOption("-p, --
|
|
575
|
+
.requiredOption("-p, --public-key <publicKey>", "the MACI public key")
|
|
562
576
|
.option("-x, --maci-address <maciAddress>", "the MACI contract address")
|
|
563
577
|
.option("-s, --sg-data <sgData>", "the signup gateway data")
|
|
564
578
|
.option("-q, --quiet <quiet>", "whether to print values to the console", (value) => value === "true", false)
|
|
565
579
|
.option("-r, --rpc-provider <provider>", "the rpc provider URL")
|
|
566
|
-
.action(async (
|
|
580
|
+
.action(async (args) => {
|
|
567
581
|
try {
|
|
568
582
|
const signer = await getSigner();
|
|
569
583
|
const network = await signer.provider?.getNetwork();
|
|
570
584
|
const [maciAddress] = (0, utils_1.readContractAddresses)({
|
|
571
585
|
contractNames: [sdk_1.EContracts.MACI],
|
|
572
586
|
network: network?.name,
|
|
573
|
-
defaultAddresses: [
|
|
587
|
+
defaultAddresses: [args.maciAddress],
|
|
574
588
|
});
|
|
575
589
|
const data = await (0, sdk_1.signup)({
|
|
576
|
-
|
|
590
|
+
maciPublicKey: args.publicKey,
|
|
577
591
|
maciAddress,
|
|
578
|
-
sgData:
|
|
592
|
+
sgData: args.sgData ?? utils_1.DEFAULT_SG_DATA,
|
|
579
593
|
signer,
|
|
580
594
|
});
|
|
581
595
|
(0, sdk_1.logGreen)({
|
|
582
|
-
quiet:
|
|
596
|
+
quiet: args.quiet,
|
|
583
597
|
text: (0, sdk_1.success)(`State index: ${data.stateIndex.toString()}\n Transaction hash: ${data.transactionHash}`),
|
|
584
598
|
});
|
|
585
599
|
}
|
|
@@ -590,28 +604,28 @@ program
|
|
|
590
604
|
program
|
|
591
605
|
.command("isRegisteredUser")
|
|
592
606
|
.description("Checks if user is registered with their public key and get their data")
|
|
593
|
-
.requiredOption("-p, --
|
|
607
|
+
.requiredOption("-p, --public-key <publicKey>", "the MACI public key")
|
|
594
608
|
.option("-x, --maci-address <maciAddress>", "the MACI contract address")
|
|
595
609
|
.option("-q, --quiet <quiet>", "whether to print values to the console", (value) => value === "true", false)
|
|
596
|
-
.action(async (
|
|
610
|
+
.action(async (args) => {
|
|
597
611
|
try {
|
|
598
612
|
const signer = await getSigner();
|
|
599
613
|
const network = await signer.provider?.getNetwork();
|
|
600
614
|
const [maciAddress] = (0, utils_1.readContractAddresses)({
|
|
601
615
|
contractNames: [sdk_1.EContracts.MACI],
|
|
602
616
|
network: network?.name,
|
|
603
|
-
defaultAddresses: [
|
|
617
|
+
defaultAddresses: [args.maciAddress],
|
|
604
618
|
});
|
|
605
619
|
const data = await (0, sdk_1.getSignedupUserData)({
|
|
606
|
-
|
|
620
|
+
maciPublicKey: args.publicKey,
|
|
607
621
|
maciAddress,
|
|
608
622
|
signer,
|
|
609
623
|
});
|
|
610
624
|
if (data.isRegistered) {
|
|
611
|
-
(0, sdk_1.logGreen)({ quiet:
|
|
625
|
+
(0, sdk_1.logGreen)({ quiet: args.quiet, text: (0, sdk_1.success)(`State index: ${data.stateIndex?.toString()}`) });
|
|
612
626
|
}
|
|
613
627
|
else {
|
|
614
|
-
(0, sdk_1.logRed)({ quiet:
|
|
628
|
+
(0, sdk_1.logRed)({ quiet: args.quiet, text: "User is not registered" });
|
|
615
629
|
}
|
|
616
630
|
}
|
|
617
631
|
catch (error) {
|
|
@@ -621,32 +635,32 @@ program
|
|
|
621
635
|
program
|
|
622
636
|
.command("isJoinedUser")
|
|
623
637
|
.description("Checks if user is joined to the poll with public key")
|
|
624
|
-
.requiredOption("-p, --
|
|
638
|
+
.requiredOption("-p, --public-key <publicKey>", "the MACI public key")
|
|
625
639
|
.option("-x, --maci-address <maciAddress>", "the MACI contract address")
|
|
626
640
|
.requiredOption("-o, --poll-id <pollId>", "the poll id", BigInt)
|
|
627
641
|
.option("-q, --quiet <quiet>", "whether to print values to the console", (value) => value === "true", false)
|
|
628
642
|
.option("--start-block <startBlock>", "the block number to start looking for events from", parseInt)
|
|
629
643
|
.option("--end-block <endBlock>", "the block number to end looking for events from", parseInt)
|
|
630
644
|
.option("--blocks-per-batch <blockPerBatch>", "the number of blocks to process per batch", parseInt)
|
|
631
|
-
.action(async (
|
|
645
|
+
.action(async (args) => {
|
|
632
646
|
try {
|
|
633
647
|
const signer = await getSigner();
|
|
634
648
|
const network = await signer.provider?.getNetwork();
|
|
635
649
|
const [maciAddress] = (0, utils_1.readContractAddresses)({
|
|
636
650
|
contractNames: [sdk_1.EContracts.MACI],
|
|
637
651
|
network: network?.name,
|
|
638
|
-
defaultAddresses: [
|
|
652
|
+
defaultAddresses: [args.maciAddress],
|
|
639
653
|
});
|
|
640
654
|
const data = await (0, sdk_1.getJoinedUserData)({
|
|
641
|
-
|
|
642
|
-
startBlock:
|
|
655
|
+
pollPublicKey: args.publicKey,
|
|
656
|
+
startBlock: args.startBlock,
|
|
643
657
|
maciAddress,
|
|
644
|
-
pollId:
|
|
658
|
+
pollId: args.pollId,
|
|
645
659
|
signer,
|
|
646
660
|
});
|
|
647
661
|
if (data.isJoined) {
|
|
648
662
|
(0, sdk_1.logGreen)({
|
|
649
|
-
quiet:
|
|
663
|
+
quiet: args.quiet,
|
|
650
664
|
text: (0, sdk_1.success)([
|
|
651
665
|
`Poll state index: ${data.pollStateIndex?.toString()}, registered: ${data.isJoined}`,
|
|
652
666
|
`Voice credits: ${data.voiceCredits?.toString()}`,
|
|
@@ -654,7 +668,7 @@ program
|
|
|
654
668
|
});
|
|
655
669
|
}
|
|
656
670
|
else {
|
|
657
|
-
(0, sdk_1.logRed)({ quiet:
|
|
671
|
+
(0, sdk_1.logRed)({ quiet: args.quiet, text: "User has not joined the poll" });
|
|
658
672
|
}
|
|
659
673
|
}
|
|
660
674
|
catch (error) {
|
|
@@ -666,29 +680,34 @@ program
|
|
|
666
680
|
.description("Get deployed poll from MACI contract")
|
|
667
681
|
.option("-p, --poll <poll>", "the poll id")
|
|
668
682
|
.option("-x, --maci-address <maciAddress>", "the MACI contract address")
|
|
669
|
-
.action(async (
|
|
683
|
+
.action(async (args) => {
|
|
670
684
|
try {
|
|
671
685
|
const signer = await getSigner();
|
|
672
686
|
const network = await signer.provider?.getNetwork();
|
|
673
687
|
const [maciAddress] = (0, utils_1.readContractAddresses)({
|
|
674
688
|
contractNames: [sdk_1.EContracts.MACI],
|
|
675
689
|
network: network?.name,
|
|
676
|
-
defaultAddresses: [
|
|
690
|
+
defaultAddresses: [args.maciAddress],
|
|
677
691
|
});
|
|
678
692
|
const details = await (0, sdk_1.getPoll)({
|
|
679
|
-
pollId:
|
|
693
|
+
pollId: args.poll,
|
|
680
694
|
maciAddress,
|
|
681
695
|
signer,
|
|
682
696
|
});
|
|
697
|
+
const modeNames = {
|
|
698
|
+
[sdk_1.EMode.QV]: "Quadratic Voting",
|
|
699
|
+
[sdk_1.EMode.NON_QV]: "Non-Quadratic Voting",
|
|
700
|
+
[sdk_1.EMode.FULL]: "Full Credits Voting",
|
|
701
|
+
};
|
|
683
702
|
(0, sdk_1.logGreen)({
|
|
684
703
|
quiet: true,
|
|
685
704
|
text: (0, sdk_1.success)([
|
|
686
705
|
`ID: ${details.id}`,
|
|
687
706
|
`Start time: ${new Date(Number(details.startDate) * 1000).toString()}`,
|
|
688
707
|
`End time: ${new Date(Number(details.endDate) * 1000).toString()}`,
|
|
689
|
-
`Number of signups ${details.
|
|
708
|
+
`Number of signups ${details.totalSignups}`,
|
|
690
709
|
`State tree merged: ${details.isMerged}`,
|
|
691
|
-
`Mode: ${details.mode
|
|
710
|
+
`Mode: ${modeNames[details.mode]}`,
|
|
692
711
|
].join("\n")),
|
|
693
712
|
});
|
|
694
713
|
}
|
|
@@ -703,15 +722,15 @@ program
|
|
|
703
722
|
.requiredOption("-w, --address <address>", "the address to fund")
|
|
704
723
|
.option("-q, --quiet <quiet>", "whether to print values to the console", (value) => value === "true", false)
|
|
705
724
|
.option("-r, --rpc-provider <provider>", "the rpc provider URL")
|
|
706
|
-
.action(async (
|
|
725
|
+
.action(async (args) => {
|
|
707
726
|
try {
|
|
708
|
-
(0, utils_1.banner)(
|
|
727
|
+
(0, utils_1.banner)(args.quiet);
|
|
709
728
|
const signer = await getSigner();
|
|
710
|
-
const hash = await (0, sdk_1.fundWallet)({ amount:
|
|
711
|
-
(0, sdk_1.logYellow)({ quiet:
|
|
729
|
+
const hash = await (0, sdk_1.fundWallet)({ amount: args.amount, address: args.address, signer });
|
|
730
|
+
(0, sdk_1.logYellow)({ quiet: args.quiet, text: (0, sdk_1.info)(`Transaction hash: ${hash}`) });
|
|
712
731
|
(0, sdk_1.logGreen)({
|
|
713
|
-
quiet:
|
|
714
|
-
text: (0, sdk_1.success)(`Successfully funded ${
|
|
732
|
+
quiet: args.quiet,
|
|
733
|
+
text: (0, sdk_1.success)(`Successfully funded ${args.address} with ${args.amount} wei`),
|
|
715
734
|
});
|
|
716
735
|
}
|
|
717
736
|
catch (error) {
|
|
@@ -726,34 +745,34 @@ program
|
|
|
726
745
|
.option("-x, --maci-address <maciAddress>", "the MACI contract address")
|
|
727
746
|
.option("-q, --quiet <quiet>", "whether to print values to the console", (value) => value === "true", false)
|
|
728
747
|
.option("-r, --rpc-provider <provider>", "the rpc provider URL")
|
|
729
|
-
.action(async (
|
|
748
|
+
.action(async (args) => {
|
|
730
749
|
try {
|
|
731
|
-
(0, utils_1.banner)(
|
|
750
|
+
(0, utils_1.banner)(args.quiet);
|
|
732
751
|
const signer = await getSigner();
|
|
733
752
|
const network = await signer.provider?.getNetwork();
|
|
734
753
|
// read the tally file
|
|
735
|
-
const isTallyFileExists = fs_1.default.existsSync(
|
|
736
|
-
if (!
|
|
737
|
-
throw new Error(`Unable to open ${
|
|
754
|
+
const isTallyFileExists = fs_1.default.existsSync(args.tallyFile);
|
|
755
|
+
if (!args.tallyFile || !isTallyFileExists) {
|
|
756
|
+
throw new Error(`Unable to open ${args.tallyFile}`);
|
|
738
757
|
}
|
|
739
|
-
const tallyData = await (0, utils_1.readJSONFile)(
|
|
758
|
+
const tallyData = await (0, utils_1.readJSONFile)(args.tallyFile);
|
|
740
759
|
const [maciAddress] = (0, utils_1.readContractAddresses)({
|
|
741
760
|
contractNames: [sdk_1.EContracts.MACI],
|
|
742
761
|
network: network?.name,
|
|
743
|
-
defaultAddresses: [
|
|
762
|
+
defaultAddresses: [args.maciAddress],
|
|
744
763
|
});
|
|
745
|
-
const pollParams = await (0, sdk_1.getPollParams)({ pollId:
|
|
764
|
+
const pollParams = await (0, sdk_1.getPollParams)({ pollId: args.pollId, maciContractAddress: maciAddress, signer });
|
|
746
765
|
const tallyCommitments = (0, sdk_1.generateTallyCommitments)({
|
|
747
766
|
tallyData,
|
|
748
767
|
voteOptionTreeDepth: pollParams.voteOptionTreeDepth,
|
|
749
768
|
});
|
|
750
769
|
await (0, sdk_1.verify)({
|
|
751
770
|
tallyData,
|
|
752
|
-
pollId:
|
|
771
|
+
pollId: args.pollId,
|
|
753
772
|
maciAddress,
|
|
754
773
|
signer,
|
|
755
774
|
tallyCommitments,
|
|
756
|
-
|
|
775
|
+
totalVoteOptions: pollParams.totalVoteOptions,
|
|
757
776
|
voteOptionTreeDepth: pollParams.voteOptionTreeDepth,
|
|
758
777
|
});
|
|
759
778
|
}
|
|
@@ -762,9 +781,9 @@ program
|
|
|
762
781
|
}
|
|
763
782
|
});
|
|
764
783
|
program
|
|
765
|
-
.command("
|
|
784
|
+
.command("generateProofs")
|
|
766
785
|
.description("generate the proofs for a poll")
|
|
767
|
-
.option("-k, --
|
|
786
|
+
.option("-k, --private-key <privateKey>", "your serialized MACI private key")
|
|
768
787
|
.option("-x, --maci-address <maciAddress>", "the MACI contract address")
|
|
769
788
|
.requiredOption("-o, --poll-id <pollId>", "the poll id", BigInt)
|
|
770
789
|
.requiredOption("-t, --tally-file <tallyFile>", "the tally file with results, per vote option spent credits, spent voice credits total")
|
|
@@ -787,9 +806,9 @@ program
|
|
|
787
806
|
.option("--start-block <startBlock>", "the block number to start looking for events from", parseInt)
|
|
788
807
|
.option("--end-block <endBlock>", "the block number to end looking for events from", parseInt)
|
|
789
808
|
.option("--blocks-per-batch <blockPerBatch>", "the number of blocks to process per batch", parseInt)
|
|
790
|
-
.option("-
|
|
809
|
+
.option("-m, --mode <mode>", "Voting mode (qv, non-qv, full)", (value) => constants_1.MODE_NAME_TO_ENUM[value], sdk_1.EMode.QV)
|
|
791
810
|
.option("-b, --ipfs-message-backup-files <ipfsMessageBackupFiles>", "Backup files for ipfs messages (name format: ipfsHash1.json, ipfsHash2.json, ..., ipfsHashN.json)", (value) => value?.split(/\s*,\s*/))
|
|
792
|
-
.action(async ({ quiet, maciAddress, pollId, ipfsMessageBackupFiles, stateFile, startBlock, endBlock, blocksPerBatch,
|
|
811
|
+
.action(async ({ quiet, maciAddress, pollId, ipfsMessageBackupFiles, stateFile, startBlock, endBlock, blocksPerBatch, privateKey, transactionHash, output, tallyFile, tallyZkey, tallyWitnessgen, tallyWasm, processZkey, processWitnessgen, processWasm, mode, tallyWitnessdat, processWitnessdat, wasm, rapidsnark, }) => {
|
|
793
812
|
try {
|
|
794
813
|
(0, utils_1.banner)(quiet);
|
|
795
814
|
const signer = await getSigner();
|
|
@@ -799,7 +818,7 @@ program
|
|
|
799
818
|
network: network?.name,
|
|
800
819
|
defaultAddresses: [maciAddress],
|
|
801
820
|
});
|
|
802
|
-
const coordinatorPrivateKey =
|
|
821
|
+
const coordinatorPrivateKey = privateKey || (await (0, utils_1.promptSensitiveValue)("Insert your MACI private key"));
|
|
803
822
|
await (0, sdk_1.generateProofs)({
|
|
804
823
|
maciAddress: maciContractAddress,
|
|
805
824
|
coordinatorPrivateKey,
|
|
@@ -819,7 +838,7 @@ program
|
|
|
819
838
|
processZkey,
|
|
820
839
|
processWitgen: processWitnessgen,
|
|
821
840
|
processWasm,
|
|
822
|
-
|
|
841
|
+
mode,
|
|
823
842
|
tallyDatFile: tallyWitnessdat,
|
|
824
843
|
processDatFile: processWitnessdat,
|
|
825
844
|
useWasm: wasm,
|
|
@@ -831,12 +850,12 @@ program
|
|
|
831
850
|
}
|
|
832
851
|
});
|
|
833
852
|
program
|
|
834
|
-
.command("
|
|
853
|
+
.command("generateLocalState")
|
|
835
854
|
.description("generate a local MACI state from the smart contracts events")
|
|
836
855
|
.requiredOption("-o, --output <outputPath>", "the path where to write the state")
|
|
837
856
|
.requiredOption("-p, --poll-id <pollId>", "the id of the poll", BigInt)
|
|
838
857
|
.option("-x, --maci-address <maciAddress>", "the MACI contract address")
|
|
839
|
-
.option("-k, --
|
|
858
|
+
.option("-k, --private-key <privateKey>", "your serialized MACI private key")
|
|
840
859
|
.option("--start-block <startBlock>", "the start block number", parseInt)
|
|
841
860
|
.option("--end-block <endBlock>", "the end block number", parseInt)
|
|
842
861
|
.option("--blocks-per-batch <blockPerBatch>", "the blocks per batch", parseInt)
|
|
@@ -846,30 +865,30 @@ program
|
|
|
846
865
|
.option("-r, --rpc-provider <provider>", "the rpc provider URL")
|
|
847
866
|
.option("-b, --ipfs-message-backup-files <ipfsMessageBackupFiles>", "Backup files for ipfs messages (name format: ipfsHash1.json, ipfsHash2.json, ..., ipfsHashN.json)", (value) => value?.split(/\s*,\s*/))
|
|
848
867
|
.option("-l, --logs-output <logsOutputPath>", "the path where to save the logs for debugging and auditing purposes")
|
|
849
|
-
.action(async (
|
|
868
|
+
.action(async (args) => {
|
|
850
869
|
try {
|
|
851
870
|
const signer = await getSigner();
|
|
852
871
|
const network = await signer.provider?.getNetwork();
|
|
853
872
|
const [maciAddress] = (0, utils_1.readContractAddresses)({
|
|
854
873
|
contractNames: [sdk_1.EContracts.MACI],
|
|
855
874
|
network: network?.name,
|
|
856
|
-
defaultAddresses: [
|
|
875
|
+
defaultAddresses: [args.maciAddress],
|
|
857
876
|
});
|
|
858
|
-
const coordinatorPrivateKey =
|
|
877
|
+
const coordinatorPrivateKey = args.privateKey || (await (0, utils_1.promptSensitiveValue)("Insert your MACI private key"));
|
|
859
878
|
await (0, sdk_1.generateMaciState)({
|
|
860
|
-
outputPath:
|
|
861
|
-
pollId:
|
|
879
|
+
outputPath: args.output.toString(),
|
|
880
|
+
pollId: args.pollId,
|
|
862
881
|
maciAddress,
|
|
863
882
|
coordinatorPrivateKey,
|
|
864
|
-
provider:
|
|
865
|
-
endBlock:
|
|
866
|
-
startBlock:
|
|
867
|
-
blockPerBatch:
|
|
868
|
-
transactionHash:
|
|
869
|
-
ipfsMessageBackupFiles:
|
|
870
|
-
sleep:
|
|
883
|
+
provider: args.rpcProvider,
|
|
884
|
+
endBlock: args.endBlock,
|
|
885
|
+
startBlock: args.startBlock,
|
|
886
|
+
blockPerBatch: args.blocksPerBatch,
|
|
887
|
+
transactionHash: args.transactionHash,
|
|
888
|
+
ipfsMessageBackupFiles: args.ipfsMessageBackupFiles,
|
|
889
|
+
sleep: args.sleep,
|
|
871
890
|
signer,
|
|
872
|
-
logsOutputPath:
|
|
891
|
+
logsOutputPath: args.logsOutput,
|
|
873
892
|
});
|
|
874
893
|
}
|
|
875
894
|
catch (error) {
|
|
@@ -884,20 +903,20 @@ program
|
|
|
884
903
|
.option("-q, --quiet <quiet>", "whether to print values to the console", (value) => value === "true", false)
|
|
885
904
|
.option("-r, --rpc-provider <provider>", "the rpc provider URL")
|
|
886
905
|
.option("-x, --maci-address <maciAddress>", "the MACI contract address")
|
|
887
|
-
.requiredOption("-f, --proof-dir <proofDir>", "the proof output directory from the
|
|
888
|
-
.action(async (
|
|
906
|
+
.requiredOption("-f, --proof-dir <proofDir>", "the proof output directory from the generateProofs subcommand")
|
|
907
|
+
.action(async (args) => {
|
|
889
908
|
try {
|
|
890
909
|
const signer = await getSigner();
|
|
891
910
|
const network = await signer.provider?.getNetwork();
|
|
892
911
|
const [maciAddress] = (0, utils_1.readContractAddresses)({
|
|
893
912
|
contractNames: [sdk_1.EContracts.MACI],
|
|
894
913
|
network: network?.name,
|
|
895
|
-
defaultAddresses: [
|
|
914
|
+
defaultAddresses: [args.maciAddress],
|
|
896
915
|
});
|
|
897
916
|
await (0, sdk_1.proveOnChain)({
|
|
898
|
-
pollId:
|
|
899
|
-
tallyFile:
|
|
900
|
-
proofDir:
|
|
917
|
+
pollId: args.pollId,
|
|
918
|
+
tallyFile: args.tallyFile,
|
|
919
|
+
proofDir: args.proofDir,
|
|
901
920
|
maciAddress,
|
|
902
921
|
signer,
|
|
903
922
|
});
|