- 27 Oct, 2023 7 commits
-
-
Mark Tyneway authored
Adds a new helper library called `EIP1967Helper` that can get the admin and impl storage slots from a `Proxy` implementing ERC1967. This is more helpful to use than hardcoded magic values such as `multisig` because it is not clear who the multisig is since its value is assigned in a different file. We want to decouple the value from a magic value and set it to exactly what we want it to be which is the admin. This will work in all cases no matter what the admin is since it dynamically pulls the value from storage for the tests.
-
Mark Tyneway authored
contracts-bedrock: modern import style in tests
-
Adrian Sutton authored
ci: Add filters so op-stack-go-docker-build-release builds on tags.
-
Adrian Sutton authored
-
Joshua Gutow authored
op-node: Pull in Canyon Time from superchain registry
-
Mark Tyneway authored
build(deps-dev): bump @types/node from 20.8.8 to 20.8.9
-
protolambda authored
ops: handle warm-up output case during docker publish correctly
-
- 26 Oct, 2023 33 commits
-
-
Joshua Gutow authored
-
Mark Tyneway authored
chore: Improve chain-mon docker build
-
Mark Tyneway authored
fix: race condition updating last updated scorebook timestamp
-
Will Cory authored
-
Will Cory authored
-
Mark Tyneway authored
build(deps): bump github.com/google/uuid from 1.3.1 to 1.4.0
-
smartcontracts authored
fix: string encode error TS2345
-
dependabot[bot] authored
Bumps [github.com/google/uuid](https://github.com/google/uuid) from 1.3.1 to 1.4.0. - [Release notes](https://github.com/google/uuid/releases) - [Changelog](https://github.com/google/uuid/blob/master/CHANGELOG.md) - [Commits](https://github.com/google/uuid/compare/v1.3.1...v1.4.0) --- updated-dependencies: - dependency-name: github.com/google/uuid dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by:
dependabot[bot] <support@github.com>
-
Mark Tyneway authored
op-bindings: regenerate
-
Mark Tyneway authored
-
Joshua Gutow authored
Enable Canyon in the devnet
-
Mark Tyneway authored
contracts-bedrock: delete dead rlp code
-
Mark Tyneway authored
contracts-bedrock: delete dead delete output code
-
Mark Tyneway authored
contracts-bedrock: scripts absolute import
-
Mark Tyneway authored
contracts-bedrock: delete dead eas upgrade script
-
Mark Tyneway authored
build(deps): bump github.com/onsi/gomega from 1.28.1 to 1.29.0
-
Mark Tyneway authored
build(deps): bump gorm.io/driver/postgres from 1.5.3 to 1.5.4
-
Joshua Gutow authored
Co-authored-by:
Adrian Sutton <adrian@oplabs.co>
-
protolambda authored
-
dependabot[bot] authored
Bumps [gorm.io/driver/postgres](https://github.com/go-gorm/postgres) from 1.5.3 to 1.5.4. - [Commits](https://github.com/go-gorm/postgres/compare/v1.5.3...v1.5.4) --- updated-dependencies: - dependency-name: gorm.io/driver/postgres dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by:
dependabot[bot] <support@github.com>
-
dependabot[bot] authored
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.28.1 to 1.29.0. - [Release notes](https://github.com/onsi/gomega/releases) - [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/gomega/compare/v1.28.1...v1.29.0) --- updated-dependencies: - dependency-name: github.com/onsi/gomega dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by:
dependabot[bot] <support@github.com>
-
Joshua Gutow authored
op-e2e: Add waiter to ActL1IncludeTx
-
Joshua Gutow authored
This does several things to enable Canyon 1. Update to op-geth which has all canyon changes enabled in it 2. Thread the new 1559 config change through the devnet config 3. Fix some EIP-1559 calculations where were use CalcBaseFee 4. Add the PostCanyonDenominator in several deploy configs
-
Adrian Sutton authored
op-challenger: Unsubscribe from l1 heads on shutdown
-
Adrian Sutton authored
This mirrors a change to the L2 block builder to wait for the tx pool to have a processable transaction. The txpool does promotion async so a simple check leads to race conditions. Fixes intermittency in TestFinalizeWhileSyncing
-
Mark Tyneway authored
-
Mark Tyneway authored
We have migrated to using `superchain-ops` for any sort of safe interactions. This code will likely need to be ported over to the `superchain-ops` repo in the future. It is not necessary for now, so delete it.
-
Mark Tyneway authored
-
bendanzhentan authored
-
Mark Tyneway authored
All upgraes in the future will go through the `superchain-ops` repo. Delete this script to reduce compile time of the contracts. All new chains will have EAS in their genesis. Chains that do not have EAS already should use the `superchain-ops` repo to create a deploy script.
-
Mark Tyneway authored
This code is no longer used so we should delete it to reduce compile times slightly. It is a library for computing contract addresses, taken from the solmate issues. It may be in modern versions of solmate if we ever end up needing it again.
-
Mark Tyneway authored
Migrate to the modern import style in the tests where the path relative from the project root is used. This makes the code much more portable and easier to modify without the dot dot syntax. There should be very little old relative style imports left in the codebase if any. There are no functional changes with this commit.
-
Mark Tyneway authored
contracts-bedrock: pseudorandom blocknumber in portal fuzz test
-