-3
currently I am creating/sharing an own crypto currency. Details about it are that it is a Scrypt Coin with Proof-Of-Work. But that's not really the question.
I will build a website around the coin and want to make users be able to create transactions without that their private key / wallet gets into my wallet (the websites wallet). For example I could create new wallets each time a user registers and show the private key with dumpprivatekey and RPC. But I want to make them to be able to make transactions with just entering their privatekey but without my website saving it or even their address later would be in the projects wallet. Best example for this is myetherwallet.com. Users enter their private key but the only location where this is saved is in an cookie on the users computer, not the website or any server of them itself. I hope you understand what I mean.
Thank you!
You forgot to ask a question. – David Schwartz – 2018-01-14T23:20:09.033
and you shouldn't proceed this way. It is a security issue by design, giving private keys over a web interface or storing priv keys in cookies or similiar. Read first about how to secure private keys, get along with the principles of HD wallets and its keys, and then try to implement a solution. Otherwise you will loose the funds for the keys! – pebwindkraft – 2018-01-15T08:25:34.423
I know what a HD wallet is. But the wallet would be controlled with RPC requests from the website / website server to the wallet system. If this way would be hacked, I would not only lose my, no, I would lose all wallets private keys and everyone who is registered on my website could lose his funds. This is why I want a way on making transactions without having their privatekeys stored on my servers, except on their systems. – dkb – 2018-01-17T12:16:44.400