Victor Baybekov

Results 87 comments of Victor Baybekov

That would be interesting. ServiceStack allows to self-host a server even without admin rights, this example just works on .NET 3.5: https://github.com/ServiceStack/ServiceStack/wiki/Self-hosting

It would be nice to have at least binary serialization with Serializable attribute. For now I am thinking about some extension methods in a dependent library where I could make...

For leftovers, Instead of ``` if i < len then let leftOver = len - i let leftOverArray1 = Array.zeroCreate count let leftOverArray2 = Array.zeroCreate count for j in 0...

Truffle-contract is working on this in their web3 1.0 PR, but I do not follow closely the status. It's simpler to just have different method names.

Could we check if a method already exists and just add an underscore, e.g. `transfer_`, as a temporary step. Then I don't know yet what is the best solution for...

https://github.com/trufflesuite/truffle-contract/pull/75 https://github.com/trufflesuite/truffle-contract/pull/94 Both PRs propose syntax such as `token.transfer["address,uint256"](...)`, i.e. method lookup by types signature. We won't be able to provide static types with this approach. We could generate methods...

@frostiq I have fixed the duplicate identifier output by just filtering duplicates. You could always access overloads via untyped `web3`. I will likely not touch this issue with a proper...

I haven't added listening (events) but I use polling of contract logs on every block change (I also poll for block number via `setTimeout`). https://github.com/dbrainio/Soltsice/blob/5bcb6cd393f83b59b1ed4b80cfd63f6558648fcc/src/SoltsiceContract.ts#L376 https://github.com/dbrainio/Soltsice/blob/528c04bc8396a62e66daed16bc3fe6b7f8c7ff43/src/W3.ts#L255

I did not want to bring `Rx` dependency. However a simple event or callback could be better than writing boilerplate polling with `setTimeout` code. Or `asyncIterator` as a property. Then...