File size: 21,505 Bytes
4585d4c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
import logging
import os
from dataclasses import dataclass, field
import time
import string
import secrets
import hashlib
from queue import Queue
from typing import List, Dict, Optional

import streamlit as st
from aptos_sdk.async_client import RestClient
from aptos_sdk.account import Account
from aptos_sdk.transactions import EntryFunction
from aptos_sdk.bcs import Serializer
from ecdsa import SigningKey, VerifyingKey, SECP256k1
from ecdsa.util import sigencode_der, sigdecode_der
from collections import defaultdict
from itertools import islice
import random
from dotenv import load_dotenv

from pages import initApp

# Load environment variables
load_dotenv()

# UTF-8 character domains for elegant password selection
DOMAINS = {
    'ascii': string.ascii_letters + string.digits,
    'symbols': '!@#$%^&*()_+-=[]{}|;:,.<>?',
    'emojis': "๐Ÿ˜€๐Ÿ˜‚โค๏ธ๐Ÿ‘๐Ÿ™๐Ÿ˜๐Ÿ˜ญ๐Ÿ˜…๐ŸŽ‰๐Ÿ”ฅ๐Ÿ’ฏ๐Ÿ˜Ž๐Ÿค”๐Ÿคฆ๐Ÿ˜ด๐Ÿค–๐Ÿ‘€โœจโœ…๐Ÿš€๐Ÿ’Ž๐ŸŒŸโญ๐Ÿ’ซ๐ŸŽฏ๐ŸŽจ๐ŸŽช๐ŸŽธ๐ŸŽต๐ŸŽถ๐Ÿ†๐Ÿ…๐ŸŽŠ๐ŸŽˆ๐ŸŽ๐ŸŽ€๐ŸŒˆ๐ŸŒธ๐ŸŒบ๐ŸŒป๐ŸŒท๐ŸŒน",
    'hearts': "๐Ÿ’–๐Ÿ’๐Ÿ’˜๐Ÿ’—๐Ÿ’“๐Ÿ’•๐Ÿ’ž๐Ÿ’œ๐Ÿงก๐Ÿ’›๐Ÿ’š๐Ÿ’™๐Ÿค๐Ÿ–ค๐ŸคŽโฃ๏ธ๐Ÿ’‹",
    'nature': "๐ŸŒณ๐ŸŒฒ๐ŸŒด๐ŸŒฟ๐Ÿ€๐ŸŒพ๐ŸŒป๐ŸŒบ๐ŸŒธ๐ŸŒท๐ŸŒน๐ŸŒผ๐ŸŒต๐ŸŒฑ๐Ÿƒ๐ŸŒฟ๐Ÿฆ‹๐Ÿ๐Ÿž๐Ÿ•ท๏ธ",
    'food': "๐ŸŽ๐ŸŒ๐Ÿ‡๐Ÿ“๐Ÿˆ๐Ÿ‰๐ŸŠ๐Ÿ‹๐Ÿฅญ๐Ÿ‘๐Ÿ’๐Ÿฅ๐Ÿ๐Ÿฅฅ๐Ÿ…๐Ÿฅ‘๐Ÿ†๐Ÿฅ”๐Ÿฅ•๐ŸŒฝ",
    'animals': "๐Ÿถ๐Ÿฑ๐Ÿญ๐Ÿน๐Ÿฐ๐ŸฆŠ๐Ÿป๐Ÿผ๐Ÿจ๐Ÿฆ๐Ÿฏ๐Ÿฎ๐Ÿท๐Ÿธ๐Ÿต๐Ÿ”๐Ÿง๐Ÿฆ†๐Ÿฆ‰๐Ÿฆ…๐Ÿบ๐Ÿ—๐Ÿด",
    'travel': "โœˆ๏ธ๐Ÿš†๐Ÿš‚๐Ÿš„๐Ÿš˜๐Ÿšฒ๐Ÿ›ด๐Ÿ›ต๐Ÿ๏ธ๐Ÿš•๐Ÿš–๐Ÿš๐Ÿš€๐Ÿ›ธ๐Ÿšข๐Ÿšค๐Ÿ๏ธ๐Ÿ–๏ธ๐Ÿ”๏ธโ›ฐ๏ธ๐Ÿ•๏ธ๐ŸŒ‹",
    'sports': "โšฝโšพ๐Ÿ€๐Ÿ๐Ÿˆ๐Ÿ‰๐ŸŽพ๐Ÿ“๐Ÿธ๐ŸฅŠ๐Ÿฅ‹โ›ณ๐ŸŒ๏ธโ€โ™‚๏ธ๐Ÿ„โ€โ™€๏ธ๐ŸŠโ€โ™€๏ธ๐Ÿง—โ€โ™‚๏ธ๐Ÿšดโ€โ™€๏ธ๐Ÿ†๐Ÿ…๐Ÿฅ‡๐Ÿฅˆ๐Ÿฅ‰",
    'tech': "๐Ÿ“ฑ๐Ÿ’ปโŒจ๏ธ๐Ÿ–ฅ๏ธ๐Ÿ–จ๏ธ๐Ÿ’พ๐Ÿ’ฟ๐Ÿ“ท๐Ÿ”Œ๐Ÿ“ก๐Ÿ”‹๐Ÿ”ฌ๐Ÿ”ญ๐Ÿ“š๐Ÿ“โœ๏ธ๐Ÿ”๐Ÿ”‘๐Ÿ”’",
    'music': "๐ŸŽต๐ŸŽถ๐ŸŽธ๐ŸŽน๐ŸŽท๐ŸŽบ๐ŸŽป๐Ÿฅ๐ŸŽผ๐ŸŽค๐ŸŽง๐Ÿ“ป๐ŸŽ™๏ธ๐ŸŽš๏ธ๐ŸŽ›๏ธ",
    'weather': "โ˜€๏ธ๐ŸŒค๏ธโ›…๐ŸŒฅ๏ธโ˜๏ธ๐ŸŒฆ๏ธ๐ŸŒง๏ธโ›ˆ๏ธ๐ŸŒฉ๏ธ๐ŸŒจ๏ธโ„๏ธ๐Ÿ’จโ˜ƒ๏ธโ›„๐ŸŒฌ๏ธ๐ŸŒ€๐ŸŒˆโ˜”โšก",
    'zodiac': "โ™ˆโ™‰โ™Šโ™‹โ™Œโ™โ™Žโ™โ™โ™‘โ™’โ™“โ›Ž",
    'numbers': "0๏ธโƒฃ1๏ธโƒฃ2๏ธโƒฃ3๏ธโƒฃ4๏ธโƒฃ5๏ธโƒฃ6๏ธโƒฃ7๏ธโƒฃ8๏ธโƒฃ9๏ธโƒฃ๐Ÿ”Ÿ",
    'japanese': "ใ‚ใ„ใ†ใˆใŠใ‹ใใใ‘ใ“ใ•ใ—ใ™ใ›ใใŸใกใคใฆใจใชใซใฌใญใฎใฏใฒใตใธใปใพใฟใ‚€ใ‚ใ‚‚ใ‚„ใ‚†ใ‚ˆใ‚‰ใ‚Šใ‚‹ใ‚Œใ‚ใ‚ใ‚’ใ‚“",
    'korean': "ใ„ฑใ„ดใ„ทใ„นใ…ใ…‚ใ……ใ…‡ใ…ˆใ…Šใ…‹ใ…Œใ…ใ…Žใ…ใ…‘ใ…“ใ…•ใ…—ใ…›ใ…œใ… ใ…กใ…ฃ",
    'chinese': "็š„ไธ€ๆ˜ฏไธไบ†ไบบๆˆ‘ๅœจๆœ‰ไป–่ฟ™ไธบไน‹ๅคงๆฅไปฅไธชไธญไธŠไปฌ",
    'arabic': "ุงุจุชุซุฌุญุฎุฏุฐุฑุฒุณุดุตุถุทุธุนุบูู‚ูƒู„ู…ู†ู‡ูˆูŠ",
    'cyrillic': "ะฐะฑะฒะณะดะตั‘ะถะทะธะนะบะปะผะฝะพะฟั€ัั‚ัƒั„ั…ั†ั‡ัˆั‰ัŠั‹ัŒััŽั",
}

COLORS = ["red", "green", "blue", "yellow"]
DIRECTIONS = ["Up", "Down", "Left", "Right", "Skip"]
DIRECTION_MAP = {
    "Up": "U", "Down": "D", "Left": "L", "Right": "R", "Skip": "S"
}

# System configuration
SYSTEM_WALLET_ADDRESS = os.getenv('APTOS_ACCOUNT') or "0xSYSTEM_WALLET_NOT_SET"
SYSTEM_WALLET_PRIVATE_KEY = os.getenv('APTOS_PRIVATE_KEY')

def generate_nonce() -> str:
    return secrets.token_hex(32)

def keccak256(data: str) -> str:
    return hashlib.sha3_256(data.encode('utf-8')).hexdigest()

def generate_entropy_layers(seed: str, layers: int) -> List[int]:
    arr = []
    cur = seed
    for _ in range(layers):
        random_bytes = secrets.token_bytes(2).hex()
        h = keccak256(cur)
        val = int(h[:8], 16)
        arr.append(val)
        cur = h + random_bytes
    return arr

@dataclass
class SessionState:
    failure_count: int = 0
    first_failure_ts: Optional[float] = None
    last_failure_ts: Optional[float] = None
    d: int = 1
    high_abuse: bool = False

@dataclass
class Transaction:
    """Represents a single transaction in the system"""
    txn_hash: str
    sender: str
    recipient: str
    amount: float  # Amount in APT
    timestamp: float  # Unix timestamp
    is_credit: bool  # True if receiving funds, False if sending
    status: str  # "completed", "pending", "failed"
    description: str = ""  # Optional description

@dataclass
class App:
    queue: Queue = field(default_factory=Queue)
    wallet: Optional[Account] = None
    client: RestClient = field(default_factory=lambda: RestClient("https://testnet.aptoslabs.com/v1"))
    system_wallet: Optional[Account] = None
    is_registered: bool = False
    is_authenticated: bool = False
    selected_secret: Optional[str] = None
    direction_mapping: Dict[str, str] = field(default_factory=dict)
    recent_characters: List[str] = field(default_factory=list)
    favorite_characters: List[str] = field(default_factory=list)
    transactions: List[Transaction] = field(default_factory=list)  # Track all transactions

    async def get_account_balance(self, address):
        """Get account balance in APT"""
        if not self.wallet:
            logging.error("No wallet connected; cannot fetch balance.")
            return 0

        try:
            resources = await self.client.account_resources(address)
            apt_balance = 0
            for resource in resources:
                if resource['type'] == '0x1::coin::CoinStore<0x1::aptos_coin::AptosCoin>':
                    apt_balance = int(resource['data']['coin']['value']) / 100000000  # Convert from octas to APT
                    break
            logging.info("Fetch resources , got resources:", resources)
            logging.info(f"Fetched balance for {address}: {apt_balance} APT")
            return apt_balance
        except Exception as e:
            logging.error(f"Error fetching balance for {address}: {str(e)}")
            raise Exception(f"Failed to check balance: {str(e)}")

    def get_account_balance_sync(self, address):
        """Synchronous wrapper for get_account_balance"""
        try:
            # Use our clean nest_asyncio implementation
            # Important: Create a fresh coroutine each time, never reuse
            from utils.nest_runner import async_to_sync
            # We call the function directly to get a fresh coroutine
            return async_to_sync(self.get_account_balance(address))
        except ValueError as e:
            logging.error(f"Coroutine error: {str(e)}")
            # Try one more time with a new coroutine
            return async_to_sync(self.get_account_balance(address))
        except Exception as e:
            logging.error(f"Error in get_account_balance_sync: {str(e)}")
            # Return 0 for balance rather than crashing completely
            return 0.0

    def add_transaction(self, txn_hash, sender, recipient, amount, is_credit=None, status="completed", description=""):
        """Add a transaction to the transaction history"""
        if is_credit is None:
            # Determine if this is a credit or debit based on sender/recipient
            if self.wallet:
                is_credit = recipient == str(self.wallet.address())
            else:
                is_credit = False

        # Create new transaction record
        txn = Transaction(
            txn_hash=txn_hash,
            sender=sender,
            recipient=recipient,
            amount=amount,
            timestamp=time.time(),
            is_credit=is_credit,
            status=status,
            description=description
        )

        # Add to transaction list
        self.transactions.append(txn)
        logging.info(f"Added transaction to history: {txn_hash} {'Credit' if is_credit else 'Debit'} {amount} APT")

        return txn

    async def fetch_account_transactions(self, address=None, limit=20):
        """Fetch transaction history for the given address from the blockchain"""
        if not address and self.wallet:
            address = str(self.wallet.address())

        if not address:
            logging.error("No wallet address provided for transaction history")
            return []

        try:
            # Use Aptos SDK to get account transactions
            # We need to handle this differently since AsyncRestClient doesn't have get_account_transactions
            from utils.aptos_sync import RestClientSync

            # Create a sync client with the same URL as our async client
            sync_client = RestClientSync(self.client.base_url)

            # Use the sync client to get transactions
            transactions = sync_client.get_account_transactions(address, limit=limit)

            # Process transactions to identify credits and debits
            processed_txns = []
            for txn in transactions:
                try:
                    # Extract basic transaction data
                    txn_hash = txn.get('hash', '')
                    txn_version = txn.get('version', 0)
                    sender = txn.get('sender', '')
                    timestamp = txn.get('timestamp', 0) / 1000000  # Convert to seconds

                    # Extract payload data to determine transaction type and amount
                    payload = txn.get('payload', {})
                    function = payload.get('function', '')

                    # Only process coin transfers for now
                    if '0x1::coin::transfer' in function:
                        args = payload.get('arguments', [])
                        if len(args) >= 2:
                            recipient = args[0]
                            amount_octas = int(args[1])
                            amount_apt = amount_octas / 100000000  # Convert octas to APT

                            # Determine if credit or debit
                            is_credit = recipient == address

                            # Create transaction object
                            transaction = Transaction(
                                txn_hash=txn_hash,
                                sender=sender,
                                recipient=recipient,
                                amount=amount_apt,
                                timestamp=timestamp,
                                is_credit=is_credit,
                                status="completed",
                                description=f"Transaction {txn_version}"
                            )

                            processed_txns.append(transaction)

                except Exception as e:
                    logging.error(f"Error processing transaction: {str(e)}")
                    continue

            return processed_txns

        except Exception as e:
            logging.error(f"Error fetching transactions for {address}: {str(e)}")
            return []

    def fetch_account_transactions_sync(self, address=None, limit=20):
        """Synchronous wrapper for fetch_account_transactions using nest_asyncio"""
        if not address and self.wallet:
            address = str(self.wallet.address())

        if not address:
            logging.error("No wallet address provided for transaction history")
            return []

        try:
            # Use our clean nest_asyncio implementation
            from utils.nest_runner import async_to_sync
            return async_to_sync(self.fetch_account_transactions(address, limit=limit))
        except Exception as e:
            logging.error(f"Error fetching transactions synchronously: {str(e)}")
            return []

    def update_transaction_history(self):
        """Update the transaction history from the blockchain"""
        if not self.wallet:
            logging.error("No wallet connected; cannot update transaction history")
            return False

        try:
            # Fetch transactions from blockchain
            new_txns = self.fetch_account_transactions_sync(str(self.wallet.address()))

            # Add new transactions that aren't already in our list
            existing_txn_hashes = {txn.txn_hash for txn in self.transactions}

            for txn in new_txns:
                if txn.txn_hash not in existing_txn_hashes:
                    self.transactions.append(txn)

            # Sort by timestamp, most recent first
            self.transactions.sort(key=lambda x: x.timestamp, reverse=True)

            return True
        except Exception as e:
            logging.error(f"Error updating transaction history: {str(e)}")
            return False

    def __post_init__(self):
        # Initialize system wallet
        if SYSTEM_WALLET_PRIVATE_KEY:
            try:
                # Create system wallet from private key hex
                self.system_wallet = Account.load_key(SYSTEM_WALLET_PRIVATE_KEY)
            except Exception as e:
                st.error(f"Failed to initialize system wallet: {str(e)}")
        else:
            # Inform the operator that system wallet isn't configured
            st.warning("System wallet private key not set (APTOS_PRIVATE_KEY). System-send and registration actions will be disabled until configured.")

        # Sync any session-backed state (cached wallet, auth sessions, etc.) into this App instance
        try:
            self.load_from_session()
        except Exception:
            # Avoid crashing pages on import; failures here should not stop Streamlit page load
            logging.exception("Failed to load session state into App during __post_init__")

        # Persist this App object into Streamlit session_state for pages to access
        try:
            st.session_state['app'] = self
        except Exception:
            # Some Streamlit environments may not allow writing at import time; ignore
            pass

    # --- Session-backed helpers -------------------------------------------------
    @property
    def cached_wallet(self):
        """Proxy property for st.session_state['cached_wallet']"""
        return st.session_state.get('cached_wallet')

    @cached_wallet.setter
    def cached_wallet(self, value):
        st.session_state['cached_wallet'] = value
        # Keep the live App object in session as well
        st.session_state['app'] = self

    @property
    def auth_session(self):
        return st.session_state.get('auth_session')

    @auth_session.setter
    def auth_session(self, value):
        st.session_state['auth_session'] = value
        st.session_state['app'] = self

    @property
    def registration_auth(self):
        return st.session_state.get('registration_auth')

    @registration_auth.setter
    def registration_auth(self, value):
        st.session_state['registration_auth'] = value
        st.session_state['app'] = self

    def load_from_session(self):
        """Load common session-backed keys into the App instance.

        This ensures pages can safely rely on `app` fields even when navigating
        directly to a page mid-session.
        """
        # Load cached wallet if present
        cached = st.session_state.get('cached_wallet')
        if cached and not self.wallet:
            try:
                pk = cached.get('private_key')
                if pk:
                    clean_pk = pk[2:] if pk.startswith('0x') else pk
                    self.wallet = Account.load_key(clean_pk)
            except Exception:
                logging.exception("Failed to load cached wallet from session")

        # Bring in boolean flags if present
        self.is_registered = bool(st.session_state.get('is_registered', self.is_registered))
        self.is_authenticated = bool(st.session_state.get('is_authenticated', self.is_authenticated))

        # Load any other structured session items if present
        if 'direction_mapping' in st.session_state and not self.direction_mapping:
            self.direction_mapping = st.session_state.get('direction_mapping', self.direction_mapping)

    def save_to_session(self):
        """Persist useful App fields into Streamlit session_state.

        Call this after mutating the App so pages and reruns see updated values.
        """
        try:
            if self.wallet:
                st.session_state['cached_wallet'] = {
                    'address': str(self.wallet.address()),
                    'private_key': self.wallet.private_key.hex()
                }
            st.session_state['is_registered'] = self.is_registered
            st.session_state['is_authenticated'] = self.is_authenticated
            st.session_state['direction_mapping'] = self.direction_mapping
            st.session_state['app'] = self
        except Exception:
            logging.exception("Failed to save App state into session")

app = initApp()
# Page configuration
st.set_page_config(
    page_title="1P Wallet - 2FA for Web3",
    page_icon="๐Ÿ”’",
    layout="wide",
    initial_sidebar_state="expanded"
)

# Sidebar navigation
st.sidebar.title("๐Ÿ”’ 1P Wallet")
st.sidebar.markdown("---")

# Navigation menu
pages = {
    "๐Ÿ  Home": "home",
    "๐Ÿ’ณ Import/Generate Wallet": "wallet_setup",
    "๐Ÿ“ Registration": "registration",
    "๐Ÿ” Authentication": "authentication",
    "๐Ÿ‘ค Account": "account",
}

# Show Transaction History once wallet is connected
if app.wallet:
    pages["๐Ÿ“‹ Transaction History"] = "transaction_history"

# Only show Manage Wallet if authenticated
if app.is_authenticated:
    pages["๐Ÿ’ฐ Manage Wallet"] = "manage_wallet"

# Page selection
selected_page = st.sidebar.selectbox(
    "Navigate to:",
    options=list(pages.keys()),
    key=f"app_page_selector_{id(pages)}"
)

current_page = pages[selected_page]

# Display current status in sidebar
st.sidebar.markdown("---")
st.sidebar.subheader("Status")
if app.wallet:
    st.sidebar.success("โœ… Wallet Connected")
    st.sidebar.text(f"Address: {str(app.wallet.address())[:10]}...")
else:
    st.sidebar.error("โŒ No Wallet")

if app.is_registered:
    st.sidebar.success("โœ… Registered")
else:
    st.sidebar.warning("โš ๏ธ Not Registered")

if app.is_authenticated:
    st.sidebar.success("โœ… Authenticated")
else:
    st.sidebar.warning("โš ๏ธ Not Authenticated")

# Main content area
st.title("๐Ÿ”’ 1P Wallet - 2FA for Web3")

# Route to appropriate page
if current_page == "home":
    st.markdown("""
    ## Welcome to 1P Wallet

    A secure 2FA system for Web3 wallets using elegant UTF-8 character selection.

    ### How it works:
    1. **Import or Generate** an Aptos wallet
    2. **Register** by selecting a single UTF-8 character as your secret
    3. **Transfer funds** to our secure system wallet
    4. **Authenticate** using the 1P visual grid system
    5. **Manage** your wallet securely through our system

    ### Features:
    - ๐ŸŽจ Elegant UTF-8 character selection (no keyboard typing!)
    - ๐Ÿ”’ Secure backend wallet system
    - ๐ŸŒ Multi-language support
    - ๐ŸŽฏ Visual grid-based authentication
    - ๐Ÿ’ฏ No private key exposure after registration
    """)

    if not app.wallet:
        st.info("๐Ÿ‘ˆ Start by setting up your wallet in the sidebar")
    elif not app.is_registered:
        st.info("๐Ÿ‘ˆ Next, register your 1P secret")
    elif not app.is_authenticated:
        st.info("๐Ÿ‘ˆ Authenticate to access wallet management")

else:
    # Import and execute the page module properly
    import sys
    import importlib.util

    # Define variables that will be available to the page modules
    page_globals = {
        'st': st,
        'app': app,
        'DOMAINS': DOMAINS,
        'COLORS': COLORS,
        'DIRECTIONS': DIRECTIONS,
        'SYSTEM_WALLET_ADDRESS': SYSTEM_WALLET_ADDRESS,
        'DIRECTION_MAP': DIRECTION_MAP,
        'Account': Account,
        'EntryFunction': EntryFunction,
        'Serializer': Serializer,
    }

    # Handle page routing
    if current_page == "wallet_setup":
        spec = importlib.util.spec_from_file_location("wallet_setup", "pages/wallet_setup.py")
        page_module = importlib.util.module_from_spec(spec)
        page_module.__dict__.update(page_globals)
        spec.loader.exec_module(page_module)

    elif current_page == "registration":
        spec = importlib.util.spec_from_file_location("registration", "pages/registration.py")
        page_module = importlib.util.module_from_spec(spec)
        page_module.__dict__.update(page_globals)
        spec.loader.exec_module(page_module)

    elif current_page == "authentication":
        spec = importlib.util.spec_from_file_location("authentication", "pages/authentication.py")
        page_module = importlib.util.module_from_spec(spec)
        page_module.__dict__.update(page_globals)
        spec.loader.exec_module(page_module)

    elif current_page == "manage_wallet":
        if app.is_authenticated:
            spec = importlib.util.spec_from_file_location("manage_wallet", "pages/manage_wallet.py")
            page_module = importlib.util.module_from_spec(spec)
            page_module.__dict__.update(page_globals)
            spec.loader.exec_module(page_module)
        else:
            st.error("Please authenticate first to access wallet management.")
            st.info("๐Ÿ‘ˆ Use the Authentication page to verify your 1P secret")

    elif current_page == "account":
        spec = importlib.util.spec_from_file_location("account", "pages/account.py")
        page_module = importlib.util.module_from_spec(spec)
        page_module.__dict__.update(page_globals)
        spec.loader.exec_module(page_module)

    elif current_page == "transaction_history":
        spec = importlib.util.spec_from_file_location("transaction_history", "pages/transaction_history.py")
        page_module = importlib.util.module_from_spec(spec)
        page_module.__dict__.update(page_globals)
        spec.loader.exec_module(page_module)

# Footer
st.sidebar.markdown("---")
st.sidebar.markdown("Made with โค๏ธ using Streamlit")