Ethan Frey

Results 175 comments of Ethan Frey

I had the same issue (on ubuntu 18.04). I think I got a step closer... Running `yarn run electron` got me: ``` electron: error while loading shared libraries: libgconf-2.so.4: cannot...

Ahh... also found the selector is off in the sample test. Try: `.click('#search_form_homepage_top .js-search-button')` Then everything worked

Before the spec PR, it would be good to be clear about what this is to be used for? To power a block explorer? To power a interactive map of...

Note that you can get a stream of all transactions from a tendermint node over websocket subscriptions. There is also a TraceKVStore model in CosmosSDK that can be enabled app...

> We want to organize information in specific tables related to what's in state - not just a dumb kv store. Actually with the ORM things in state are pretty-well...

I would love to see an experiment of optimistic rollup of general cosmwasm contracts. We approach 1.0 shortly, and that would be a good place to start experimenting, as no...

If we restrict the rollup to a subset of cosmwasm contracts that only interact with the bank module, this should be just as a complete vm as the ethereum vm...

Thanks @husio I agree with your first two points above. For the third one, let's think of what this means first, related to https://github.com/iov-one/weave/issues/822: * We want the full `weave.Context`,...

I thought that too, but there is a problem. The ends can often be `nil`. I guess `db.Iterate([]byte("alice"), nil)` means iterate from alice to the end and `db.Iterate(nil, []byte("alice"))` means...

I agree with Roman here. Trying to remove an argument or two just obfuscates the API. I think both ``` Iterate(start, end []byte) IterateReverse(start, end []byte) ``` as well as...