Alex Beregszaszi

Results 640 comments of Alex Beregszaszi

How about `accountState`, which returns: - 0: empty - 1: external (exists, but has no code) - 2: contract (exists, but has code) - 3: evicted (state-rent, this is the...

@s1na cannot you emulate this feature by `externalBalance() != 0 || extcodeHash() != 0` ?

Hm, perhaps we just need to implement #183, because that brings in `EXTCODEHASH` which supposed to be able to tell if an account exists: https://eips.ethereum.org/EIPS/eip-1052

> Is there bounded loops, and if so do you have an idea how to detect them? Say the loop counter is a constant. i.e. it could unrolled. > Do...

To clarify: this is an option, which doesn't need to be enforced everywhere. The reason we discussed it at Devcon3 was in a different design context, where it is extremely...

It is not only the gas limit, but a combination of gas limit and gas price. There are two ways to cause memory allocation systematically fail while still not running...

A translation of the proposal into (non-comprehensive) Ewasm design follows: 1. Entry point is `main()`, receives no arguments 2. The following EEI methods are defined: - `getDataLength() -> i32` -...

Also related: EIP 104 (https://github.com/ethereum/EIPs/issues/36)

@chfast @holiman can you please raise your voices here?

Yes, during runtime. Currently `numberOfTopics` controls how many of the topic counters are used. If say `numberOfTopics` is 2, then `topic3` and `topic4` are ignored entirely. The question is: should...