feat: Transaction sequence runner with automatic sequence numbers - #168
Merged
dotunv merged 9 commits intoAug 31, 2026
Conversation
|
@ARAPHI20 Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
…ner-with-automatic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
This PR adds a Transaction Sequence Runner to the Stellar composer that models multi-step flows, computes sequence numbers automatically so dependent operations run in order, submits steps sequentially with configurable stop/continue-on-failure, and persists per-step results — reducing manual sequence-number math and errors in complex multi-operation flows.
Related Issue
Changes
🧩 Transaction Sequence Runner
[ADD]
apps/api/src/modules/composer/dto/transaction-sequence.dto.tsstopOnFailure.[ADD]
apps/api/src/modules/composer/entities/transaction-sequence-run.entity.ts[ADD]
apps/api/src/database/migrations/1786000000000-create-transaction-sequence.tstransaction_sequence_runtable for sequence-run history.[MODIFY] Sequence execution engine
apps/api/src/modules/composer/composer.service.ts— fetches current sequence and increments per step for automatic numbering; submits steps in order; honors stop/continue-on-failure; resolves dependencies to prior step outputs.apps/api/src/modules/composer/composer.controller.ts— exposes create/run/history endpoints and per-step result retrieval.apps/api/src/modules/composer/composer.module.ts— wires the new DTO, entity, and service.[MODIFY] Composer UI / client
apps/web/src/components/tools/composer/index.tsx— adds Transaction Sequence mode with multi-step editor, dependency picker, stop-on-failure toggle, and per-step result display.apps/web/src/lib/composer-api.ts— addscreateSequence,runSequence, andgetSequenceHistoryclient methods.[ADD]
apps/api/src/modules/composer/__tests__/transaction-sequence.service.test.tsVerification Results
transaction_sequence_runtable + history endpointCloses #154