Bruno Fondevila Rodríguez
Bruno Fondevila Rodríguez
@alcuadrado I see an inconsistent behaviour with return types on functions vs mappings, though. That solidity code above generates the following ABI for the mappedData property, where the field "ids"...
That being said, I just read the documentation stating that this is intentionally excluded: https://docs.soliditylang.org/en/v0.8.17/contracts.html#getter-functions > The mapping and arrays (with the exception of byte arrays) in the struct are...
I wrote a small app using hardhat & typechain to show that the EVM does return the array inside the struct. With a few modifications in the solidity compiler, I...
I don't think this is a problem; but we could definitely improve the developer experience. Rather than using the form `const a = await mynft['release(address)'].(user1.address)`, I would say it's best...
I'll share here a commit with some of the areas that I identified as needing changes, but I am concerned about the implications it may have on performance, and not...
Beautiful explanation, thanks! Perfectly understand the technical reasons behind the decision. I am however against the idea of making this a warning or an error. Errors and warnings are prompts...
> > [@felipesu19](https://github.com/felipesu19) are you able to point me in the direction for how and where I might implement this? It would be very useful for us as we are...