- 11 Mar, 2023 31 commits
-
-
David Cardenas authored
-
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
-
- 10 Mar, 2023 9 commits
-
-
Mark Tyneway authored
contracts-bedrock: fix gas benchmarks
-
Mark Tyneway authored
-
Mark Tyneway authored
-
Mark Tyneway authored
-
Mark Tyneway authored
Fixes the benchmarks by ensuring that the optimism portal is initialized as well as ensuring that the prev base fee is always explicitly set. The previous benchmarks were pretty far off with their estimations.
-
Andreas Bigger authored
-
Matthew Slipper authored
contracts-bedrock: delete dead deployments
-
Joshua Gutow authored
-
Joshua Gutow authored
This is WIP because it doesn't perfectly re-assemble channels, but starts to provide info on dangling channels.
-