In browser payments

I want to be able to make a payment to an account without having to access a backend service.

It is not to say that I cannot, I believe this project;

would allow that, it is just that I would prefer not to have to send private keys back to the server and have that process the payment.

I am working on an open source Chrome extension and there would be a lot more faith in it if it didn’t have to communicate with my servers to get the payment processed.

Thanks.

You should never need to - and the link you refer to is for rust implementation that was designed for Jormungandr-based networks.

You can use serialisation lib and try to have the transaction created on client, allowing users to sign it using their keys and submit the signed key to the chain.

3 Likes