- 08 Dec, 2023 31 commits
-
-
Joshua Gutow authored
fix one typo
-
Matthew Slipper authored
proxyd: Delete bad test
-
Maurelian authored
contracts-bedrock: add base sepolia deploy config
-
Maurelian authored
contracts-bedrock: fix pgn sepolia config
-
Matthew Slipper authored
This test was originally checking for a panic in the websocket code. However, we have since re-architected this code and have coverage for this issue elsewhere. Therefore, this test is now superfluous and can be removed. It causes a lot of spam in the logs, and makes debugging other tests harder.
-
Maurelian authored
contracts-bedrock: zora-sepolia deploy config
-
Maurelian authored
-
Mark Tyneway authored
contracts-bedrock: L2OutputOracle deployment
-
Mark Tyneway authored
Updates the deploy config for pgn sepolia to be conformant to the deploy config spec. Not sure why CI is passing as the go code is supposed to check for non compliant deploy config. It is likely because the solidity and the go got out of sync. We could use a rethinking of how we do deploy config. Ideally the entire thing can be simplified now that deploy config contains op stack chain specific config, superchain target specific config and also config values that go into L1 and also config values that go into L2. This change wouldn't be necessary if the lazy deploy config change https://github.com/ethereum-optimism/optimism/issues/7711 was implemented. It was attempted https://github.com/ethereum-optimism/optimism/pull/7776 but became stale and added a lot of overhead.
-
Mark Tyneway authored
-
Sukey authored
-
Matthew Slipper authored
fix(multisig-mon): add onepass cli to dockerfile
-
Mark Tyneway authored
Make it pass config checking
-
Mark Tyneway authored
Adds the deploy config for `zora-sepolia`. This was sourced from conduit. This is required to deploy the new L2OutputOracle contract. Related to https://github.com/ethereum-optimism/optimism/pull/8499
-
refcell.eth authored
feat(op-challenger): Prestate Provider Refactor
-
clabby authored
feat(ctb): `OutputBisectionGame` test refactor + fixes
-
refcell authored
-
Mark Tyneway authored
Deploys the latest implementation of the `L2OutputOracle` to sepolia and commits the artifact. The following script was used for the deployment. ```bash export IMPL_SALT="op/acc" forge script scripts/Deploy.s.sol:Deploy \ --sig 'deployL2OutputOracle()' --rpc-url $ETH_RPC_URL \ --private-key $PRIVATE_KEY \ --broadcast \ --verify ``` https://sepolia.etherscan.io/address/0x83aeb8b156cd90e64c702781c84a681dadb1dde2
-
Mark Tyneway authored
-
clabby authored
-
Mark Tyneway authored
Sources the deploy config from https://github.com/base-org/contract-deployments/blob/main/sepolia/2023-09-26-deploy/deploy-config/deploy-config.json We need to double check that this is up to date, ie it is possible that some config has changed over time. The problem variables that we care about from within this config are the constructor args to the L2OutputOracle: - cfg.l2OutputOracleSubmissionInterval - cfg.l2BlockTime - cfg.l2OutputOracleProposer - cfg.l2OutputOracleChallenger - cfg.finalizationPeriodSeconds If any of these values changed, they should be caught by the state diff tests written in `superchain-ops` for performing the upgrade. This deploy config is required to deploy a new L2OutputOracle implementation for Base Sepolia as part of the Extended Pause Upgrade.
-
clabby authored
-
clabby authored
-
clabby authored
-
clabby authored
-
clabby authored
-
clabby authored
-
clabby authored
-
clabby authored
-
Maurelian authored
contracts-bedrock: deploy superchain config
-
Mark Tyneway authored
Both the proxy and the latest implementation. Deploy them to sepolia. The proxy was deployed with the following command: ```bash forge script scripts/Deploy.s.sol:Deploy \ --sig 'deployERC1967Proxy(string)' --rpc-url $ETH_RPC_URL \ --private-key $PRIVATE_KEY \ --broadcast \ --verify \ SuperchainConfigProxy ```
-
- 07 Dec, 2023 9 commits
-
-
Mark Tyneway authored
build(deps): bump actions/setup-python from 4 to 5
-
Sebastian Stammler authored
op-e2e: Add test utility to wait for balance changes
-
dependabot[bot] authored
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by:
dependabot[bot] <support@github.com>
-
felipe authored
fix(ufm): gracefully handle failed tx creation
-
Matthew Slipper authored
This PR adds a utility to wait for an address's balance to change. The utility checks for the balance change for two minutes, and returns the new value once it changes. It rreturns an error on timeout. Some tests - particularly the ext-geth tests - are failing because balance changes that we expect to occur are not. My hunch is that this may be related to a race condition somewhere between the test code and op-geth, but I can't be sure. By waiting for the balance to change, we can eliminate spurious race conditions and see if this is related to some other underlying issue.
-
refcell.eth authored
feat(op-challenger): Output Bisection Game Genesis Output Root Fetching
-
refcell.eth authored
build(deps): bump @sentry/node from 7.84.0 to 7.85.0
-
refcell authored
providers. fix(op-challenger): genesis output root validation for top of output bisection games genesis output root test fix(op-challenger): revert validation wiring revert newline change
-
Maurelian authored
contracts-bedrock: simplify storage setting in SuperchainConfig
-