File tree
19 files changed
+270
-80
lines changed- lib
- test/account
- modules
- paymaster
19 files changed
+270
-80
lines changedLines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
30 | 30 |
| |
31 | 31 |
| |
32 | 32 |
| |
| 33 | + | |
33 | 34 |
| |
34 | 35 |
| |
35 | 36 |
| |
36 |
| - | |
37 | 37 |
| |
38 | 38 |
| |
39 | 39 |
| |
|
Submodule @openzeppelin-contracts updated 55 files
- .changeset/angry-waves-film.md+5
- .changeset/fast-beans-pull.md+5
- .changeset/petite-seas-shake.md+5
- .changeset/tender-dolls-nail.md+5
- .changeset/whole-cats-find.md+5
- contracts/mocks/account/AccountMock.sol+12
- contracts/utils/Bytes.sol+15-1
- contracts/utils/cryptography/README.adoc+7-1
- contracts/utils/cryptography/SignatureChecker.sol+1-1
- contracts/utils/cryptography/WebAuthn.sol+260
- contracts/utils/cryptography/signers/SignerWebAuthn.sol+50
- contracts/utils/cryptography/verifiers/ERC7913P256Verifier.sol+1-1
- contracts/utils/cryptography/verifiers/ERC7913RSAVerifier.sol+1-1
- contracts/utils/cryptography/verifiers/ERC7913WebAuthnVerifier.sol+32
- contracts/utils/math/Math.sol+7
- foundry.toml+1-1
- fv-requirements.txt+1-1
- hardhat.config.js+1
- hardhat/common-contracts.js-69
- package-lock.json+250-66
- package.json+4-3
- test/account/Account.behavior.js+4-4
- test/account/Account.test.js+2-2
- test/account/AccountECDSA.test.js+2-2
- test/account/AccountERC7702.t.sol+12-2
- test/account/AccountERC7702.test.js+2-2
- test/account/AccountERC7913.test.js+25-3
- test/account/AccountMultiSigner.test.js+2-2
- test/account/AccountMultiSignerWeighted.test.js+2-2
- test/account/AccountP256.test.js+2-2
- test/account/AccountRSA.test.js+2-2
- test/account/AccountWebAuthn.test.js+88
- test/account/examples/AccountERC7702WithModulesMock.test.js+2-2
- test/account/extensions/AccountERC7579.behavior.js+5-5
- test/account/extensions/AccountERC7579.test.js+2-2
- test/account/extensions/AccountERC7579Hooked.test.js+2-2
- test/account/extensions/ERC7821.behavior.js+8-8
- test/account/utils/draft-ERC4337Utils.test.js+4-4
- test/account/utils/draft-ERC7579Utils.t.sol+10-2
- test/bin/EntryPoint070.abi-1
- test/bin/EntryPoint070.bytecode
- test/bin/EntryPoint080.abi-1
- test/bin/EntryPoint080.bytecode
- test/bin/SenderCreator070.abi-1
- test/bin/SenderCreator070.bytecode
- test/bin/SenderCreator080.abi-1
- test/bin/SenderCreator080.bytecode
- test/helpers/erc4337.js+3-3
- test/helpers/signers.js+86-48
- test/utils/Blockhash.test.js+3-3
- test/utils/Bytes.t.sol+28
- test/utils/Bytes.test.js+87
- test/utils/cryptography/WebAuthn.t.sol+297
- test/utils/math/Math.t.sol+19
- test/utils/math/Math.test.js+33
Submodule @openzeppelin-contracts-upgradeable updated 51 files
- .changeset/angry-waves-film.md+5
- .changeset/fast-beans-pull.md+5
- .changeset/petite-seas-shake.md+5
- .changeset/tender-dolls-nail.md+5
- .changeset/whole-cats-find.md+5
- contracts/mocks/WithInit.sol+21
- contracts/mocks/account/AccountMockUpgradeable.sol+17
- contracts/utils/cryptography/README.adoc+7-1
- contracts/utils/cryptography/signers/SignerWebAuthnUpgradeable.sol+56
- contracts/utils/cryptography/verifiers/ERC7913WebAuthnVerifierUpgradeable.sol+38
- foundry.toml+1-1
- fv-requirements.txt+1-1
- hardhat.config.js+1
- hardhat/common-contracts.js-69
- lib/openzeppelin-contracts+1-1
- package-lock.json+250-66
- package.json+4-3
- test/account/Account.behavior.js+4-4
- test/account/Account.test.js+2-2
- test/account/AccountECDSA.test.js+2-2
- test/account/AccountERC7702.t.sol+12-2
- test/account/AccountERC7702.test.js+2-2
- test/account/AccountERC7913.test.js+25-3
- test/account/AccountMultiSigner.test.js+2-2
- test/account/AccountMultiSignerWeighted.test.js+2-2
- test/account/AccountP256.test.js+2-2
- test/account/AccountRSA.test.js+2-2
- test/account/AccountWebAuthn.test.js+88
- test/account/examples/AccountERC7702WithModulesMock.test.js+2-2
- test/account/extensions/AccountERC7579.behavior.js+5-5
- test/account/extensions/AccountERC7579.test.js+2-2
- test/account/extensions/AccountERC7579Hooked.test.js+2-2
- test/account/extensions/ERC7821.behavior.js+8-8
- test/account/utils/draft-ERC4337Utils.test.js+4-4
- test/account/utils/draft-ERC7579Utils.t.sol+10-2
- test/bin/EntryPoint070.abi-1
- test/bin/EntryPoint070.bytecode
- test/bin/EntryPoint080.abi-1
- test/bin/EntryPoint080.bytecode
- test/bin/SenderCreator070.abi-1
- test/bin/SenderCreator070.bytecode
- test/bin/SenderCreator080.abi-1
- test/bin/SenderCreator080.bytecode
- test/helpers/erc4337.js+3-3
- test/helpers/signers.js+86-48
- test/utils/Blockhash.test.js+3-3
- test/utils/Bytes.t.sol+28
- test/utils/Bytes.test.js+87
- test/utils/cryptography/WebAuthn.t.sol+297
- test/utils/math/Math.t.sol+19
- test/utils/math/Math.test.js+33
Lines changed: 173 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + | |
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
| |||
26 | 26 |
| |
27 | 27 |
| |
28 | 28 |
| |
29 |
| - | |
| 29 | + | |
30 | 30 |
| |
31 | 31 |
| |
32 | 32 |
| |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + | |
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
| |||
34 | 34 |
| |
35 | 35 |
| |
36 | 36 |
| |
37 |
| - | |
| 37 | + | |
38 | 38 |
| |
39 | 39 |
| |
40 | 40 |
| |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + | |
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
| |||
33 | 33 |
| |
34 | 34 |
| |
35 | 35 |
| |
36 |
| - | |
| 36 | + | |
37 | 37 |
| |
38 | 38 |
| |
39 | 39 |
| |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + | |
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
| |||
41 | 41 |
| |
42 | 42 |
| |
43 | 43 |
| |
44 |
| - | |
| 44 | + | |
45 | 45 |
| |
46 | 46 |
| |
47 | 47 |
| |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + | |
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
| |||
30 | 30 |
| |
31 | 31 |
| |
32 | 32 |
| |
33 |
| - | |
| 33 | + | |
34 | 34 |
| |
35 | 35 |
| |
36 | 36 |
| |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + | |
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
| |||
40 | 40 |
| |
41 | 41 |
| |
42 | 42 |
| |
43 |
| - | |
| 43 | + | |
44 | 44 |
| |
45 | 45 |
| |
46 | 46 |
| |
|
0 commit comments