serinko 4 лет назад
Родитель
Сommit
992ed99cea
1 измененных файлов с 15 добавлено и 6 удалено
  1. 15 6
      texts_cli.py

+ 15 - 6
texts_cli.py

@@ -14,14 +14,23 @@ def _main_menu():
     """Displays the CLI main menu"""
     line_0 = ("**","Enter the number from the menu:")
     line = ("---","------------------------------",)
-    line_1 = ("1 -","Add a wallet to the the list")
-    
-    line_2 = ("2 -","Display the list of wallets")
-    line_3 = ("3 -","Display recent whale TXs on your list")
-    line_4 = ("
+    line_1 = ("1 -","Add a wallet to the your list")
+    line_2 = ("2 -","Remove a wallet from your list")
+    line_3 = ("3 -","Display the list of wallets")
+    line_4 = ("4 -","Display recent whale TXs on your EVM list")
+    line_5 = ("5 -","Display recent whale TXs on your SPL list")
 
+    table = [
+        line_0,
+        line,
+        line_1,
+        line_2,
+        line_3,
+        line_4,
+        line_5,
+    ]
+    return table
 
-    table = []
 
 def _choose_chain():
     msg = \