fix(history): show bond transfers instead of unbond/rebond pair - #771
Open
rickstaa wants to merge 1 commit into
Open
fix(history): show bond transfers instead of unbond/rebond pair#771rickstaa wants to merge 1 commit into
rickstaa wants to merge 1 commit into
Conversation
A transferBond moves stake through an internal unbond/rebond pair, which rendered as an "Undelegated from"/"Redelegated with" pair and read as a delegation change. The receiving account saw nothing at all, since the transaction is sent by the sender. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01CnnH7Cke6X9vk7PqsWtoeB
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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.
A
transferBondmoves stake through an internal unbond/rebond pair. Both were rendered, so a transfer looked like an "Undelegated from 0x… / Redelegated with 0x…" pair with matching -/+ amounts, i.e. a delegation change. The receiving account saw no entry at all, because the transaction is sent by the sender.Both events are now hidden for a transfer transaction and replaced by a single row:
transferBondEventslist, paginated alongside rewards and ticket redemptions.Only Unbond/Rebond sharing a transaction with a TransferBond are dropped, so a plain unbond is untouched. Verified against tx
0x3eee…8f91and0x6194…7acfon mainnet.Closes #770