xyizko commited on
Commit
89882f1
·
verified ·
1 Parent(s): ab8f147

Update app.py

Browse files

- Json Scheme Fixes

Files changed (1) hide show
  1. app.py +2 -2
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 check (e.g., '0x...' for Ethereum, 'bc1q...' for Bitcoin, 'T...' for Tron).
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: