Skip to content
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

fix: merge develop #104

Commits on Oct 16, 2024

  1. Configuration menu
    Copy the full SHA
    ef009e3 View commit details
    Browse the repository at this point in the history
  2. feat: Move checkOutput from DeployOPChainOutput to DeployOPChain scri…

    …pt (ethereum-optimism#12469)
    
    * feat: Move checkOutput from DeployOPChainOutput to DeployOPChain script
    
    * fix: Fix compiler warnings
    maurelian authored Oct 16, 2024
    Configuration menu
    Copy the full SHA
    dfdc28b View commit details
    Browse the repository at this point in the history
  3. op-deployer: Separate L1 and L2 contract artifacts (ethereum-optimism…

    …#12480)
    
    * op-deployer: Separate L1 and L2 contract artifacts
    
    Adds support for specifying separate artifact URLs for L1 and L2. There are two new fields in the intent - `L1ContractsLocator` and `L2ContractsLocator` - which together replace the `ContractArtifactsURL` and `ContractsRelease` fields. Specifying a file or HTTPS URL for either field will automatically enable dev mode for the deployment. Specifying a `tag://` URL will use the standard deployment for L1 and L2. The default have been set to the following:
    
    - L1: `op-contracts/v1.6.0`
    - L2: `op-contracts/v1.7.0-beta.1+l2-contracts`
    
    Fixes ethereum-optimism/platforms-team#337.
    
    * fix test
    
    * fix another test
    mslipper authored Oct 16, 2024
    Configuration menu
    Copy the full SHA
    3f65402 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c92c822 View commit details
    Browse the repository at this point in the history
  5. op-deployer: Package for production (ethereum-optimism#12491)

    * op-deployer: Package for production
    
    This PR:
    
    1. Moves op-deployer into a standalone package at the root of the monorepo.
    2. Updates CI given the move above.
    3. Adds infrastructure for `goreleaser` so that we can provide pre-build binaries to our users.
    
    * fix error in config
    
    * add dep
    
    * move filter
    
    * filters
    
    * goimports
    
    * remove deployer docker builds
    
    * goimports
    
    * remove superfluous package renames
    
    * use correct monorepo dir
    
    * fix bad package renames
    
    * cancel child context
    
    * use different context in cleanup
    
    * log enclave ID
    mslipper authored Oct 16, 2024
    Configuration menu
    Copy the full SHA
    1f106f7 View commit details
    Browse the repository at this point in the history
  6. op-deployer: Most implementation addresses not set in state.json when…

    … standard release tag used (ethereum-optimism#12434)
    
    * op-deployer: Most implementation addresses not set in state.json when standard release tag used
    
    * Update op-chain-ops/deployer/pipeline/opchain.go
    
    Co-authored-by: Matt Solomon <matt@mattsolomon.dev>
    
    * fix: parallel execution of commands.
    
    * fix: tests added
    
    * fix: vscode revert
    
    * use channel approach
    
    ---------
    
    Co-authored-by: Matt Solomon <matt@mattsolomon.dev>
    Co-authored-by: Matthew Slipper <me@matthewslipper.com>
    3 people authored Oct 16, 2024
    Configuration menu
    Copy the full SHA
    da6625f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f58f1f5 View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2024

  1. ci: Revert kurtosis test back to CCI runner (ethereum-optimism#12500)

    We're seeing issues with concurrent usage of CCI that are causing builds to fail.
    mslipper authored Oct 17, 2024
    Configuration menu
    Copy the full SHA
    dc12512 View commit details
    Browse the repository at this point in the history
  2. feat: op-program supports custom chain config (ethereum-optimism#12310)

    * feat: op-program supports custom chain config
    
    * address comments
    
    * address comments
    
    * update mainnet.go/sepolia.go
    
    * Update op-program/chainconfig/chaincfg.go
    
    Co-authored-by: Adrian Sutton <adrian@symphonious.net>
    
    * more error info on config file not found
    
    ---------
    
    Co-authored-by: Qi Zhou <qizhou@ethstorage.io>
    Co-authored-by: Adrian Sutton <adrian@symphonious.net>
    3 people authored Oct 17, 2024
    Configuration menu
    Copy the full SHA
    527bf6c View commit details
    Browse the repository at this point in the history
  3. cannon: Rework RMW ops for 64-bit compatibility (ethereum-optimism#12419

    )
    
    * cannon: Use 4-byte alignment for memory.SetUint32
    
    * cannon: For now, bypass EVM check for 64-bit tests
    
    * cannon: Rework rmw ops for Cannon64 compatibility
    
    TODO: Fix MIPS 64-bit tests
    
    * cannon: Add some comments
    
    * cannon: Make TestEVM_MT_LL 64-bit compatible
    
    * cannon: Make SC tests 64-bit compatible
    
    * cannon: Clean up unused test param
    
    * cannon: Add 64-bit tests of ll/sc ops, fix sign extension
    
    * cannon: Add tests for lld, scd ops
    
    * cannon: Rework test utils
    
    * cannon: Update state field LLReservationActive to LLReservationStatus
    
    Use the status field to track what type of reservation was made.
    
    * cannon: Update MIPS2 version, run semver lock
    
    * cannon: Rename go var to match solidity
    
    * cannon: Tweak test descriptions
    
    * Revert "cannon: Use 4-byte alignment for memory.SetUint32"
    
    This reverts commit ce9abdd.
    
    * cannon: Rework 64-bit compatibility in tests
    
    Also, clean-up pc setting
    
    * cannon: Add test cases that clear unaligned LLAddress reservation
    
    * Fix testcase descriptions
    
    Co-authored-by: Inphi <mlaw2501@gmail.com>
    
    ---------
    
    Co-authored-by: Inphi <mlaw2501@gmail.com>
    mbaxter and Inphi authored Oct 17, 2024
    Configuration menu
    Copy the full SHA
    cc0959d View commit details
    Browse the repository at this point in the history
  4. cannon: use constant instead of magic value for solidity part (ethere…

    …um-optimism#12484)
    
    * cannon: use constant instead of magic value for solidity part
    
    * update version
    zhiqiangxu authored Oct 17, 2024
    Configuration menu
    Copy the full SHA
    56330c0 View commit details
    Browse the repository at this point in the history
  5. op-deployer: error handling bugs (ethereum-optimism#12507)

    * op-deployer: error handling bugs
    
    * fix: less requests to node to get latest block.
    blmalone authored Oct 17, 2024
    Configuration menu
    Copy the full SHA
    05961cc View commit details
    Browse the repository at this point in the history
  6. feat(op-batcher): wait for pre-genesis RPC request loop (ethereum-opt…

    …imism#12383)
    
    * feat(op-batcher): loop fetch sync status
    
    Signed-off-by: jsvisa <delweng@gmail.com>
    
    * feat(op-batcher): wait for l2 genesis time
    
    Signed-off-by: jsvisa <delweng@gmail.com>
    
    * feat(batcher): add remaining time for tick printing
    
    Signed-off-by: jsvisa <delweng@gmail.com>
    
    * apply code reviews
    
    Signed-off-by: jsvisa <delweng@gmail.com>
    
    * use min instead of if test
    
    Signed-off-by: jsvisa <delweng@gmail.com>
    
    * fix(batcher): reset timer
    
    Signed-off-by: jsvisa <delweng@gmail.com>
    
    ---------
    
    Signed-off-by: jsvisa <delweng@gmail.com>
    Co-authored-by: protolambda <proto@protolambda.com>
    jsvisa and protolambda authored Oct 17, 2024
    Configuration menu
    Copy the full SHA
    7ce9165 View commit details
    Browse the repository at this point in the history
  7. Initialize using Dependency Set Configuration (ethereum-optimism#12495)

    * Initialize using Dependency Set Configuration
    
    * op-supervisor: init fromda, route fromda metrics, handle cross-unsafe, improve backend resource initialization
    
    * op-supervisor: attach RPC, create processors upfront, implement backend test
    
    * op-supervisor: fix dependency set configuration and test setup
    
    * Update op-supervisor/supervisor/backend/backend.go
    
    Co-authored-by: Axel Kingsley <axel.kingsley@gmail.com>
    
    ---------
    
    Co-authored-by: protolambda <proto@protolambda.com>
    axelKingsley and protolambda authored Oct 17, 2024
    Configuration menu
    Copy the full SHA
    c26ab41 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    90e4f71 View commit details
    Browse the repository at this point in the history