-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move hc contracts #12
Merged
Merged
Conversation
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
Updates deployer to find the new paths, and to import ABI json from the Forge build rather than compiling in Python. Changes to be committed: modified: Cargo.lock modified: crates/types/contracts/hc_scripts/ExampleDeploy.s.sol modified: crates/types/contracts/hc_scripts/LocalDeploy.s.sol modified: crates/types/contracts/lib/account-abstraction-versions/v0_6 new file: crates/types/contracts/src/hc0_6/HCHelper.sol new file: crates/types/contracts/src/hc0_6/HybridAccount.sol new file: crates/types/contracts/src/hc0_6/HybridAccountFactory.sol new file: crates/types/contracts/src/hc0_6/TestAuctionSystem.sol new file: crates/types/contracts/src/hc0_6/TestCaptcha.sol new file: crates/types/contracts/src/hc0_6/TestHybrid.sol new file: crates/types/contracts/src/hc0_6/TestKyc.sol new file: crates/types/contracts/src/hc0_6/TestRainfallInsurance.sol new file: crates/types/contracts/src/hc0_6/TestSportsBetting.sol new file: crates/types/contracts/src/hc0_6/TestTokenPrice.sol modified: crates/types/contracts/src/v0_6/imports.sol modified: hybrid-compute/deploy-local.py
Changes to be committed: modified: hybrid-compute/Dockerfile.offchain-rpc
Changes to be committed: modified: .gitmodules
Changes to be committed: modified: hybrid-compute/deploy-local.py modified: hybrid-compute/offchain/userop.py modified: hybrid-compute/offchain/userop_utils.py
Changes to be committed: modified: deploy-local.py
Changes to be committed: new file: requirements.txt
Changes to be committed: modified: Cargo.lock
(which deprecated certain keywords). The exceptions should be audited and compared with upstream to ensure they are appropriate. Changes to be committed: modified: deny.toml
mmontour1306
force-pushed
the
move-hc-contracts
branch
from
October 17, 2024 21:49
d219262
to
1246b72
Compare
Changes to be committed: modified: crates/types/src/timestamp.rs
wsdt
approved these changes
Oct 18, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Moves the HC contracts out of the bobanetwork/account-abstraction-hc repo, so that we can import a clean upstream version of the repo. Updated the deployer to find contracts in the new location, and to use .json files from Foundry rather than building contracts locally with solcx.