Alex Beregszaszi
Alex Beregszaszi
It seems the relevant EIPs are: - [EIP1014](https://eips.ethereum.org/EIPS/eip-1014) - [EIP1052](https://eips.ethereum.org/EIPS/eip-1052) - [EIP1087](https://eips.ethereum.org/EIPS/eip-1087) Last discussion here: https://github.com/ethereum/pm/issues/50
This has been suggested by @poemm as a possible solution for updating gas costs in deployed contracts. The current proposal is to meter contracts at deployment time which would lock...
The stack size and stack depth may be different on different engines (or machines the engine) is executed on, especially in the case of a JIT engine. The target machine...
Following the discussion: https://github.com/ethereum/evm2.0-design/pull/20#discussion_r73419436
In case WASM will not support asynchronous methods we might need to take an alternative approach. A simple way is to have each operation work with polling, `storageLoad` would become:...
Currenty sstore/sload writes/reads in 256 bit chunks - similarly to EVM. They could be changed to have a 3. parameter for `length`: - `length` must be > 0 - _gas_...
The word ABI is overused in ethereum and I think there are several levels to it. Not all of them are properly documented: - the way contracts pass data between...
Perhaps it is a bit premature to open this, but it felt easier to discuss it this way and not in an issue. The last discussion took place on #987....