Metadata-Version: 2.1
Name: watchtower-cash-py
Version: 0.1.7
Summary: Library for building Python applications that integrate with Watchtower.cash
Home-page: https://github.com/paytaca/watchtower-cash-py
Author: Joemar Taganna
Author-email: joemar@paytaca.com
License: MIT
Description: # watchtower-cash-py
        
        Library for building Python applications that integrate with Watchtower.cash
        
        ### Install
        ```bash
        pip install watchtower-cash-py
        ```
        
        ### Subscribe an Address
        For Watchtower to keep watch of the transactions of an address, it needs to be subscribed. A convenient function is included here to subscribe an address.
        ```python
        import watchtower
        
        # Subscribe function accepts either BCH or SLP address
        address_index = 0
        data = {
            'addresses': {
                'receiving': 'simpleledger:qqz95enwd6qdcy5wnf05hp590sjjknwfuq8sjhpv6x',  # Receiving addresses generated from 0/address_index
                'change': 'simpleledger:qr0rfdmntpdxn6le5ua7pc8v256n8vtj0u65c929le'  # Change addresses generated from 1/address_index
            },
            'project_id': '0000-0000-0000',  # <-- Generate this ID by creating a project at Watchtower.cash
            'wallet_hash': 'abcd0123456', # <-- (Optional) You generate this to track which HD wallet the address belongs to
            'address_index': address_index, # <-- (Optional) The index used to generate the addresses from HD wallet
            'webhook_url': 'https://xxx.com/webhook-call-receiver'  # <-- (Optional) Your webhook receiver URL
        }
        
        result = watchtower.subscribe(**data)
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
