Update app.py
Browse files- Json Scheme Fixes
app.py
CHANGED
@@ -29,10 +29,10 @@ def check_flagged_address(address: str) -> str:
|
|
29 |
"""Checks if a cryptocurrency address is flagged in the Bybit hack database and identifies its blockchain.
|
30 |
|
31 |
Args:
|
32 |
-
address (str): The cryptocurrency address to
|
33 |
|
34 |
Returns:
|
35 |
-
str: A message indicating whether the address is flagged and its blockchain.
|
36 |
"""
|
37 |
chain = infer_chain(address)
|
38 |
for entry in flagged_addresses:
|
|
|
29 |
"""Checks if a cryptocurrency address is flagged in the Bybit hack database and identifies its blockchain.
|
30 |
|
31 |
Args:
|
32 |
+
address (str): The cryptocurrency wallet address to verify, e.g., '0x...' for Ethereum, 'bc1q...' for Bitcoin, or 'T...' for Tron.
|
33 |
|
34 |
Returns:
|
35 |
+
str: A message indicating whether the address is flagged as part of the Bybit hack and its associated blockchain.
|
36 |
"""
|
37 |
chain = infer_chain(address)
|
38 |
for entry in flagged_addresses:
|