Andrey

Results 7 comments of Andrey

@sonic182 my advice - implement it yourself and send @valinurovam a PR, shouldn't be very hard. I almost added pluggable backend support myself as I needed a memory-only backend, but...

Loops are not a feature of ace but rather a feature of golang html/templates. You can use smth like this: Say your data passed to the template is `[]string`. Then:...

This one can be closed as I resubmitted the pull request in #116

@taako-502 this issue has already been fixed, so it's working now

@chikeichan I think you can introduce async/await (or really just promises because async/await is just syntax sugar on top of that) without breaking downward compatibility. Currently, you have two ways...

So for example, exportToFIle will become something like this: ``` exportToFile = function (keyObject, keystore, cb) { var outfile, outpath, json, fs; keystore = keystore || "keystore"; outfile = this.generateKeystoreFilename(keyObject.address);...

@kpruden not an answer, but I am trying to figure out how to write and use plugins - would you have some pointers? The documentation shows how to write one...