-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing/Adding Prover to make it compatible with Go node (#36)
* serialize ssz instead of json * config files for mainnet * update gen verifier justcommands * CLI main testnet -> mainnet * gen verifier for agg cirguit * Debugging the aggregation verifier contract failing to generate * fmt * we need to pass witness in? * un commit some configs * update contracts. NOTE: I think committee_update contract might be borked... look at the number of pubinputs * update deps * add step mainnet config * print path to pk when fails to find * mainnet agg config * update moreconfigs * attempt to get logging working * axum tracing * enable tower log * update other deps * jsonrpc logging * update jsonrpc_v2 * good kids handle errors * serialize as lowercase for consistancy * clean some deps --------- Co-authored-by: Ubuntu <[email protected]>
- Loading branch information
Showing
12 changed files
with
154 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,4 +28,4 @@ | |
262133 | ||
] | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"params": { | ||
"k": 18, | ||
"num_advice_per_phase": [ | ||
12 | ||
], | ||
"num_fixed": 1, | ||
"num_lookup_advice_per_phase": [ | ||
1, | ||
0, | ||
0 | ||
], | ||
"lookup_bits": 8, | ||
"num_instance_columns": 1 | ||
}, | ||
"break_points": [ | ||
[ | ||
262134, | ||
262132, | ||
262134, | ||
262132, | ||
262133, | ||
262132, | ||
262132, | ||
262133, | ||
262132, | ||
262134, | ||
262133 | ||
] | ||
] | ||
} |
22 changes: 11 additions & 11 deletions
22
lightclient-circuits/config/committee_update_verifier_25.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"params": { | ||
"degree": 25, | ||
"num_advice": 1, | ||
"num_lookup_advice": 1, | ||
"num_fixed": 1, | ||
"lookup_bits": 8 | ||
}, | ||
"break_points": [ | ||
[] | ||
] | ||
} | ||
"params": { | ||
"degree": 25, | ||
"num_advice": 1, | ||
"num_lookup_advice": 1, | ||
"num_fixed": 1, | ||
"lookup_bits": 8 | ||
}, | ||
"break_points": [ | ||
[] | ||
] | ||
} |
12 changes: 12 additions & 0 deletions
12
lightclient-circuits/config/committee_update_verifier_mainnet.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"params": { | ||
"degree": 25, | ||
"num_advice": 1, | ||
"num_lookup_advice": 1, | ||
"num_fixed": 1, | ||
"lookup_bits": 8 | ||
}, | ||
"break_points": [ | ||
[] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"params": { | ||
"k": 22, | ||
"num_advice_per_phase": [ | ||
6 | ||
], | ||
"num_fixed": 1, | ||
"num_lookup_advice_per_phase": [ | ||
1, | ||
0, | ||
0 | ||
], | ||
"lookup_bits": 8, | ||
"num_instance_columns": 1 | ||
}, | ||
"break_points": [ | ||
[ | ||
4194292, | ||
4194294, | ||
4194292, | ||
4194293, | ||
4194293 | ||
] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.