Skip to content

Commit

Permalink
start on full interop
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrostr committed Sep 7, 2024
1 parent 658fd98 commit 7f892c4
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions packages/foundry/contracts/FairDrop.sol
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,16 @@ contract FairDrop {
/// @param _appId The World ID app ID
/// @param _actionId The World ID action ID
constructor(
IWorldID _worldId,
address _worldId,
string memory _appId,
string memory _actionId
string memory _actionId,
address _wormhole
) {
worldId = _worldId;
worldId = IWorldID(_worldId);
externalNullifier = abi.encodePacked(
abi.encodePacked(_appId).hashToField(), _actionId
).hashToField();
_wormhole;
}

/// @param signal An arbitrary input from the user, usually the user's wallet address (check README for further details)
Expand Down

0 comments on commit 7f892c4

Please sign in to comment.