fix: delete link to explorer from wallet, fix staking view in wallet, add orders to global search in explorer and fix is pending in transaction view in explorer#386
Merged
andrewnguyen22 merged 2 commits intomainfrom Apr 28, 2026
Conversation
… add orders to global search in explorer and fix is pending in transaction view in explorer
29c8882 to
f2c74a0
Compare
andrewnguyen22
approved these changes
Apr 28, 2026
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.
Fix Config, Wallet & Explorer Issues
Summary
This PR addresses several issues across the wallet and explorer web applications, focusing on removing a broken cross-app dependency, improving the staking UI, and expanding search capabilities.
Changes
Removed explorer link coupling from the wallet: The wallet no longer builds or injects explorer URLs into its configuration. This eliminates the fragile dependency where the wallet tried to derive the explorer's base URL from request headers and config, which was error-prone and unnecessary. The "View on Explorer" link in the transaction detail modal has been removed accordingly.
Improved staking validator display in the wallet: Validator cards and list rows now show validator nicknames when available, with a cleaner layout that includes identicon images alongside copyable addresses. This replaces the previous inline-only address display with a more informative two-line format (nickname + truncated address).
Added order search support in the explorer: The global search now includes orders as a searchable and filterable entity type. Search results render order details (ID, committee, status, amounts, and addresses) consistently with other entity types, and search placeholders have been updated to reflect the new capability.
Fixed pending status detection in the explorer transaction view: The transaction detail page now correctly determines whether a transaction is pending, resolving cases where the status was not displayed accurately.