- 14 Mar, 2023 5 commits
-
-
Mark Tyneway authored
Directly test bedrock v0 encoding and hashing against legacy implementations
-
Mark Tyneway authored
op-chain-ops: Improve OVM_ETH migration, remove invalid check slots
-
Mark Tyneway authored
Enable Regolith in getting-started network
-
Mark Tyneway authored
feat(ctb): Print tenderly simulation URLs during deployment
-
Joshua Gutow authored
fix(spec): use correct to field for contract creation deposits
-
- 13 Mar, 2023 5 commits
-
-
Matthew Slipper authored
-
Matthew Slipper authored
-
Matthew Slipper authored
When we ran the migration rehearsal, the OVM_ETH migration took approximately an hour and a half. This was because the storage slots in the OVM_ETH contract were iterated twice: once to check them, and another time to actually migrate them. To reduce the amount of time taken, this PR updates the OVM_ETH migration to check and migrate in one step. This does not cause database corruption on failure, since the trie changes are buffered in memory and aren't committed until all the checks pass. Total migration time should be reduced by approximately 40 minutes. Separately, I removed the invalid check slots referring to the EIP-1967 slots on the L2XDM. These slots no longer exist, and were causing the post-check steps to fail. Closes CLI-3590 Closes CLI-3576
-
Adrian Sutton authored
-
Noah Citron authored
-
- 11 Mar, 2023 30 commits
-
-
Mark Tyneway authored
contracts-bedrock: prevent overflows in ResourceMetering + prevent grief
-
Mark Tyneway authored
-
mergify[bot] authored
feat(op-node): Peer Score Hardening
-
Andreas Bigger authored
-
Andreas Bigger authored
-
Andreas Bigger authored
-
mergify[bot] authored
op-node: remove unused AddSafeAttributes function
-
Andreas Bigger authored
-
mergify[bot] authored
-
s7v7nislands authored
-
mergify[bot] authored
batch_decoder: Reassemble Channels
-
mergify[bot] authored
-
Joshua Gutow authored
-
mergify[bot] authored
feat(packages/atst): Final touches on the docs
-
Will Cory authored
-
Mark Tyneway authored
-
Mark Tyneway authored
-
Mark Tyneway authored
-
Mark Tyneway authored
-
Mark Tyneway authored
-
Mark Tyneway authored
-
Mark Tyneway authored
-
Mark Tyneway authored
Remove the unchecked arithmetic in favor of lowering the max base fee. This will prevent situations in which the max base fee causes gas consumption greater than the block gas limit.
-
Mark Tyneway authored
-
Mark Tyneway authored
When multiplying a uint64 and uint128 and assigning to a uint256, the solidity checked math applies to the types of the numbers being multiplied. This means that solidity catches an overflow when the result of larger than a uint128 even though its assigned to a uint256. This PR uses unchecked math to prevent this kind of overflow instead of casting the values to uint256 because it is safe to use unchecked math here. The following inequality always holds true, which shows that it is safe: ``` solidity type(uint64).max * type(uint128).max < type(uint256).max ```
-
Andreas Bigger authored
-
mergify[bot] authored
fix(ctb): Use `callWithMinGas` in the XDM
-
clabby authored
-
Joshua Gutow authored
-
Joshua Gutow authored
-