Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
77e23a2
feat(ethexe/contracts): add gas benchmarks
StackOverflowExcept1on Feb 12, 2026
4621d04
update jsons
StackOverflowExcept1on Feb 12, 2026
b0a1df1
fix review
StackOverflowExcept1on Feb 12, 2026
b923993
update jsons
StackOverflowExcept1on Feb 12, 2026
9e2e82c
Merge remote-tracking branch 'origin/master' into av/ethexe-contracts…
StackOverflowExcept1on Feb 23, 2026
2b6a64c
add initial code to simulate transactions using revm
StackOverflowExcept1on Feb 23, 2026
7a3571c
add inspector for execution tracing, switching between the instrument…
StackOverflowExcept1on Mar 1, 2026
342e924
Merge remote-tracking branch 'origin/master' into av/ethexe-contracts…
StackOverflowExcept1on Mar 1, 2026
40b3a0a
fix ci
StackOverflowExcept1on Mar 1, 2026
39525f4
add various improvements to gas metering
StackOverflowExcept1on Mar 2, 2026
b03cd45
Merge remote-tracking branch 'origin/master' into av/ethexe-contracts…
StackOverflowExcept1on Mar 2, 2026
74e7811
add some changes with balances and execution
StackOverflowExcept1on Mar 3, 2026
aef82b7
Merge remote-tracking branch 'origin/master' into av/ethexe-contracts…
StackOverflowExcept1on Mar 3, 2026
9144c0c
Merge remote-tracking branch 'origin/master' into av/ethexe-contracts…
StackOverflowExcept1on Mar 5, 2026
87cd83e
refactor
StackOverflowExcept1on Mar 5, 2026
099e3e8
move some logic to router module, add more gas methods to context
StackOverflowExcept1on Mar 5, 2026
8a8ffee
fix clippy
StackOverflowExcept1on Mar 5, 2026
2738519
finalize implementation
StackOverflowExcept1on Mar 6, 2026
a0d6977
Merge remote-tracking branch 'origin/master' into av/ethexe-contracts…
StackOverflowExcept1on Mar 6, 2026
9a16e7d
fix gemini review about rust code
StackOverflowExcept1on Mar 6, 2026
159f345
Merge remote-tracking branch 'origin/master' into av/ethexe-contracts…
StackOverflowExcept1on Mar 11, 2026
7978a7d
fix UUPS proxy
StackOverflowExcept1on Mar 11, 2026
078e82e
Merge remote-tracking branch 'origin/master' into av/ethexe-contracts…
StackOverflowExcept1on Mar 15, 2026
8cde8f2
Merge remote-tracking branch 'origin/master' into av/ethexe-contracts…
StackOverflowExcept1on Mar 23, 2026
588eba7
move to /instrumented, add auto-patch
StackOverflowExcept1on Mar 25, 2026
e16c11b
Merge remote-tracking branch 'origin/master' into av/ethexe-contracts…
StackOverflowExcept1on Mar 25, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@ jobs:
cp ./ethexe/contracts/out/POAMiddleware.sol/POAMiddleware.json ./ethexe/ethereum/abi
cp ./ethexe/contracts/out/Middleware.sol/Middleware.json ./ethexe/ethereum/abi
cp ./ethexe/contracts/out/Mirror.sol/Mirror.json ./ethexe/ethereum/abi
cp ./ethexe/contracts/out/MirrorWithInstrumentation.sol/MirrorWithInstrumentation.json ./ethexe/ethereum/abi
cp ./ethexe/contracts/out/Router.sol/Router.json ./ethexe/ethereum/abi
cp ./ethexe/contracts/out/RouterWithInstrumentation.sol/RouterWithInstrumentation.json ./ethexe/ethereum/abi
cp ./ethexe/contracts/out/ERC1967Proxy.sol/ERC1967Proxy.json ./ethexe/ethereum/abi
cp ./ethexe/contracts/out/WrappedVara.sol/WrappedVara.json ./ethexe/ethereum/abi
cp ./ethexe/contracts/out/BatchMulticall.sol/BatchMulticall.json ./ethexe/ethereum/abi
Expand Down
Loading
Loading