-
Notifications
You must be signed in to change notification settings - Fork 498
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Want to write a python script that hold private key with pycoin #327
Comments
i looked through the closed issues and found a way to generate a private key programmatically but im getting an error...
i get this error: what am i doing wrong?
|
i tried running python3.7 and i now get this error
|
|
I would recommend using |
Hi, i'm trying this too, but looks like the >>> key = Key(secret_exponent=se)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/aaaaaaa/work/virtualenvs/vpycoin3/pycoin/pycoin/key/Key.py", line 55, in __init__
raise ValueError("generator not specified when secret exponent specified")
ValueError: generator not specified when secret exponent specified````
Maybe it will be useful to have this in the documentation? |
Hi,
im new into this, so apologies if its an obvious question.
i would like to have a pure python script using pycoin that holds the private key, sends, receives, etc... what is the best way to do that and at the same time keeping the private key secure within the app, so that i dont lose all my funds. Im assuming that is what pycoin was written to allow a user to do.
is there anything special i need to do to keep the privatekey secure within the app?
Also, how do i keep persistence of the private key? im assuming u create the private key once and thats its. Or is it better to hardcode it? So that the app can always access its funds?
im specifically interested in BTC, LTC, DASH.
I would like to have this script handle funds for trading. so, if pycoin is not the best use case for this please let me know.
thanks
The text was updated successfully, but these errors were encountered: