Skip to content

Commit

Permalink
Merge pull request #20 from zsluedem/update-module
Browse files Browse the repository at this point in the history
[Easy]update account abstraction submodule
  • Loading branch information
Vid201 authored Nov 28, 2022
2 parents 05f48bf + 6044113 commit b86dbe1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/contracts/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use ethers::prelude::*;

abigen!(
AggregatedWallet,
"$OUT_DIR/IAggregatedWallet.sol/IAggregatedWallet.json"
"$OUT_DIR/IAggregatedAccount.sol/IAggregatedAccount.json"
);

abigen!(Aggregator, "$OUT_DIR/IAggregator.sol/IAggregator.json");
Expand All @@ -21,7 +21,7 @@ abigen!(
"$OUT_DIR/IStakeManager.sol/IStakeManager.json"
);

abigen!(Wallet, "$OUT_DIR/IWallet.sol/IWallet.json");
abigen!(Wallet, "$OUT_DIR/IAccount.sol/IAccount.json");

abigen!(
UserOperation,
Expand Down
2 changes: 1 addition & 1 deletion thirdparty/account-abstraction
Submodule account-abstraction updated 41 files
+12 −12 contracts/bls/BLSAccount.sol
+9 −9 contracts/bls/BLSSignatureAggregator.sol
+3 −3 contracts/bls/IBLSAccount.sol
+21 −21 contracts/core/BaseAccount.sol
+26 −26 contracts/core/EntryPoint.sol
+2 −2 contracts/core/SenderCreator.sol
+1 −1 contracts/core/StakeManager.sol
+2 −2 contracts/gnosis/EIP4337Fallback.sol
+11 −11 contracts/gnosis/EIP4337Manager.sol
+4 −4 contracts/interfaces/IAccount.sol
+5 −5 contracts/interfaces/IAggregatedAccount.sol
+2 −2 contracts/interfaces/IAggregator.sol
+10 −10 contracts/interfaces/IEntryPoint.sol
+1 −1 contracts/interfaces/IStakeManager.sol
+15 −13 contracts/samples/SimpleAccount.sol
+38 −0 contracts/samples/SimpleAccountDeployer.sol
+4 −4 contracts/samples/SimpleAccountForTokens.sol
+0 −38 contracts/samples/SimpleWalletDeployer.sol
+7 −7 contracts/samples/TestAggregatedAccount.sol
+2 −2 contracts/samples/TestSignatureAggregator.sol
+9 −9 contracts/samples/TokenPaymaster.sol
+5 −2 contracts/samples/VerifyingPaymaster.sol
+1 −1 contracts/test/TestCounter.sol
+6 −6 contracts/test/TestExpiryAccount.sol
+52 −52 eip/EIPS/eip-4337.md
+1 −1 gascalc/1-simple-wallet.gas.ts
+59 −59 gascalc/GasChecker.ts
+1 −1 hardhat.config.ts
+16 −16 reports/gas-checker.txt
+20 −20 src/AASigner.ts
+7 −7 src/runop.ts
+3 −3 test/UserOp.ts
+36 −36 test/deposit-paymaster.test.ts
+174 −174 test/entrypoint.test.ts
+6 −6 test/gnosis.test.ts
+59 −59 test/paymaster.test.ts
+27 −27 test/simple-wallet.test.ts
+16 −16 test/testutils.ts
+15 −15 test/verifying_paymaster.test.ts
+17 −17 test/y.bls.test.ts
+38 −38 test/z-batch.test.ts

0 comments on commit b86dbe1

Please sign in to comment.