Metadata-Version: 2.1
Name: bloxroute-gateway
Version: 1.62.13
Summary: bloXroute network gateway for scaling blockchains
Home-page: https://bloxroute.com
Author: bloXroute Labs
Author-email: support@bloxroute.com
License: MIT
Description: # App description
        
        * bloxroute-gateway connects you to the BDN, a blockchain distribution network, to greatly speed up block propagation
        times and scale your blockchain today.
        
        * [bloxroute-cli] is also included.
        
        # Prereqs
        
        This project depends on Python 3 and its development extensions. These instructions assuming you are running an
        operating system with Python 3 installed.
        
        Ubuntu:
        ```bash
        sudo apt-get update
        sudo apt install python3-dev gcc
        ```
        
        CentOS:
        ```bash
        yum install gcc libffi-devel
        ```
        
        Alpine Linux:
        ```bash
        apk add build-base automake libtool libffi-dev python3-dev linux-headers
        ```
        
        # Installation
        
        It's best to run this program inside of a [virtual environment][1], especially if your system's default Python 
        version is not 3.6 or 3.7. The recommended Python version is 3.7.
        
        bloxroute-gateway has C++ extensions that are compiled per operating system, so this PIP package is distributed 
        only as an [Source Distribution][2]. During installation, we require `distro` to determine the operating system version
        and `requests` to fetch the right set of C++ extensions from an S3 bucket.
        
        ```bash
        pip install requests==2.22.0 distro
        pip install bloxroute-gateway
        ```
        
        # Running
        
        ```bash
        $ bloxroute-gateway --blockchain-protocol [blockchain-protocol] --blockchain-network [blockchain-network]
        ```
        
        If you are running an Ethereum gateway, you will also need to specify the public key of your Ethereum node:
        ```bash
        $ bloxroute-gateway [...] --node-public-key [hex-encoded-key]
        ```
        
        ## Supported Protocols and Networks for bloXroute Mainnet
        * BitcoinCash: Mainnet
        * Ethereum: Mainnet
         
        # Documentation
        You can find our full technical documentation and architecture [on our website][documentation].
        
        # Troubleshooting
        
        Contact us at support@bloxroute.com for further questions.
        
        [1]: https://virtualenv.pypa.io/en/latest/
        [2]: https://docs.python.org/3.7/distutils/sourcedist.html#manifest-template
        [documentation]: https://bloxroute.com/docs/bloxroute-documentation/
        [bloxroute-cli]: https://pypi.org/project/bloxroute-cli/
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Requires-Python: ~=3.6
Description-Content-Type: text/markdown
