Metadata-Version: 2.1
Name: coda-ledger-cli
Version: 0.0.2
Summary: Scripts to interact with the Coda Ledger app
Home-page: https://github.com/rbkhmrcr/ledger-big-curves/
Author: Rebekah Mercer
Author-email: rebekah@o1labs.org
License: UNKNOWN
Description: # Coda signature app for Ledger Blue & Ledger Nano S/X
        
        Big disclaimer : This is a work in progress. Don't use it on a Ledger device
        that is handling or has ever handled private keys associated with any accounts
        of value.
        
        This app grew loosely from the Ledger samplesign app, but all of the python in `/cli`
        has been updated to use python3. So if you're here from another project and curious,
        it seems it is possible!
        
        Run `make` to check the build, and `make load` to build and load the application
        onto the device. Errors try to be helpful and the most common reason for failure
        is the device autolocking, so if something isn't working that might just be the
        reason. `make delete` deletes the app.
        
        See [Ledger's documentation](http://ledger.readthedocs.io) for further information.
        
        To get the app version:
        ```
        python3 cli/sign.py --request='version'
        ```
        To generate and return the public key generated with nonce 11:
        ```
        python3 cli/sign.py --request=publickey --nonce=11
        ```
        To sign a transaction, with pk 1234 (`"nonce":37` in the JSON gives the signature/account nonce, `--nonce=1234` gives the nonce with which the Ledger device will generate the sender private/public keypair):
        ```
        python3 cli/sign.py --request=transaction --nonce=1234 --transaction='{"sendPayment": {"is_delegation": "False","nonce": 37,"from": 123,"to": "tNci9iZe1p3KK4MCcqDa52mpxBTveEm3kqZMm7vwJF9uKzGGt1pCHVNa2oMevDb1HDAs4bNdMQLNbD8N3tkCtKNGM53obE9qFkkhmqMnKRLNLiSfPJuLGsSwqnL3HxSqciJoqJJJmq5Cfb","amount": 1000,"fee": 8,"valid_until": 1600,"memo": "2pmu64f2x97tNiDXMycnLwBSECDKbX77MTXVWVsG8hcRFsedhXDWWq"}}'
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
