forked from bluealloy/revm
-
Notifications
You must be signed in to change notification settings - Fork 0
Evm automation feature implementation #23
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
Draft
aregng
wants to merge
58
commits into
main
Choose a base branch
from
feature/evm_automation
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
58 commits
Select commit
Hold shift + click to select a range
6d145fe
Add support for EVM automation (#1)
zwu-supra 99c0fbc
add tx hash precompile to revm at 0x53555000
zwu-supra aa5b6b7
fmt
zwu-supra 0b818fa
add comment
zwu-supra 32ea8d8
modify precompile address from 0x53555000 to 0x53555001
zwu-supra 81854bd
modify another place to modify precompile address from 0x53555000 to …
zwu-supra 84e95b1
move address of TX_HASH precompile as constant to a separate file and…
zwu-supra a6a3b4c
added smart contracts, scripts and tests for multisig
udityadav-supraoracles 5e19940
-fixed deployContract to allow deployment using multisig as msg.sender
udityadav-supraoracles 0aa778e
added test cases for receive
udityadav-supraoracles b5ec7e1
-resolved PR comments
udityadav-supraoracles ebe93a8
moved Counter to tests
udityadav-supraoracles 20a55b8
Renamed solidity/automation_registry -> solidity/supra_contracts
dacec73
Added missing files for build and tests
6c1f3ce
added erc20Supra smart contract and test cases
udityadav-supraoracles c5e6b37
moved SC and tests to supra_contracts
45a9683
added BlockMeta smart contract
udityadav-supraoracles e1bc7c9
updated blockPrologue
udityadav-supraoracles 47f0ac3
added test cases for blockmeta
udityadav-supraoracles c0ca334
added deployment script for BlockMeta
udityadav-supraoracles 779d2b9
Broke dependency between BlockMeta and AutomationRegsitry/Controller
2ccf370
updated .gitignore and import statment in test file
udityadav-supraoracles aa18a22
updated .gitignore and some minor fixes
udityadav-supraoracles e286a73
updated .gitignore and added deployment script
udityadav-supraoracles 1e11d5e
renamed test file
udityadav-supraoracles d3b7643
Merge pull request #3 from Entropy-Foundation/z/add_tx_hash_precompil…
aregng 69db948
renamed events and functions
udityadav-supraoracles 18ab4eb
-updated commonutils
udityadav-supraoracles fa6c0fb
updated Counter and tests associated with it
udityadav-supraoracles 5a1d6dc
updated comments
udityadav-supraoracles 38d1d17
added transaction deletion
udityadav-supraoracles 42cf882
updated to remove expired txs
udityadav-supraoracles b68bdc5
renamed test cases
udityadav-supraoracles 2e0eb34
Multisignature Wallet (#8)
udityadav-supraoracles 3c3ecc8
Merge branch 'feature/multisig' into feature/erc20Supra
udityadav-supraoracles e0d6558
Merge branch 'feature/erc20Supra' into feature/blockmeta
udityadav-supraoracles 40c2b56
Applies the changes from feature/erc20 supra (#12)
udityadav-supraoracles b77314e
added function to validate contract address in commonutils
udityadav-supraoracles afe850a
updated blockmeta to allow execution order
udityadav-supraoracles 78bf5ab
fixed test cases and updated events
udityadav-supraoracles a7cba23
updated blockmeta to use only array
udityadav-supraoracles 5836672
Merge remote-tracking branch 'origin/feature/evm_automation' into fea…
8932637
added test cases
udityadav-supraoracles cbd70d6
added test for blockPrologue function
udityadav-supraoracles 3fe1c80
Merge pull request #7 from Entropy-Foundation/feature/blockmeta
aregng dcbf25d
Function to allow native to Erc20Supra with allowance (#13)
udityadav-supraoracles c6fd701
Includes smart contracts, libraries, scripts and tests required by au…
udityadav-supraoracles 4e33d2a
[EAN-Issue-2529] Added automation and block metadata transactions (#15)
aregng 004799b
[EAN-Issue-2629] Means to generate transaction data to deploy supra-e…
aregng 762bf5b
Updated to required solc version to be 0.8.27+
08f0beb
[EAN-Issue-2528] Updated supra-contract bindings to meat registry sta…
aregng 5369c3e
[EAN-Issue-2531] Updated supra-extensions and bindings to support evm…
aregng cb70458
[Evm Auto] Embedded compiled bytecodes of the contracts in generator …
aregng 4ebdfdc
[Evm-Issue-2527] Updated transaction fee deduction logic (#19)
aregng 50f1707
Diamond Proxy pattern based smart contracts (#16)
udityadav-supraoracles bebea93
[EAN-Issue-2531] Updated supra-extensions to support new automation-r…
aregng 1b77a47
[EAN-Issue-2648] Automation task support with seperate predicate (#22)
aregng 1c20f3e
Updated AutomationRecordAction and added unit tests (#24)
aregng File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| [submodule "solidity/supra_contracts/lib/openzeppelin-contracts"] | ||
| path = solidity/supra_contracts/lib/openzeppelin-contracts | ||
| url = https://github.com/OpenZeppelin/openzeppelin-contracts | ||
| [submodule "solidity/supra_contracts/lib/openzeppelin-contracts-upgradeable"] | ||
| path = solidity/supra_contracts/lib/openzeppelin-contracts-upgradeable | ||
| url = https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable | ||
| [submodule "solidity/supra_contracts/lib/forge-std"] | ||
| path = solidity/supra_contracts/lib/forge-std | ||
| url = https://github.com/foundry-rs/forge-std | ||
| [submodule "solidity/supranova"] | ||
| path = solidity/supranova | ||
| url = ssh://git@github.com/Entropy-Foundation/supranova-contracts-private.git | ||
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a private repo. Is any of the code currently leaking into this one? If we want to keep this dependency then we need to provide a way for users to access the compiled code from this repo without exposing the source code. Otherwise, we need to consider splitting the related code out into another private repo (since I'm guessing it's just related to genesis, we should be able to do this).