Skip to content

Commit

Permalink
feat: honk verifier
Browse files Browse the repository at this point in the history
  • Loading branch information
Maddiaa0 committed Apr 1, 2024
1 parent 4c08a9f commit beb59da
Show file tree
Hide file tree
Showing 17 changed files with 2,223 additions and 38 deletions.
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
[submodule "lib/forge-std"]
path = lib/forge-std
url = https://github.com/foundry-rs/forge-std
[submodule "barretenberg/sol/lib/openzeppelin-contracts"]
path = lib/openzeppelin-contracts
url = https://github.com/OpenZeppelin/openzeppelin-contracts
[submodule "lib/openzeppelin-contracts"]
path = lib/openzeppelin-contracts
url = https://github.com/OpenZeppelin/openzeppelin-contracts
1 change: 1 addition & 0 deletions lib/openzeppelin-contracts
Submodule openzeppelin-contracts added at dbb610
1 change: 1 addition & 0 deletions lib/solidity-stringutils
Submodule solidity-stringutils added at 4b2fcc
1 change: 1 addition & 0 deletions remappings.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@openzeppelin/=lib/openzeppelin-contracts/
14 changes: 0 additions & 14 deletions src/Counter.sol

This file was deleted.

5 changes: 5 additions & 0 deletions src/interfaces/IVerifier.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pragma solidity >=0.8.21;

interface IVerifier {
function verify(bytes calldata _proof, bytes32[] calldata _publicInputs) external view returns (bool);
}
Loading

0 comments on commit beb59da

Please sign in to comment.