Python implementation of the BitClout signing algorithm.
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.
To sign a single transaction you can run the script from the command line whith the command:
python3 Sign_Transaction.py <seedHex> <TransactionHex>