-
Notifications
You must be signed in to change notification settings - Fork 0
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
Altda devnet monitoring #11
base: develop
Are you sure you want to change the base?
Commits on Oct 7, 2024
-
feat: add sol-style-malformed-require locally (ethereum-optimism#12340)
Adds sol-style-malformed-require to local semgrep and actually fixes the rule so that it works. Fixes a couple of findings that the rule found.
Configuration menu - View commit details
-
Copy full SHA for 981ee6a - Browse repository at this point
Copy the full SHA 981ee6aView commit details -
contracts-bedrock: cleanup
FeeVault
(ethereum-optimism#12338)* contracts-bedrock: cleanup `FeeVault` Updates the `FeeVault` to follow modern conventions used in the repo by moving to usage of interfaces rather than implementations. Also moves the `FeeVault` into the `L2` package as its only really useful on L2. This is meant to reduce the diff for the Stanard L2 Genesis by breaking up the refactor into its own small PR. * contracts: update semver-lock * semver-lock: fixup * cleanup: refactor * lint: fix * snapshots: regenerate * interface check: ignore fee vaults There is an issue with normalization of enums when they are return values
Configuration menu - View commit details
-
Copy full SHA for b460aa2 - Browse repository at this point
Copy the full SHA b460aa2View commit details -
contracts-bedrock: fixes
OptimismMintableERC721Factory
test (ethere……um-optimism#12306) * contracts-bedrock: fixes `OptimismMintableERC721Factory` test This contract is only used as a predeploy so it should be tested based on the L2 genesis generation setup. Ensures that the address is stored and labeled as part of in memory test setup, as well as updates the tests to work based on the predeploy. This is a small refactor to make future Standard L2 genesis work more simple. Also includes a small ABI fix to the `OptimismMintableERC721Factory` since this contract has not been updated to decouple immutable naming conventions from its ABI. * snapshots: update * checks: fix * lint: fix * typo: fix
Configuration menu - View commit details
-
Copy full SHA for 35bbd80 - Browse repository at this point
Copy the full SHA 35bbd80View commit details -
feat: add sol-style-malformed-revert locally (ethereum-optimism#12341)
Adds sol-style-malformed-revert to local semgrep and fixes the rule so that it actually works. Fixes a couple of findings that the updated rule discovered.
Configuration menu - View commit details
-
Copy full SHA for 6d874d5 - Browse repository at this point
Copy the full SHA 6d874d5View commit details -
feat(ct): add checks for unused imports (ethereum-optimism#12348)
A few things in this commit: - Adds a new check for unused imports in contracts - Cleans up contracts based on that check - Removes several files that aren't being used anymore
Configuration menu - View commit details
-
Copy full SHA for fb8ac6b - Browse repository at this point
Copy the full SHA fb8ac6bView commit details -
Configuration menu - View commit details
-
Copy full SHA for a85ff0a - Browse repository at this point
Copy the full SHA a85ff0aView commit details -
fix(ci): add unused imports check to ci (ethereum-optimism#12360)
Adds the Solidity unused imports check to ci.
Configuration menu - View commit details
-
Copy full SHA for 77c91d0 - Browse repository at this point
Copy the full SHA 77c91d0View commit details -
fix(ci): add MIPSInstructions as exception (ethereum-optimism#12361)
Adds MIPSInstructions as an exception to malformed require.
Configuration menu - View commit details
-
Copy full SHA for b4171c3 - Browse repository at this point
Copy the full SHA b4171c3View commit details -
OPCM: DepolyOPChain additional testing checks. (ethereum-optimism#12355)
* OPCM: DepolyOPChain additional testing checks. * fix: absolute prestate. * fix: adding to assertions. * fix: maxClockDuration check added.
Configuration menu - View commit details
-
Copy full SHA for 078e016 - Browse repository at this point
Copy the full SHA 078e016View commit details -
devnet: fix build issue (ethereum-optimism#12364)
It began to error after ethereum-optimism#12336
Configuration menu - View commit details
-
Copy full SHA for c938fdf - Browse repository at this point
Copy the full SHA c938fdfView commit details
Commits on Oct 8, 2024
-
fix(ct): deploy MIPS2 properly (ethereum-optimism#12365)
Adds a new configuration to DeployImplementations so that it knows which MIPS version to deploy.
Configuration menu - View commit details
-
Copy full SHA for 2412379 - Browse repository at this point
Copy the full SHA 2412379View commit details -
feat: add semgrep-scan-local to justfile (ethereum-optimism#12366)
Adds semgrep-scan-local to top-level justfile.
Configuration menu - View commit details
-
Copy full SHA for 8cb56d9 - Browse repository at this point
Copy the full SHA 8cb56d9View commit details -
op-program: Avoid parsing op-sepolia and op-mainnet rollup and chain …
…configs in init() methods (ethereum-optimism#12307) This was causing op-program to spend cycles parsing the config JSON files to set constants that weren't actually used.
Configuration menu - View commit details
-
Copy full SHA for fb7f306 - Browse repository at this point
Copy the full SHA fb7f306View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2c24e65 - Browse repository at this point
Copy the full SHA 2c24e65View commit details -
Interop: Update Inputs (rebased) (ethereum-optimism#12204)
* op-node,op-supervisor: feed local-unsafe/local-safe/l1-finalized data to supervisor * op-node,op-service,op-e2e: wip, fix interop op-node tests * post-rebase compilation fixes * BlockRef * op-supervisor: fix service test, cleanup todo * op-supervisor: link TODO comments to issue * interop: fix e2e action test --------- Co-authored-by: protolambda <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for dee44ec - Browse repository at this point
Copy the full SHA dee44ecView commit details -
cannon: Default load-elf to output state.bin.gz (ethereum-optimism#12367
Configuration menu - View commit details
-
Copy full SHA for 117c9a4 - Browse repository at this point
Copy the full SHA 117c9a4View commit details -
Configuration menu - View commit details
-
Copy full SHA for d37f753 - Browse repository at this point
Copy the full SHA d37f753View commit details -
MTCannon: Fix
AssertEVMReverts
to correctly construct data (ethereu……m-optimism#12200) * 1. Added `WithRegisters` for initializing state's `Registers`. 2. Added `ThreadProofEncoder` helper function to generate `ThreadProof`. 3. Updated `AssertEVMReverts` to include `statePCs` for multiple memory requirements, added `ProofData` parameter for passing `ThreadProof`, and introduced `expectedReason` parameter for more precise testing. 4. Revised `TestEVMFault` and `TestEVM_UnsupportedSyscall` test functions to be compatible with `AssertEVMReverts`. * lint fix and comment fix * avoid false negatives * delete WithRegisters && create ProofGenerator * assert multi outputs * fix naming issue * Update cannon/mipsevm/tests/evm_multithreaded_test.go Nice catch! Co-authored-by: mbaxter <[email protected]> * Small fix * link check * make expectedReason a value & delete nil check --------- Co-authored-by: mbaxter <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 03b526d - Browse repository at this point
Copy the full SHA 03b526dView commit details -
feat(ct): port interface checks to go (ethereum-optimism#12335)
Ports the interface checks command to go. Updates build command to execute forge fmt and the interface checks.
Configuration menu - View commit details
-
Copy full SHA for 87d0152 - Browse repository at this point
Copy the full SHA 87d0152View commit details -
OPCM: AddressManager and ProxyAdmin assertions. (ethereum-optimism#12370
) * OPCM: AddressManager and ProxyAdmin assertions. * fix: Added logic for proxy types to check implementations. * fix: touch ups for RDP impl checking. * fix: fully fledged proxies added to tests because of new assertions. * fix: removing console2 lib. * fix: semgrep complaining. * fix: comment cleanup and logical split to avoid stack too deep error. * fix: adding comment back in. * fix: added natspec comments for new DeployUtils functions. * fix: removed unused imports.
Configuration menu - View commit details
-
Copy full SHA for a05feb3 - Browse repository at this point
Copy the full SHA a05feb3View commit details -
fix:fix load/store test compatible cannon64 (ethereum-optimism#12345)
Signed-off-by: Chen Kai <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 52783f0 - Browse repository at this point
Copy the full SHA 52783f0View commit details -
feat:add movz/movn mips test (ethereum-optimism#12353)
Signed-off-by: Chen Kai <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c55dcd2 - Browse repository at this point
Copy the full SHA c55dcd2View commit details -
fix(ci): use forge-build in dockerfile (ethereum-optimism#12377)
Updates the dockerfile for building contracts-bedrock to use just forge-build instead of just build since just build now does a few other things for the sake of devex.
Configuration menu - View commit details
-
Copy full SHA for fb62380 - Browse repository at this point
Copy the full SHA fb62380View commit details
Commits on Oct 9, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 3122237 - Browse repository at this point
Copy the full SHA 3122237View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1dafc7c - Browse repository at this point
Copy the full SHA 1dafc7cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 111e0f9 - Browse repository at this point
Copy the full SHA 111e0f9View commit details -
- update README - create make altda-devnet-up command - swap da-server for eigenda-proxy - use redis-cache for eigenda-proxy devnet(high-throughput): change devnetL1-template to use 60M gas with eip1559 elasticity of 2
Configuration menu - View commit details
-
Copy full SHA for 2bd3e06 - Browse repository at this point
Copy the full SHA 2bd3e06View commit details