-
Notifications
You must be signed in to change notification settings - Fork 28
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
chore: refactor invoke as wrapper #39
Closed
ArniStarkware
wants to merge
31
commits into
arni/refactor/account_tx_wrapper/deploy_account
from
arni/refactor/account_tx_wrapper/invoke
Closed
chore: refactor invoke as wrapper #39
ArniStarkware
wants to merge
31
commits into
arni/refactor/account_tx_wrapper/deploy_account
from
arni/refactor/account_tx_wrapper/invoke
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
fix(format): run format fix on all repo
chore: sync repos
chore: add committer
Signed-off-by: Dori Medini <dori@starkware.co>
* feature(ci): Identify which package need to be built according to file changed --------- Signed-off-by: Dori Medini <dori@starkware.co> Co-authored-by: Dori Medini <dori@starkware.co>
Signed-off-by: Dori Medini <dori@starkware.co>
* chore: fix ci to always compare changes against the target branch
* chore: copy all crates * chore: switch to local dependencies * chore: delete old papyrus_test_utils crate * chore: rename crate test_utils -> papyrus_test_utils * chore: fix RPCTransactio name in the mempool * chore: fix mockito deps in papyrus and gateway * chore: update cairo-* deps version * chore: update config and presets for mempool and papyrus * chore: rename default_config.json -> papyrus_default_config.json * chore: rustfmt * chore: reorg folders * chore: reorg folders * chore: fix unused deps * chore: update papyrus Dockerfile * chore: update scripts folder * chore: copy build_native_blockifier.sh * chore: copy BUILD and WORKSPACE files (from blockifier and committer) * chore: update papyrus non crates folders and files * chore: copy blockifier docs * chore: copy committer taplo.toml * chore: fix config tests * chore: copy blockifier docker file * fix: papyrus integration test runs only Papyrus related tests * chore: rename conflicting dump_config.rs files * chore: fix cargo doc errors * chore: fix CI * chore: small optimizations for the papyrus CI * chore: copy README files * chore: meld common repo files --------- Co-authored-by: alon.dotan <alon.dotan@starkware.co> Co-authored-by: Dan Brownstein <dan@starkware.co>
Signed-off-by: Dori Medini <dori@starkware.co>
Co-Authored-By: alon.dotan <alon.dotan@starkware.co>
Signed-off-by: Dori Medini <dori@starkware.co>
Signed-off-by: Dori Medini <dori@starkware.co>
…in-v0.13.2-into-main
…ange needed to pass the CI.
…to-main Dori/Merge main-v0.13.2 into main
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite. This stack of pull requests is managed by Graphite. Learn more about stacking. Join @ArniStarkware and the rest of your teammates on Graphite |
9 tasks
ArniStarkware
force-pushed
the
arni/refactor/account_tx_wrapper/deploy_account
branch
from
July 24, 2024 03:28
cfa14c3
to
7431abd
Compare
ArniStarkware
force-pushed
the
arni/refactor/account_tx_wrapper/invoke
branch
from
July 24, 2024 03:28
b53c810
to
df15a4b
Compare
ArniStarkware
force-pushed
the
arni/refactor/account_tx_wrapper/deploy_account
branch
from
July 25, 2024 10:34
7431abd
to
ff1164f
Compare
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Pull Request type
Please check the type of change your PR introduces:
What is the current behavior?
For internal invoke transaction, the data is inseparable from the implementation.
The data of
IntrnalInvokeTransaction
and ofInvokeTransaction
(on the blockifier) is duplicated.What is the new behavior?
InvokeTransaction
as a wrapper ofIntrnalInvokeTransaction
while keeping the implementation.Does this introduce a breaking change?
Other information
This change is