Show boosted txids in Activity details of boosted transactions#199
Merged
Show boosted txids in Activity details of boosted transactions#199
Conversation
Member
|
It would be nice to add a screenshot/preview of the feature |
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR implements tracking and display of boosted transaction IDs in activity details. It extends the data model to store parent transaction IDs and shows them in the UI with appropriate labels.
- Adds
boostTxIdsfield to track parent transaction IDs in onchain activities - Implements different boosting strategies for CPFP and RBF transactions with proper parent tracking
- Updates UI to display boosted transaction information with context-appropriate labels
Reviewed Changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| BoostSheet.swift | Adds boostTxIds initialization in activity creation |
| ActivityItemView.swift | Adds boostTxIds field to preview data |
| ActivityExplorerView.swift | Implements UI display of boosted transaction IDs with CPFP/RBF labels |
| CoreService.swift | Core logic changes for tracking parent transactions in both CPFP and RBF scenarios |
| Package.resolved | Updates bitkit-core dependency to support new boostTxIds field |
jvsena42
reviewed
Nov 3, 2025
jvsena42
approved these changes
Nov 3, 2025
Collaborator
|
@ben-kaufman I think you'll need to setup PGP and configure your local git to use it, so your commits are signed 🙈 It's a requirement on the repo:
You can probably squash locally + force push once that's applied locally on your machine |
9754ccc to
1272242
Compare
BitcoinErrorLog
pushed a commit
to BitcoinErrorLog/bitkit-ios
that referenced
this pull request
Dec 15, 2025
Show boosted txids in Activity details of boosted transactions
BitcoinErrorLog
pushed a commit
to BitcoinErrorLog/bitkit-ios
that referenced
this pull request
Feb 7, 2026
Show boosted txids in Activity details of boosted transactions
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.

This PR adds boosted txids tracking and displayed parent txids in the activity details.
Changes
boostTxIds: [String]field toOnchainActivityto store parent transaction IDsboostTxIdswhen boostingreplacementTransactionsto[String: [String]]to track parent txIds. Store parent txIds when creating replacement, retrieve and save when replacement syncsActivityExplorerViewwith labels "BOOSTED TRANSACTION {num} (CPFP)" or "BOOSTED TRANSACTION {num} (RBF)" based on transaction directionNote: This PR updates the bitkit-core version, which has an incompatible change in the sqlite DB, meaning existing apps will need to be uninstalled before updating to this version.
CPFP:

RBF:
