Metadata-Version: 1.1
Name: emojaddress
Version: 0.1.4
Summary: emoji mnemonic for Ethereum and Bitcoin addresses
Home-page: https://github.com/lonex/emojaddress
Author: stonelonely
Author-email: lonex@gmail.com
License: MIT license
Description: ===========
        emojaddress
        ===========
        
        Emoji mnemonic for Ethereum and Bitcoin addresses.
        
        Features
        --------
        
        Bitcoin and Ethereum address are hard to short-memorize when you navigate websites like etherscan.io or blockchain.info. This project is to ease that
        
        - Transalates address into mnemonic
        - Supports mnemonic for English, Chinese and Emoji
        
        Deterministic wallets use mnemonic for private key. The same idea can be applied to public address. It's a matter of encoding eventually. The BTC and Ethereum public addresses are based on a 20 bytes (160 bit) integer. Each dictionary's size is 2048. The address is encoded in 15 mnemonic to cover the entropy.
        
        
        Install
        -------
        
        .. code-block:: bash
        
            > pip install emojaddress
        
        *Only* supports Python3. A separate JavaScript version is in the work.
        
        Example
        -------
        
        .. code-block:: python
        
            In [1]: from emojaddress.address import Address
            In [2]: address = Address()
            # see examples in these test cases
        
        - `See example usages here <https://github.com/MerkleData/emojaddress/blob/master/tests/test_emojaddress.py>`_
        - `The difference in an Etherscan page <https://github.com/MerkleData/emojaddress/blob/master/sample_ethscanio.html.md>`_
        
        Credits
        -------
        
        - BIP dictionary based on `bitcoin project`_ 
        - Emoji unicodes are copied from the `Emoji Python project`_
        
        .. _`bitcoin project`: https://github.com/bitcoin/bips/tree/master/bip-0039
        .. _`Emoji Python project`: https://github.com/carpedm20/emoji
        
        Credits2
        --------
        
        This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
        
        
        
        =======
        History
        =======
        
        0.1.0 (2018-08-04)
        ------------------
        
        * First release on PyPI.
        
Keywords: emojaddress
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
