Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/validators/crypto_addresses/__init__.py: 83%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

6 statements  

1"""Crypto addresses.""" 

2 

3# local 

4from .bsc_address import bsc_address 

5from .btc_address import btc_address 

6from .eth_address import eth_address 

7from .trx_address import trx_address 

8 

9__all__ = ("bsc_address", "btc_address", "eth_address", "trx_address")