- 01 Oct, 2024 12 commits
-
-
Roberto Bayardo authored
- clarify that 'just update-foundry' needs to be run from the root of the repo in check-foundry script. Usually the user will be in contracts-bedrock/src when seeing this message, and the justfile there doesn't handle it.
-
mbaxter authored
* cannon: Update cannon go test program versions * cannon: Allow more steps for multithreaded program
-
Roberto Bayardo authored
-
Inphi authored
-
Maurelian authored
* test(deploy): Deploy a distinct ProxyAdmin for Superchain contracts * fix: only set address manager for OP Chain's ProxyAdmin * fix: typo * test: fix create2 collision between ProxyAdmins * fix: lint * fix: move setupOpChainAdmin() before setupOpAltDA The DA challenge contract needs a proxy admin too * feat: use create2AndSave for ProxyAdmin * fix: Do not double save the superchain ProxyAdmin * Fix whitespace Co-authored-by:
Matt Solomon <matt@mattsolomon.dev> --------- Co-authored-by:
Matt Solomon <matt@mattsolomon.dev>
-
Inphi authored
* ci: Cannon v2 STF verify * ci: remove op-e2e-cannon-tests dep
-
Inphi authored
-
Mark Tyneway authored
* contracts-bedrock: bump forge-std Bumps forge-std to the latest release https://github.com/foundry-rs/forge-std/tree/v1.9.3 This will help us to delete some solidity code and move to using cheatcodes in its place. * build: fix * gas-snapshot: update
-
Harper authored
-
Maurelian authored
-
Adrian Sutton authored
* cannon: Support F_GETFD cmd to fcntl. * cannon: Update fuzz test expectations. * cannon: Update MIPS.t.sol * cannon: Introduce a new state version for supporting get_fd. Switches singlethreaded prestate to use .bin.gz instead of json since it now needs to detect the new state version. * cannon: Don't override the cannon version. * Update semver-lock. * cannon: Update tests to detect old versions but only check writing and parsing for the currently supported versions. * cannon: Load old version from cannon docker image * cannon: Improve logging. * cannon: Restore cannon version arg. * Fix contrac semvers. * cannon: Rename singlethreaded-getfd to just singlethreaded-2. We could just go to using the state version number directly, but particularly the difference between singlethreaded and multithreaded feels useful to keep. * cannon: Fix comment. * Update semver again.
-
smartcontracts authored
Kontrol profile was originally just looking at the L1 contracts which caused issues now that we're deploying via vm.getCode.
-
- 30 Sep, 2024 4 commits
-
-
smartcontracts authored
Fixes an annoying bug inside of make-summary-deployment that only became apparent with a recent commit that caused state diffs to start to appear under the address of Deploy.s.sol.
-
Maurelian authored
* test: Transfer to finalSystemOwner rather than SystemOwnerSafe * feat: Fix comment references to ProxyAdmin
-
Adrian Sutton authored
Trying to reproduce the missing prestate failure. Also now runs hourly instead of 4 hourly to increase chances of finding a failing case.
-
zhiqiangxu authored
* add retry.Do0 * update code to use Do0
-
- 29 Sep, 2024 1 commit
-
-
Matthew Slipper authored
* feat: Rewrite natspec checker in Go Rewrites the `semver-natspec-check-no-build` Just command in Go to reduce runtime. This PR reduces runtime for this check from ~1m30s to about 3 seconds post-compilation. * remove old script * add unit tests * rename test * review updates
-
- 28 Sep, 2024 6 commits
-
-
Maurelian authored
* Updates to OPCM and OPCMInterop * Update DeployImpls and OPCM Tests * remove some unused imports * Undo mapping type change * Undo DeployOutput type change * Semver and snapshots
-
smartcontracts authored
We no longer need these interfaces now that we have the actual interfaces.
-
Matt Solomon authored
* add missing assertion and remove unneeded todo comments * chore: semver lock + pre-pr-no-build * chore: rename function
-
Axel Kingsley authored
* fixes * op-supervisor: head db init fix, logging, op-node debug logging * interop: track recent safety data * Early integration and refactor of Views and SafetyIndex * update for rebase * rename RecentSafetyIndex ; reorganize * refactor Pointer method on iterator * logging * Delete unused Tracking Code ; New ChainsDB.Safest * fix naming miss * fix mistaken line deletion * Update op-supervisor/supervisor/backend/safety/safety.go Co-authored-by:
protolambda <proto@protolambda.com> * Add issue numbers to TODO ; Address Proto Comments --------- Co-authored-by:
protolambda <proto@protolambda.com>
-
Matthew Slipper authored
* Cleanups for production, add standard addresses This PR: - Cleans up the intent file to be more suitable for production deployments - Fixes various bugs encountered while preparing `op-deployer` for use against predeployed OPCM contracts - Adds a new CLI command to bootstrap a new OPCM deployment against an existing set of implementation contracts Note on Solidity changes: - Since the code for custom gas tokens is in the monorepo but isn't included in an official contracts release yet, we had to add interfaces for the pre-CGT contracts to the Solidity codebase. - The `DeployImplementations` script looks at the release identifier to determine whether or not it should use the pre- or post-CGT interfaces. * goimports * lints * fix tests * revert tx manger changes * Update packages/contracts-bedrock/src/L1/interfaces/IL1StandardBridgeV160.sol Co-authored-by:
Maurelian <john@oplabs.co> * Update packages/contracts-bedrock/src/L1/interfaces/IL1CrossDomainMessengerV160.sol Co-authored-by:
Maurelian <john@oplabs.co> * use new opcm * fix test * semver * semver * bump semver * update manager deployment * natspec * SEMVER --------- Co-authored-by:
Maurelian <john@oplabs.co>
-
Hamdi Allam authored
-
- 27 Sep, 2024 17 commits
-
-
Michael Amadi authored
-
Mark Tyneway authored
The build fails when jq is not installed with a mysterious error message, so improve the error message. This will help debugging for new contributors.
-
Sebastian Stammler authored
* op-node/rollup/derive: Implement Holocene Frame Queue * add FrameQueue test * use non-nil context * address reviews, refactor frame loading and pruning
-
smartcontracts authored
Adds a few remaining interfaces required before we can migrate OPCM to use interfaces over source contracts.
-
Matthew Slipper authored
The devnet tests aren't providing a lot of value. They use our outdated Python devnet tooling, and only run a tiny subset of our overall test suite. They are also are flaky and slow to run. To prioritize improving the DevX of the monorepo, this PR removes the devnet tests from CCI.
-
smartcontracts authored
Certain constructor parameters were not being inserted correctly. Although this didn't cause a failure during deployment, it did cause Kontrol tests to fail.
-
Karl Bartel authored
* Accept /put path as described in spec In addition to the currently used `/put/` path to ease the migration. See https://github.com/ethereum-optimism/optimism/issues/11499. * alt-DA: write to /put path as described in spec The spec mandates using `/put` and not `/put/`, so that is what we should do. Warning: This will break DA solutions that only accept `/put/` at the moment. It is recommended that DA solutions support both paths for a while, so that updating OP-stack can happen independently of the exact DA implementation version. Closes https://github.com/ethereum-optimism/optimism/issues/11499.
-
tsnobster authored
-
Inphi authored
* ci: Add Cannon STF verify recurring job * setup remote docker * change make dir * fix cwd
-
Blaine Malone authored
* fix: Update absolute prestate * fix: just pre-pr * fix: absolute prestate updated as part of assertions. * chore: semver lock --------- Co-authored-by:
Matt Solomon <matt@mattsolomon.dev>
-
protolambda authored
* op-supervisor: cleanup cross-L2 safety types * op-node: fix interop test
-
Maurelian authored
* feat(opcm): Create and use new ISystemConfigV160 * feat(opcm): defaultSystemConfigParams in OPCM Interop * chore: semgrep * fix: handle different system config initializers * chore: revert interop changes since it uses the latest systemConfig * chore: semver lock * chore: semver locK --------- Co-authored-by:
Matt Solomon <matt@mattsolomon.dev>
-
Francis Li authored
* op-node waits establishes connection to conductor before starting in sequencer enabled mode * Added conductor enabled api to op-node * check node enabled conductor during conductor startup * update logs * Change back to lazy initialization * Add method not found check
-
Blaine Malone authored
* fix: Temporarily stop deploying DelayedWETHPermissionlessGameProxy * fix: removing TODOs from production contract. * fix: semver lock updated. * fix: bump OPContractsManager version. * fix: DeployOutput on OPContractsManager API will remain the same.
-
Blaine Malone authored
* feat: Change OPCM salt to include user supplied arg * fix: removing temporary assumption. * fix: bumped OPContractsManager version. * fix: snapshots update. * fix: bump OPContractsManager version. * fix: snapshots update. * fix: pre-pr run * fix: wiring up Create2Salt as SaltMixer for DeployOPChainInput * fix: remove old standard-versions.toml file
-
Blaine Malone authored
* feat: Change OPCM salt to include user supplied arg * fix: removing temporary assumption. * fix: bumped OPContractsManager version. * fix: snapshots update. * fix: bump OPContractsManager version. * fix: snapshots update. * fix: pre-pr run * fix: wiring up Create2Salt as SaltMixer for DeployOPChainInput
-
Adrian Sutton authored
* op-challenger: Use the cannon witness subcommand to read states instead of directly calling the parsing code. * op-challenger: Use a context when downloading the prestate.
-