From 01e9115a43e294d53788280bd9d27f1fbb47b12c Mon Sep 17 00:00:00 2001
From: songwongtp <16089160+songwongtp@users.noreply.github.com>
Date: Tue, 11 Feb 2025 00:44:53 +0700
Subject: [PATCH] feat: evm nonce main
---
src/lib/pages/evm-tx-details/components/EvmTxInfo.tsx | 1 +
.../pages/evm-tx-details/components/EvmTxInfoMobile.tsx | 7 +++++--
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/src/lib/pages/evm-tx-details/components/EvmTxInfo.tsx b/src/lib/pages/evm-tx-details/components/EvmTxInfo.tsx
index e99073a0b..6b0ba843d 100644
--- a/src/lib/pages/evm-tx-details/components/EvmTxInfo.tsx
+++ b/src/lib/pages/evm-tx-details/components/EvmTxInfo.tsx
@@ -54,6 +54,7 @@ export const EvmTxInfo = ({
showCopyOnHover
/>
+ {evmTxData.tx.nonce.toFixed(0)}
diff --git a/src/lib/pages/evm-tx-details/components/EvmTxInfoMobile.tsx b/src/lib/pages/evm-tx-details/components/EvmTxInfoMobile.tsx
index 5e74a5a41..7eb4054ea 100644
--- a/src/lib/pages/evm-tx-details/components/EvmTxInfoMobile.tsx
+++ b/src/lib/pages/evm-tx-details/components/EvmTxInfoMobile.tsx
@@ -62,10 +62,13 @@ export const EvmTxInfoMobile = ({
fixedHeight={false}
/>
-
-
+
+ {evmTxData.tx.nonce.toFixed(0)}
+
+
+
);