Alex Beregszaszi

Results 658 comments of Alex Beregszaszi

> Should we create a base class "TokenOwner" that has functions to transfer tokens? What is that exactly? However we said not to include ERC standards in this library, at...

In https://github.com/ethereum/solidity/issues/9358#issuecomment-655626101 there was as suggestion for other special namespaces like `crypto`.

Since this has been a bit stalled, perhaps the best way would be adding a new experimental flag to the compiler (either `pragma experimental stdlib;` or a compiler flag) which...

Based on the internal architecture of `GlobalContext` it may be less intrusive to do this via a compiler flag, but that would mean external libraries can't really be used in...

> It's still not totally clear to me how the import mechanism works. I created a hackmd note to discuss: https://notes.ethereum.org/@solidity/r1lNFFdjec Copying the (I think) "decisions" from there: 1) Consider...

Experimented with this a idea a bit, pushed the work here: https://github.com/ethereum/solidity/tree/stdlib2 I think this is workable, we can slowly introduce parts of the stdlib without waiting for all the...

Created https://github.com/ethereum/solidity/projects/46 to group the required/considered features.

Moved some of the example code we had lying around to https://notes.ethereum.org/@solidity/Sy03Y8_c5 (most of this is incomplete)

I wonder if we should just start committing stdlib under `semanticTests/externalSources` and iterating on it? And once it is in a useful state, git move those files to `/stdlib` and...

Pushed here a new approach, where a compiler flag enables the stdlib. This way perhaps we can merge these 3 precompiles as a start.