Micah Zoltu

Results 397 comments of Micah Zoltu

I would still like to see this change made. If the current maintainers think it is a bad idea I think it would be better to close the issue with...

After failing to get this working, I ended up just writing my own crypto library from scratch in native TS (0 dependencies). 😬 https://github.com/Zoltu/ethereum-crypto That being said, these days I...

@selvanair Can you shed some light on what discussions resulted in this getting closed as not planned? The conversation above seems to imply that there was weak support for fixing...

In that case, if these are truly user assets, then a save/open dialog should be used to let the user choose where to read/write files to. The idea is that...

Agree on just using ESM everywhere. `export default` should generally be avoided because it has poor developer ergonomics compared to exporting individual items. `rlp` currently doesn't work natively in browser...

The problem with any sort of async stuff with Signals right now is that when you do `mySignal.value` it calls `addDependency(this)` internally. This function checks to see if it is...

The pattern followed by `createResource` is the same one as I currently follow for async state. See https://github.com/Zoltu/preact-es2015-template/blob/master/app/ts/library/preact-utilities.ts#L18-L62 for my rendition of it. It works well, but not for "computed"...

This doesn't seem much better than just doing this (which works): ```ts const mySignal = signal(5) useComputed(async () => { mySignal.value const result = await fetch(...) const fetchedValue = getValueFromResult(result)...

This would enable me to update my JS-extension-adding TSC transformer such that it accepts a compiler option for "target file extension" and automatically rewrites any import targeting `.ts` to target...

@ljharb Browsers require an exact path match, and TypeScript outputs `.js` files when transpiling. So unless you have some build-time script that will strip extensions from files on disk, a...