Luke Plaster
Luke Plaster
It'd be nice to be able to coerce convertible types to other types. ``` js const PersonRecord = Record({ id: String, phone: Coerce(Union(Number, String), String), }, 'Person'); ``` In this...
Plenty of sites use these. Could we mirror them in decentraleyes?
Do you have any experience with solutions like [amireh/happypack](https://github.com/amireh/happypack) for parallelising builds? There might only be a noticeable benefit in projects with over ~3k modules.
A list item's description text uses `text-overflow: ellipsis` to clip overflow nicely when the content is longer than its allotted space. However, titles can clip off long words or wrap...
Right now the curve that the library uses is set through a call to `tss.SetCurve(...)` and a reference to the given curve is stored globally, applying to all active Party...
Some minor work has already been done in the `wasm` branch but it would be great to finish this
There are a handful of hardware acceleration features in arm architectures that we could be making use of. armv8 has a PMULL instruction (polynomial multiplication) and there are dedicated instructions...
Most API methods now (especially utils) use hex strings, and others consume/return Buffer. We should use Buffer everywhere, as it is more modern, efficient and flexible (e.g. getting hex is...
https://github.com/binance-chain/javascript-sdk/blob/a089e04aa3299ebb9719e44380a1cd694a7829c4/src/decoder/types.js#L1 The type choices in this file are very random and this should be improved.