Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 714 Bytes

README.md

File metadata and controls

22 lines (13 loc) · 714 Bytes

made-with-python

BitClout-Sign-Transaction

Python implementation of the BitClout signing algorithm.

If you want to sign automaticaly

Include this in your code:

from Sign_Transaction import Sign_Transaction

Sign_Transaction(seedHex, transactionHex)

The function Sign_Transaction(seedHex, TransactionHex) take as input the seedHex of the account that you can find in your LocalStorage and the TransactionHex you want to sign.

If you want to sign manually

To sign a single transaction you can run the script from the command line whith the command:
python3 Sign_Transaction.py <seedHex> <TransactionHex>