Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: implement SubmitRollupTransaction and GetNextBatch methods #14

Draft
wants to merge 8 commits into
base: main
Choose a base branch
from

Commits on Oct 3, 2024

  1. feat: WIP implementation - return a single batch

    WIP. Test should fail.
    tzdybal committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    eebd330 View commit details
    Browse the repository at this point in the history
  2. feat: add DA height tracking to sequencer

    WIP. `lastBatchHash` is still ignored, but sequencer is traversing DA.
    tzdybal committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    1b5b783 View commit details
    Browse the repository at this point in the history
  3. test: add batch hashing

    tzdybal committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    cae2b5b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    98a99e1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5b30e6f View commit details
    Browse the repository at this point in the history
  6. refactor: update sequencing methods to use go-sequencing v0.2.0

    Refactored methods to use request/response structures for better readability and maintainability. Adjusted tests accordingly.
    tzdybal committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    c63a9ba View commit details
    Browse the repository at this point in the history
  7. feat: implement KVStore

    add in-memory badger based store used for testing
    tzdybal committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    e1b4820 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2024

  1. refactor: replace go-datastore with native badger DB

    Migrated all store operations from go-datastore to Badger DB. This simplifies the codebase by removing unnecessary abstractions and leveraging native Badger functionalities for better performance and maintainability.
    tzdybal committed Oct 4, 2024
    Configuration menu
    Copy the full SHA
    d4e78b6 View commit details
    Browse the repository at this point in the history