-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(OraklNode) Basic verification (#1352)
* wip * feat: reporter functionality to report with proofs * fix: update signature generation accordingly * fix: update based on feedback * test: update submission script to test sigs * fix: rename migration files, minor updates * feat: remove unused function * test: update chain test * fix: update migration code, update tests * fix: update dummy submission contract * fix: fix syntax err * fix: trim prefix on loading PK from string * fix: update based on feedback * fix: updates based on feedbacks * fix: update based on feedbacks * feat: concat proof from aggregator before storing
- Loading branch information
1 parent
e8ca713
commit 2694dc3
Showing
15 changed files
with
763 additions
and
126 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
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 @@ | ||
DROP TABLE IF EXISTS proofs; |
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,6 @@ | ||
CREATE TABLE IF NOT EXISTS proofs ( | ||
id SERIAL PRIMARY KEY, | ||
name TEXT NOT NULL, | ||
round INT8 NOT NULL, | ||
proof BYTEA | ||
) |
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.