Skip to content

Conversation

MananTank
Copy link
Member

@MananTank MananTank commented Oct 10, 2025


PR-Codex overview

This PR focuses on enhancing the page.tsx component for transaction details in the dashboard. It introduces a more structured layout, improved UI elements, and additional features like tooltips and copy buttons for better user interaction.

Detailed summary

  • Replaced the previous layout with a breadcrumb navigation.
  • Introduced GridItem component for consistent data presentation.
  • Added tooltips for various fields to provide contextual information.
  • Included CopyTextButton for transaction hash, from, and to addresses.
  • Enhanced timestamp formatting with date-fns.
  • Improved styling and structure for readability and usability.
  • Removed unnecessary imports and components like Separator.

✨ Ask PR-Codex anything about this PR by commenting with /codex {your question}

Copy link

linear bot commented Oct 10, 2025

Copy link

changeset-bot bot commented Oct 10, 2025

⚠️ No Changeset found

Latest commit: 85a6afc

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link

vercel bot commented Oct 10, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
thirdweb-www Ready Ready Preview Comment Oct 13, 2025 9:37pm
4 Skipped Deployments
Project Deployment Preview Comments Updated (UTC)
docs-v2 Skipped Skipped Oct 13, 2025 9:37pm
nebula Skipped Skipped Oct 13, 2025 9:37pm
thirdweb_playground Skipped Skipped Oct 13, 2025 9:37pm
wallet-ui Skipped Skipped Oct 13, 2025 9:37pm

@vercel vercel bot temporarily deployed to Preview – nebula October 10, 2025 17:52 Inactive
@vercel vercel bot temporarily deployed to Preview – thirdweb_playground October 10, 2025 17:52 Inactive
@vercel vercel bot temporarily deployed to Preview – docs-v2 October 10, 2025 17:52 Inactive
@MananTank MananTank marked this pull request as ready for review October 10, 2025 17:52
@vercel vercel bot temporarily deployed to Preview – wallet-ui October 10, 2025 17:52 Inactive
@MananTank MananTank requested review from a team as code owners October 10, 2025 17:52
@github-actions github-actions bot added the Dashboard Involves changes to the Dashboard. label Oct 10, 2025
Copy link
Member Author

MananTank commented Oct 10, 2025


How to use the Graphite Merge Queue

Add either label to this PR to merge it via the merge queue:

  • merge-queue - adds this PR to the back of the merge queue
  • hotfix - for urgent hot fixes, skip the queue and merge this PR next

You must have a Graphite account in order to use the merge queue. Sign up using this link.

An organization admin has enabled the Graphite Merge Queue in this repository.

Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue.

This stack of pull requests is managed by Graphite. Learn more about stacking.

Copy link
Contributor

coderabbitai bot commented Oct 10, 2025

Important

Review skipped

Auto reviews are disabled on base/target branches other than the default branch.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch mny-249

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link

codecov bot commented Oct 10, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 55.02%. Comparing base (e74aca9) to head (85a6afc).
⚠️ Report is 2 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #8234   +/-   ##
=======================================
  Coverage   55.02%   55.02%           
=======================================
  Files         919      919           
  Lines       60583    60583           
  Branches     4127     4127           
=======================================
  Hits        33335    33335           
  Misses      27145    27145           
  Partials      103      103           
Flag Coverage Δ
packages 55.02% <ø> (ø)
🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Copy link
Contributor

github-actions bot commented Oct 10, 2025

size-limit report 📦

Path Size Loading time (3g) Running time (snapdragon) Total time
thirdweb (esm) 64.51 KB (0%) 1.3 s (0%) 304 ms (+200.55% 🔺) 1.6 s
thirdweb (cjs) 366.04 KB (0%) 7.4 s (0%) 1.2 s (+6.83% 🔺) 8.5 s
thirdweb (minimal + tree-shaking) 5.73 KB (0%) 115 ms (0%) 158 ms (+3430.24% 🔺) 272 ms
thirdweb/chains (tree-shaking) 526 B (0%) 11 ms (0%) 139 ms (+4577.03% 🔺) 149 ms
thirdweb/react (minimal + tree-shaking) 19.13 KB (0%) 383 ms (0%) 111 ms (+1680.48% 🔺) 494 ms

Copy link
Contributor

graphite-app bot commented Oct 12, 2025

Merge activity

@graphite-app graphite-app bot force-pushed the 10-08-_mny-239_payments_webhooks_updates branch from ef700b4 to c7ea93d Compare October 12, 2025 18:11
graphite-app bot pushed a commit that referenced this pull request Oct 12, 2025
<!--

## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes"

If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000):

## Notes for the reviewer

Anything important to call out? Be sure to also clarify these in your comments.

## How to test

Unit tests, playground, etc.

-->

<!-- start pr-codex -->

---

## PR-Codex overview
This PR focuses on enhancing the `page.tsx` component for displaying transaction details in a more structured and user-friendly manner. It introduces new UI elements and improves data presentation for better clarity.

### Detailed summary
- Replaced the header and layout structure with a breadcrumb navigation.
- Added a `GridItem` component for better organization of transaction details.
- Introduced tooltips for additional information on fields.
- Enhanced the transaction status display with icons.
- Improved the presentation of transaction input data using `PlainTextCodeBlock`.
- Removed unnecessary imports and components for cleaner code.

> ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}`

<!-- end pr-codex -->
@vercel vercel bot temporarily deployed to Preview – docs-v2 October 12, 2025 18:12 Inactive
@vercel vercel bot temporarily deployed to Preview – nebula October 12, 2025 18:12 Inactive
@vercel vercel bot temporarily deployed to Preview – wallet-ui October 12, 2025 18:12 Inactive
@vercel vercel bot temporarily deployed to Preview – thirdweb_playground October 12, 2025 18:12 Inactive
<!--

## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes"

If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000):

## Notes for the reviewer

Anything important to call out? Be sure to also clarify these in your comments.

## How to test

Unit tests, playground, etc.

-->

<!-- start pr-codex -->

---

## PR-Codex overview
This PR focuses on enhancing the `page.tsx` component for transaction details in the dashboard, improving its layout and user experience by introducing new components and restructuring sections for better clarity and functionality.

### Detailed summary
- Added `Breadcrumb` for navigation.
- Replaced static text with `CopyTextButton` for transaction hash, from, and to addresses.
- Introduced `GridItem` component for consistent layout of transaction details.
- Enhanced transaction details display with tooltips and icons.
- Improved formatting of timestamps and values.
- Added sections for transaction fee, gas prices, and burnt fees.
- Included input data display using `PlainTextCodeBlock`.

> ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}`

<!-- end pr-codex -->
@graphite-app graphite-app bot force-pushed the 10-08-_mny-239_payments_webhooks_updates branch from 305d0d8 to e74aca9 Compare October 13, 2025 21:28
@vercel vercel bot temporarily deployed to Preview – thirdweb_playground October 13, 2025 21:29 Inactive
@vercel vercel bot temporarily deployed to Preview – wallet-ui October 13, 2025 21:29 Inactive
@vercel vercel bot temporarily deployed to Preview – nebula October 13, 2025 21:29 Inactive
@vercel vercel bot temporarily deployed to Preview – docs-v2 October 13, 2025 21:29 Inactive
Base automatically changed from 10-08-_mny-239_payments_webhooks_updates to main October 13, 2025 21:38
@graphite-app graphite-app bot merged commit 85a6afc into main Oct 13, 2025
22 checks passed
@graphite-app graphite-app bot deleted the mny-249 branch October 13, 2025 21:39
@vercel vercel bot temporarily deployed to Production – wallet-ui October 13, 2025 21:39 Inactive
@vercel vercel bot temporarily deployed to Production – docs-v2 October 13, 2025 21:39 Inactive
@vercel vercel bot temporarily deployed to Production – thirdweb_playground October 13, 2025 21:39 Inactive
@vercel vercel bot temporarily deployed to Production – nebula October 13, 2025 21:39 Inactive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Dashboard Involves changes to the Dashboard.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants