generated from Borodutch/smart-contract-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add entanglements and bump dependencies
- Loading branch information
1 parent
be56c5a
commit 484d95a
Showing
10 changed files
with
1,338 additions
and
5,745 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
532 changes: 266 additions & 266 deletions
532
.yarn/releases/yarn-3.5.0.cjs → .yarn/releases/yarn-3.5.1.cjs
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
// ,-, | ||
// * . /.( . | ||
// \|/ \ { | ||
// . _ . , . -*- . `-` | ||
// ,'-. * / \_ * / \_ /|\ * /\'__ *. * | ||
// (____". / \ / \, __ . _/ / \ * . . | ||
// . /\/\ /\/ :' __ \_ / \ _^/ ^/ `—./\ /\ . | ||
// * _ / \/ \ _/ \-‘\/ ` \ /\ /.' ^_ \_ .’\\ /_/\ ,'-. | ||
// /_\ /\ .- `. \/ \ /. / \ ;. _/ \ -. `_/ \/. \ _ (____". * | ||
// . / \ / `-.__ ^ / .-'.--\ - \/ _ `--./ .-' `-/. \ / \ . | ||
// / /. `. / / `. / ` .-' '-._ `._ /. \ | ||
// ~._,-'2_,-'2_,-'2_,-'2_,-'2_,-'2_,-'2_,-'2_,-'2_,-'2_,-'2_,-'2_,-'2_,-'2_,-'2_,-'2_,-'2_,-'2_,-' | ||
// ~~~~~~~ ~~~~~~~ ~~~~~~~ ~~~~~~~ ~~~~~~~ ~~~~~~~ ~~~~~~~ ~~~~~~~ ~~~~~~~ ~~~~~~~ ~~~~~~~ ~~~~~~~~ | ||
// ~~ ~~~~ ~~~~ ~~~~ ~~~~ ~~~~ ~~~~ ~~~~ ~~~~ ~~~~ ~~~~ ~~~~ ~~ | ||
// ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ ~~ | ||
// ๐ | ||
// _ | ||
// ₒ ><_> | ||
// _______ __ _______ | ||
// .-' | _ "\ |" \ /" _ "| ๐ | ||
// '--./ / _.---. (. |_) :) || | (: ( \___) | ||
// '-, (__..-` \ |: \/ |: | \/ \ | ||
// \ . | (| _ \\ |. | // \ ___ | ||
// `,.__. ,__.--/ |: |_) :) |\ | (: _( _| | ||
// '._/_.'___.-` (_______/ |__\| \_______) ๐ | ||
// | ||
// __ __ ___ __ __ __ ___ _______ | ||
// |" |/ \| "| /" | | "\ /""\ |" | /" "| | ||
// ๐ |' / \: |(: (__) :) / \ || | (: ______) | ||
// |: /' | \/ \/ /' /\ \ |: | ₒ \/ | | ||
// \// /\' | // __ \\ // __' \ \ |___ // ___)_ | ||
// / / \\ |(: ( ) :) / / \\ \ ( \_|: \ (: "| | ||
// |___/ \___| \__| |__/ (___/ \___) \_______) \_______) | ||
// ₒ৹ | ||
// ___ __ _______ ________ | ||
// _ |" | ₒ /""\ | _ "\ /" ) | ||
// ><_> || | / \ (. |_) :) (: \___/ | ||
// |: | /' /\ \ |: \/ \___ \ | ||
// \ |___ // __' \ (| _ \\ __/ \\ \_____)\_____ | ||
// ( \_|: \ / / \\ \ |: |_) :) /" \ :) /--v____ __`< | ||
// \_______) (___/ \___)(_______/ (_______/ )/ | ||
// ' | ||
// | ||
// ๐ . ' , ₒ | ||
// ₒ _______ | ||
// ____ .`_|___|_`. ____ | ||
// \ \ / / ₒ৹ | ||
// \ ' / ๐ | ||
// ₒ \/ | ||
// ₒ / \ ) ( | ||
// ( ₒ৹ ( ( ) | ||
// ) ) _ ) ) ( | ||
// ( ) ( ( ><_> ( ( ( ) | ||
// ) ) ( ( ) ) ) ) ) ) ( | ||
// ( ( ) ) ( ( ( ( ( ( ) | ||
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.20; | ||
|
||
interface IPasswordCheckerVerifier { | ||
function verifyProof( | ||
uint[2] memory a, | ||
uint[2][2] memory b, | ||
uint[2] memory c, | ||
// attestation type | ||
// nullifier | ||
// entanglement merkle root | ||
uint[3] memory input | ||
) external view returns (bool r); | ||
} |
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.