- 22 Nov, 2023 22 commits
-
-
Sebastian Stammler authored
op-e2e: Add WaitForBlockToBeFinalized & WaitForBlocktoBeSafe
-
EvanJRichard authored
Use the ticker in a way that obeys the linter but also doesn't necessarily block like the previous impl.
-
EvanJRichard authored
-
Sebastian Stammler authored
op-node/p2p: Fix deleteRecord to return nil if store.Delete succeeds
-
EvanJRichard authored
-
EvanJRichard authored
-
smartcontracts authored
fix(sdk): have getMessageStatus call messenger
-
Sebastian Stammler authored
-
Maurelian authored
contracts-bedrock: Move modifiers up in Deploy.s.sol
-
EvanJRichard authored
-
EvanJRichard authored
-
EvanJRichard authored
-
Maurelian authored
-
Maurelian authored
-
Maurelian authored
This enables us to remove 7 deploy functions from the deploy script.
-
Maurelian authored
-
Maurelian authored
-
Maurelian authored
-
Maurelian authored
-
refcell.eth authored
chore(ctb): Remove Layout Lock
-
Kelvin Fichter authored
-
clabby authored
feat(ctb): Refactor L1 initializer tests
-
- 21 Nov, 2023 18 commits
-
-
Matthew Slipper authored
Add PR guidelines
-
Maurelian authored
ci: Build monorepo on op-node change
-
refcell authored
-
Matt Solomon authored
-
Matt Solomon authored
-
Matt Solomon authored
This reverts commit 54f7dcf1.
-
clabby authored
-
Matt Solomon authored
-
Matt Solomon authored
-
Matthew Slipper authored
Co-Authored-By: @mds1
-
clabby authored
-
clabby authored
-
Matthew Slipper authored
Fixes an issue where the pnpm-monorepo job would not build due to `check-changed`, but downstream jobs like `contracts-bedrock-test` would. This causes the contracts to be rebuilt on the downstream jobs and causes OOMs and spurious test flakes.
-
Mark Tyneway authored
build(deps-dev): bump eslint from 8.53.0 to 8.54.0
-
Mark Tyneway authored
contracts-bedrock: cleanup expect emits
-
Mark Tyneway authored
ctb: silence compiler warning
-
Mark Tyneway authored
Make a function `pure` rather than `view` to silence a compiler warning. This likely appeared after updating the version of `forge-std`. The function that was updated wrapped the `bound` function so its likely that the `bound` function was updated to be `pure` when it used to be `view`.
-
Mark Tyneway authored
Modern foundry added the ability to `vm.expectEmit(address)`. This is an alias for `vm.expectEmit(bool,bool,bool,bool,address)` where each of the booleans are true. It is important to include the address of the contract this is expecting to emit the event. If all of the bools are going to be true, might as well use the short hand to simplify the source code as well as the bytecode.
-