Martín Triay
Martín Triay
+1 @KurzGedanke and @berrycoiled
> This is in the `utils/constants` directory. Is that intentional? The category seems wrong to me. It was wrong, thanks.
I'm not sure. On one hand I wouldn't rush releasing this feature, on the other I'm uncertain of how documented it should be. I'm not sure if it's meant to...
Related to https://github.com/software-mansion/protostar/pull/891.
For reference: https://github.com/starkware-libs/cairo-lang/blob/master/src/starkware/cairo/common/uint256.cairo#L132-L137 ```cairo func uint256_lt{range_check_ptr}(a : Uint256, b : Uint256) -> (res : felt): if a.high == b.high: return is_le(a.low + 1, b.low) end return is_le(a.high + 1, b.high)...
The reason I did not use `Initializable` was to isolate the initialization of the proxy from the implementation. If it did, initializing the proxy would automatically initialize the implementation, they...
> But the name of the storage variable to handle "already initialized" is not relevant right Yes it is. The storage address of a given storage variable is a [function...
> I think importing libraries from libraries is not against the Extensibility Pattern. All in all, is against the pattern to use initializers anywhere but in constructors, this includes (i.e....
Thanks for doing this! But I don't think just sticking a second form like that makes up a good interface. The difficult part of this issue is to come up...
Muy piola! Cuál te parece que podría ser una buena test suite para un feature tan delicado? Al margen de implementarla por completo.