Goal
Implement a transaction processor that schedules transactions, sequences them where needed, and dispatches work across multiple custom SVM executors.
Why
The engine needs to load balance transaction execution across several executor instances while coordinating state reads and writes through accountsdb and ledger.
Scope
- transaction scheduling and sequencing
- parallel dispatch to multiple executors
- storage integration for state retrieval and persistence
- preserve ordering where the execution model requires it
Goal
Implement a transaction processor that schedules transactions, sequences them where needed, and dispatches work across multiple custom SVM executors.
Why
The engine needs to load balance transaction execution across several executor instances while coordinating state reads and writes through
accountsdbandledger.Scope