Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
## Addresses

- ECDSA Signer : 0x6A6F069E2a08c2468e7724Ab3250CdBFBA14D4FF
- Webauthn signer : 0x615d8641B6Ce9406DE7c3C01f57c552Ab3A96f83
- Webauthn signer : 0x65DEeC8fEe717dc044D0CFD63cCf55F02cCaC2b3
- Call policy : 0x9a52283276a0ec8740df50bf01b28a80d880eaf2
- Call policy (Deprecated) : 0xe4Fec84B7B002273ecC86baa65a831ddB92d30a8
- Gas policy : 0xaeFC5AbC67FfD258abD0A3E54f65E70326F84b23
- RateLimit policy : 0xf63d4139B25c836334edD76641356c6b74C86873
- Signature policy : 0xF6A936c88D97E6fad13b98d2FD731Ff17eeD591d
- Sudo policy : 0x67b436caD8a6D025DF6C82C5BB43fbF11fC5B9B7
- Timestamp policy : 0xB9f8f524bE6EcD8C945b1b87f9ae5C192FdCE20F
- Webauthn Validator : 0xD990393C670dCcE8b4d8F858FB98c9912dBFAa06
- Webauthn Validator : 0x7ab16Ff354AcB328452F1D445b3Ddee9a91e9e69
- Recovery Action : 0xe884C2868CC82c16177eC73a93f7D9E6F3A5DC6E
- Only EntryPoint Hook : 0xb230f0A1C7C95fa11001647383c8C7a8F316b900
3 changes: 2 additions & 1 deletion signers/webauthn/src/WebAuthn.sol
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,8 @@ library WebAuthn {

// if responseTypeLocation is set to max, it means the signature is a dummy signature
if (responseTypeLocation == type(uint256).max) {
return P256.verifySignature(messageHash, r, s, x, y, false);
P256.verifySignature(messageHash, r, s, x, y, false);
return false;
}

bool verified = P256.verifySignature(messageHash, r, s, x, y, usePrecompiled);
Expand Down
3 changes: 2 additions & 1 deletion validators/webauthn/src/WebAuthn.sol
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,8 @@ library WebAuthn {

// if responseTypeLocation is set to max, it means the signature is a dummy signature
if (responseTypeLocation == type(uint256).max) {
return P256.verifySignature(messageHash, r, s, x, y, false);
P256.verifySignature(messageHash, r, s, x, y, false);
return false;
}

bool verified = P256.verifySignature(messageHash, r, s, x, y, usePrecompiled);
Expand Down