diff --git a/lib/widgets/name_by_address.dart b/lib/widgets/name_by_address.dart
index 19395aa462cd3fb7f1751607fe82d2f1fdf937e5..49ee3ba85da9c351da8202b704b77b9d0018736a 100644
--- a/lib/widgets/name_by_address.dart
+++ b/lib/widgets/name_by_address.dart
@@ -14,7 +14,7 @@ import 'package:truncate/truncate.dart';
 
 class NameByAddress extends StatelessWidget {
   const NameByAddress(
-      {super.key, required this.wallet, this.size = 20, this.color = Colors.black, this.fontWeight = FontWeight.w400, this.fontStyle = FontStyle.italic});
+      {super.key, required this.wallet, this.size = 20, this.color = Colors.black, this.fontWeight = FontWeight.w400, this.fontStyle = FontStyle.normal});
   final WalletData wallet;
   final Color color;
   final double size;
diff --git a/lib/widgets/wallet_header.dart b/lib/widgets/wallet_header.dart
index f8939a879e4e625a626380e71d356ea633d6ffb7..d9ee51003453f7f59cef867caa1422a898bf8c2e 100644
--- a/lib/widgets/wallet_header.dart
+++ b/lib/widgets/wallet_header.dart
@@ -264,7 +264,7 @@ class _WalletHeaderState extends State<WalletHeader> {
                         style: scaledTextStyle(
                           fontSize: 20,
                           fontFamily: 'Monospace',
-                          fontWeight: FontWeight.w900,
+                          fontWeight: FontWeight.w600,
                         ),
                       ),
                       SizedBox(width: scaleSize(14)),
diff --git a/lib/widgets/wallet_name.dart b/lib/widgets/wallet_name.dart
index 219cf177176a8a2a6ca7f34a9f79d1e708813390..57db6032ab29521da9fd154c54bfb8983a05203a 100644
--- a/lib/widgets/wallet_name.dart
+++ b/lib/widgets/wallet_name.dart
@@ -19,7 +19,6 @@ class WalletName extends StatelessWidget {
           fontSize: size,
           color: color,
           fontWeight: FontWeight.w400,
-          fontStyle: FontStyle.italic,
         ),
         softWrap: false,
         overflow: TextOverflow.ellipsis,