1. 04 Dec, 2024 1 commit
  2. 03 Dec, 2024 20 commits
  3. 02 Dec, 2024 11 commits
  4. 30 Nov, 2024 1 commit
  5. 29 Nov, 2024 2 commits
  6. 28 Nov, 2024 5 commits
    • George Knee's avatar
      txmgr: `Queue.Send()` uses `q.txMgr.SendAsync` (#13120) · 26f7a40f
      George Knee authored
      * txmgr: Queue.Send() uses q.txMgr.SendAsync
      
      This should ensure that transactions are confirmed on chain in the order Queue.Send() is called, without sacrificing parallel tx submission.
      
      * implement SendAsync in op-challenger test stubTxMgr
      
      It doesn't preserve the nonces like the production txMgr does.
      
      * TrySend also ensures synchronous tx nonce ordering (on success)
      
      * factor out HandleResponse fn
      
      * remove unused code
      
      * unexport handler
      26f7a40f
    • Michael Amadi's avatar
      update lib keccak dependency (#13136) · e84868c2
      Michael Amadi authored
      * update lib keccak dependency
      
      * update semver-lock
      
      * update semver-lock
      e84868c2
    • smartcontracts's avatar
      maint: clean up primary justfile (#12997) · 16a5d617
      smartcontracts authored
      Various things in the primary justfile weren't particularly
      legible, particularly around installing tooling versions. Cleans
      up the primary justfile so that everything has comments and the
      process for installing tooling is unified.
      Co-authored-by: default avatarMatthew Slipper <me@matthewslipper.com>
      16a5d617
    • Michael Amadi's avatar
      improve merkletrie test cov (#13131) · 8a32cbaa
      Michael Amadi authored
      8a32cbaa
    • George Knee's avatar
      batcher: fix state inconsistency (#12981) · 8ee03877
      George Knee authored
      * remove lastStoredBlock and lastL1Tip from BatchSubmitter state
      
      We can use the channelManager's state to infer lastStoredBlock. And lastL1Tip is actually unused.
      
      * change log line wording
      
      * fix typo
      
      * remove unecessary method
      
      * clean up driver.calculateL2BlockRangeToStore
      
      * some typos
      
      * tiny tweak
      8ee03877