Micah Zoltu
Micah Zoltu
This ticket seems to imply that the voice documentation is out of date, along with the original issue of voice receiving being missing. If I am looking to start a...
On the same topic of receiving voice, how does one differentiate between the different voice streams? In a channel with 2+ people talking at the same time, the client will...
I gave `io-ts` a try, but its interface is much more verbose and (IMO) harder to read than `runtypes`. This is the one *major* feature that would make `runtypes` totally...
@yuhr `funtypes` (a fork of `runtypes`) has this feature.
You don't have to use a custom parser. In your example, it looks like you don't want a custom parser, you just want a constraint. ```ts const TrimmedString = String.withConstraint(x...
We should probably move this conversation over to `funtypes` repository. Feel free to @mention me if you create a thread over there! (I believe that you may be misunderstanding the...
Oracles on Ethereum aren't valuable because of the information itself. They are valuable because they make that information immutably available to contracts via a well defined trust scheme. When one...
That feels like a bug in the linter. The linter shouldn't be complaining when a method with capital first letter is _called_, it should be complaining when such a method...
It is the solidity linter, not EcmaScript linter. Though, Solidity did also just add disabling linting via comments as well, but I don't know the comment off-hand.
Note: I did this because I mistakenly believed there was a race condition that may be leading to data corruption. Eventually I realized that wasn't the case but I already...