I started developing a mobile wallet for Nano some time back as a side project and I couldn’t find a Javascript library that could help me create Nano wallets or sign blocks locally on the user’s device so the users’ keys won’t get compromised by sending to the back-end server. So I started learning about More…
Javascript
Eager Javascript ES6 generator functions
Today I finally got a viable use case for the ES6 generator functions. I needed to create a service which will generate cryptographic signatures asynchronously on the background. The generation might take over ten seconds depending on the device it’s ran on. It would also have to start generating me a new signature right after More…