1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
pub mod genesis;
pub use genesis::*;
impl_params_remote!(
PoswSNARKPKParameters,
posw_snark_pk_test,
"https://s3-us-west-1.amazonaws.com/aleo.parameters",
"./",
"posw_snark_pk",
172512528
);
impl_params_local!(PoswSNARKVKParameters, posw_snark_vk_test, "./", "posw_snark_vk", 40807);
impl_params_local!(
NoopProgramSNARKPKParameters,
noop_program_snark_pk_test,
"./",
"noop_program_snark_pk",
348514
);
impl_params_local!(
NoopProgramSNARKVKParameters,
noop_program_snark_vk_test,
"./",
"noop_program_snark_vk",
1068
);
impl_params_remote!(
InnerSNARKPKParameters,
inner_snark_pk_test,
"https://s3-us-west-1.amazonaws.com/aleo.parameters",
"./",
"inner_snark_pk",
250108401
);
impl_params_local!(
InnerSNARKVKParameters,
inner_snark_vk_test,
"./",
"inner_snark_vk",
2329
);
impl_params_remote!(
OuterSNARKPKParameters,
outer_snark_pk_test,
"https://s3-us-west-1.amazonaws.com/aleo.parameters",
"./",
"outer_snark_pk",
502942005
);
impl_params_local!(
OuterSNARKVKParameters,
outer_snark_vk_test,
"./",
"outer_snark_vk",
4443
);