Skip to content

Commit

Permalink
Merge pull request #142 from worldcoin/kit/iworldid-vcp
Browse files Browse the repository at this point in the history
Add `verifyCompressedProof()` to `IWorldID`
  • Loading branch information
0xKitsune authored Jan 23, 2025
2 parents 5d7d341 + 6e15438 commit 3e3687c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/interfaces/IWorldID.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,12 @@ interface IWorldID {
uint256 externalNullifierHash,
uint256[8] calldata proof
) external;

function verifyCompressedProof(
uint256 root,
uint256 signalHash,
uint256 nullifierHash,
uint256 externalNullifierHash,
uint256[4] calldata compressedProof
) external view;
}

0 comments on commit 3e3687c

Please sign in to comment.