- 25 Mar, 2024 1 commit
-
-
Delweng authored
* op-node: fetch l1 block with retry Signed-off-by:
jsvisa <delweng@gmail.com> * op-node: apply cr Signed-off-by:
jsvisa <delweng@gmail.com> * op-node/sync: use op-service/retry instead Signed-off-by:
jsvisa <delweng@gmail.com> --------- Signed-off-by:
jsvisa <delweng@gmail.com>
-
- 23 Mar, 2024 2 commits
-
-
smartcontracts authored
-
Roberto Bayardo authored
* close backend resources after use during testing * Update op-chain-ops/genesis/layer_two.go Co-authored-by:
Sebastian Stammler <stammler.s@gmail.com> --------- Co-authored-by:
Sebastian Stammler <stammler.s@gmail.com>
-
- 22 Mar, 2024 10 commits
-
-
clabby authored
* feat(ctb): Key withdrawal proofs by address * Use recovered public key in ToB tests * reviews + reverse lookup mapping for proof submitters * Update natspec
-
refcell authored
-
clabby authored
split req
-
refcell authored
* feat(op-challenger): Delayed Weth Withdrawal Request Caller * fix(op-challenger): withdrawal request field ordering * fix(op-challenger): encapsulate delayed weth behind the fault dispute game contract binding
-
refcell authored
-
Adrian Sutton authored
* op-challenger: Skip attempting to resolve claims when the chess clock hasn't expired. * Use <= when comparing chess clock Co-authored-by:
Inphi <mlaw2501@gmail.com> --------- Co-authored-by:
Inphi <mlaw2501@gmail.com>
-
Adrian Sutton authored
-
refcell authored
* feat(op-dispute-mon): enrich claims with resolution status * fix(op-dispute-mon): add the claim enricher to the extractor instantiation * fix(op-dispute-mon): localize required bond amount * fix(op-challenger): import cycle
-
Sebastian Stammler authored
-
Adrian Sutton authored
* op-challenger: Tidy up TxSender Don't return receipts as they always ignored Return an error when a transaction publishes but reverts rather than logging and ignoring Add a method that returns errors for each individual transaction * op-challenger: Simulate ClaimCredit transaction before sending actual transaction Detects when credit is reported as available but is actually still locked by the DelayedWETH contract. --------- Co-authored-by:
refcell <abigger87@gmail.com>
-
- 21 Mar, 2024 10 commits
-
-
github-actions[bot] authored
Co-authored-by:
github-actions[bot] <github-actions[bot]@users.noreply.github.com>
-
smartcontracts authored
Adds the DGF address to the SDK now that OP Sepolia has been updated.
-
Adrian Sutton authored
Co-authored-by:
refcell <abigger87@gmail.com>
-
Adrian Sutton authored
Don't return receipts as they always ignored Return an error when a transaction publishes but reverts rather than logging and ignoring Add a method that returns errors for each individual transaction
-
Adrian Sutton authored
* op-challenger: Add timer metrics for acting on games and attempting to resolve claims. * op-challenger: Add metrics for contract interactions
-
Mark Tyneway authored
Without the header, it results in a warning message. This prevents CI from passing. We also want to ensure that its free software.
-
Adrian Sutton authored
Uses the correct name for sepolia L2 instead of the old alias.
-
dependabot[bot] authored
Bumps [viem](https://github.com/wevm/viem) from 2.7.19 to 2.8.13. - [Release notes](https://github.com/wevm/viem/releases) - [Commits](https://github.com/wevm/viem/compare/viem@2.7.19...viem@2.8.13) --- updated-dependencies: - dependency-name: viem dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by:
dependabot[bot] <support@github.com> Co-authored-by:
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-
refcell authored
-
refcell authored
* fix(ctb): require exact bond amounts * fix(ctb): precise bond amount tests * fix(ctb): ci checks * Semver / DGF strict bonds * Rename `InsufficientBond` error -> `IncorrectBondAmount` --------- Co-authored-by:
clabby <ben@clab.by>
-
- 20 Mar, 2024 5 commits
-
-
Adrian Sutton authored
-
Adrian Sutton authored
* op-challenger: Format list-claims output better * op-challenger: Format list-games output better
-
Sebastian Stammler authored
it used to log the full transaction frames
-
dependabot[bot] authored
Bumps [abitype](https://github.com/wevm/abitype) from 1.0.0 to 1.0.2. - [Release notes](https://github.com/wevm/abitype/releases) - [Commits](https://github.com/wevm/abitype/compare/abitype@1.0.0...abitype@1.0.2) --- updated-dependencies: - dependency-name: abitype dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by:
dependabot[bot] <support@github.com> Co-authored-by:
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-
dependabot[bot] authored
Bumps [nx](https://github.com/nrwl/nx/tree/HEAD/packages/nx) from 18.0.4 to 18.1.2. - [Release notes](https://github.com/nrwl/nx/releases) - [Commits](https://github.com/nrwl/nx/commits/18.1.2/packages/nx) --- updated-dependencies: - dependency-name: nx dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by:
dependabot[bot] <support@github.com> Co-authored-by:
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-
- 19 Mar, 2024 12 commits
-
-
refcell authored
-
smartcontracts authored
Updates the README for contracts-bedrock to prepare for the upcoming audit of the FPAC system.
-
smartcontracts authored
Improves the SDK to handle the DisputeGameFactory more carefully and validate the games that it queries from the factory. Should mean that the client will not attempt to create withdrawals using invalid proposals.
-
clabby authored
-
tdot authored
* fix: track challenges when pipeline is stalled * cleanup * fix: remove tx version byte in test * remove Heap usage * fix: add pending queue * remove unused check * use 2 PQs * Update comment in op-e2e/actions/plasma_test.go Co-authored-by:
Joshua Gutow <jbgutow@gmail.com> --------- Co-authored-by:
Joshua Gutow <jbgutow@gmail.com>
-
Sebastian Stammler authored
-
smartcontracts authored
Some miscellaneous comment cleanup for dispute contracts.
-
Inphi authored
-
smartcontracts authored
* fix(ct): bugs in DelayedWETH Fixes two bugs in Delayed WETH. First was a limitation of the recover function that would have made it relatively easy to DoS the function by simply withdrawing small amounts of ETH every time the owner attempted to withdraw the full balance. Second is a bug in hold function where the approval was the wrong way around. * Update Kontrol snapshot --------- Co-authored-by:
inphi <mlaw2501@gmail.com>
-
felipe authored
-
zhiqiangxu authored
-
dependabot[bot] authored
Bumps [gorm.io/gorm](https://github.com/go-gorm/gorm) from 1.25.7 to 1.25.8. - [Release notes](https://github.com/go-gorm/gorm/releases) - [Commits](https://github.com/go-gorm/gorm/compare/v1.25.7...v1.25.8) --- updated-dependencies: - dependency-name: gorm.io/gorm dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by:
dependabot[bot] <support@github.com> Co-authored-by:
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-