jaspervdm
jaspervdm
Since the unknown6 field has been reverse engineered, did you start looking into implementing it in this API? My main concern is the encrypt.so/.dll that is used. I think we...
Every published tag on both the node and the wallet should ideally have a corresponding docs.rs entry. We should look into doing this automatically by adding a crates.io push to...
This is just a reminder to ourselves that we should revisit the api client on both the node and wallet: - Use global runtime in the client on the node...
Currently we are using the hyper client to do node api requests. Since hyper is a fairly low level library, we have do extra work to get support for things...
Still WIP. Add some of the more specific methods on the backend trait. A naive (iterating and filtering) default implementation is provided for these methods, but different types of backends...
I added functionality to download youtube videos asynchronized, using react event loop and promises. Example code: ```php $loop = \React\EventLoop\Factory::create(); $timer = $loop->addPeriodicTimer(1, function () { static $i = 0;...
A lot of functions in this repository don't take pointers in their arguments but somehow also don't take ownership of the argument (due to the usage of `unsafe` blocks). We...