Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
325dc3a
feat: add Bull queue for async transaction submission with retry
guimroque Apr 8, 2026
ba6c06f
docs: add RFC for transaction submit queue architecture
guimroque Apr 8, 2026
03e2937
test: accept PENDING_SENDER status after async tx submission
guimroque Apr 8, 2026
c6da8f2
chore: remove unused review documents
guimroque Apr 8, 2026
e6ac89b
docs: update CHANGELOG.md
guimroque Apr 8, 2026
6f464d6
Merge pull request #523 from infinitybase/fix/bakosafe-0.6.3
guimroque Apr 8, 2026
2be87f1
fix: emit socket with minimal tx data for frontend cache invalidation
guimroque Apr 8, 2026
1ac3cb9
Merge branch 'fix/bakosafe-0.6.3' into staging
guimroque Apr 8, 2026
dcfa5eb
fix: add notify-result endpoint for worker post-submission callbacks
guimroque Apr 8, 2026
9e9af02
fix: add shared secret and status validation to notify-result endpoint
guimroque Apr 8, 2026
1e6ab60
fix: use snake_case column names in worker SQL queries
guimroque Apr 8, 2026
0291989
feat: stateless worker with fat job payload and dual Redis support
guimroque Apr 9, 2026
dee3c42
docs: update RFC with fat job architecture and dual Redis diagrams
guimroque Apr 9, 2026
9459fd3
chore: bump bakosafe to 0.6.4
guimroque Apr 9, 2026
3a956ef
chore: bump bakosafe to 0.6.4
guimroque Apr 9, 2026
762177c
fix: await provider chain info before submitting transaction
guimroque Apr 9, 2026
be8ad03
chore: bump bakosafe to 0.6.5
guimroque Apr 9, 2026
c6f97be
fix(worker): use bookworm-slim instead of alpine in production stage
guimroque Apr 9, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Bull queue for async transaction submission with automatic retry (120 attempts, ~30min cyclic backoff)
- Retry attempt auditing via `retry_attempts` column with grouped consecutive errors
- Structured JSON logs for transaction submission monitoring (start, retry, success, failure)
- RFC documentation for transaction submit queue architecture

### Fixed

- Upgrade fuels SDK to 0.103.0 and bakosafe to 0.6.2 for fuel-core 0.47.1 compatibility, fixing gas price estimation on transaction submit
- `test:build` script now loads `.env.test` via `DOTENV_CONFIG_PATH`

### Changed

- Transaction submission is now non-blocking — `signByID` and `send` enqueue to Bull instead of calling `sendToChain` synchronously

### Added

Expand Down
Loading
Loading