Sina M

Results 81 issues of Sina M

Sorry to be raising an old question again: I was wondering what are the biggest challenges in having an async-by-default interface? reading [here](https://github.com/ewasm/design/blob/master/interface_questions.md) it says: > After evaluating the trade-offs...

I got the error: ```error: in "GeneralStateTests/stShift": Transaction not found! (Test: 'shiftCombinations', Network: Byzantium, dataInd: -1, gasInd: -1, valInd: -1)``` when running testeth with the flag `--singlenet Byzantium`. Looking at...

testeth

Most values used in the VM have a pre-specified width, and the EVM operates on 256 bit words. Built-in javascript numbers have 53 bits, which is not enough for most...

eval: needs discussion
package: vm

PR state: WIP
package: vm

[evmone](https://github.com/ethereum/evmone) is a performant EVM interpreter. We can apply one of the evmone optimizations in the VM. From the readme: ` 3. The gas cost and stack requirements of block...

type: performance
prio: P3 important
package: vm

It'd be often helpful for debugging if the state test runner would optionally (e.g. given a `--dumpState` flag) print either the full post state (all accounts in trie and their...

type: tests
prio: P3 important
effort: E1 hours
package: vm

Port of @gballet's [multiproof-rs](https://github.com/gballet/multiproof-rs) which is itself an implementation of @ledgerwatch's [multiproof algorithm](https://github.com/ledgerwatch/turbo-geth/blob/master/docs/programmers_guide/guide.md) (with minor differences).

This PR was based on discussions with @zmitton, with the goal of reducing proof size for https://github.com/ewasm/scout/pull/11. It generates proofs for multiple keys, and de-duplicates the proof nodes based on...

Related to https://github.com/ewasm/design/issues/138 and https://github.com/ewasm/design/pull/187

Hey there! I'm using `v.1.3.0` of this library to query a high number (say 2000) of the same thing: ```graphql query slots($blocknum: Long!) { slot0: block (number: $blocknum) { account(address:...