Capitalisk / ldpos-commander

CLI client for LDPoS blockchains
MIT License
3 stars 2 forks source link

User should be able to create and send transactions interactively #3

Closed jondubois closed 3 years ago

jondubois commented 3 years ago

Once connected, the REPL client should prompt the user for commands to allow them to make transactions on the LDPoS blockchain.

The following transactions needs to be supported:

The client should use the prepareTransaction method of the ldpos-client-js to create signed transaction and then post them to the node using the postTransaction method.

maarteNNNN commented 3 years ago

transfer, vote and unvote are done. I need to understand better how to do registerMultisigWallet, registerSigDetails, registerMultisigDetails and registerForgingDetails within the ldpos-client.

I wrote the logic for registerMultisigWallet, registerMultisigDetails, registerForgingDetails however I'm not sure it's implemented the right way. I don't know how registerSigDetails works.

transfer works with the test I did. vote and unvote I tried but failed.