kumavis
kumavis
https://npmfs.com/compare/ethjs-query/0.3.7/0.3.8/
https://npmfs.com/compare/ethjs-query/0.3.7/0.3.8/
does `0` imply an error or would it be better to explicitly error. dont want to accidentally send to 0.
array with properties example ``` > x=[] [] > x.a=1 1 > x.b=2 2 > x [ a: 1, b: 2 ] > x.push('a') 1 > x.push('b') 2 > x.push('c')...
@whyrusleeping worth noting that the public key may not be available, either bc: * there isnt one (e.g. contract's address is just pseudo-random) or * the account hasn't made a...
one other note from IRC convo was: > the 1 byte version prefix can be a varint pretty easily
I've seen some automated tools out there that parse code for web api usage, can't remember any sepcifics
> streaming support for fetch I believe this is a thing. just some weird browser standard promisy pull-stream like thing. poor adoption currently. https://developer.mozilla.org/en-US/docs/ReadableStream https://developer.mozilla.org/en-US/docs/ReadableStream#Browser_compatibility ``` fetch('/big-data.csv') .then(function(response) { var...
@jefft0 could make a special gateway that works like this `${cid}.ipfs.io/index.html` edit: except the cid would need to be in a case-insensitive encoding
@jefft0 Oh ok I misunderstood which you wanted (isolation vs unification). I have a project that exposes the ethereum blockchain app api to a webapp and unifies the cache inside...