Nicolás Venturo

Results 144 comments of Nicolás Venturo

>Unfortunatelly, it is not possible to cast a bytes32[] to a address[] easily Actually I think this is not that difficult using inline assembly: ``` pragma solidity ^0.8.0; contract A...

@MrChico is there any particular reason why you wouldn't rely on logs? >it is not possible to recover state based on Approval+Transfer events since account can transferFrom to different destination...

The two basic use cases for events are: a) create a timeline for state, and b) react to something. `transferFrom` modifies `allowance` without emitting an `Approval` event, so it is...

The interfaces published on the `v2-interfaces` package all have a much less strict `pragma` now, so they should be usable with 0.8.x.

We've started the process of updating our releases: [`interfaces`](https://www.npmjs.com/package/@balancer-labs/v2-interfaces) and [`deployments`](https://www.npmjs.com/package/@balancer-labs/v2-deployments) (arguably the most important packages) have both been updated. We'll continue with some of the more library-like packages, and...

Not really. We still want to do it, and I was hoping the `unchecked` expression would be resolved by now. Unfortunately it looks like it's not going to happen, so...

One of the original motivations for waiting was https://github.com/ethereum/solidity/issues/10698 being addressed, though it looks like that won't happen in the short term. That said, you should definitely be able to...

I'd say it depends on what the content we add is. If its sort of intrusive, it might not fit in the middle of a complex explanation. Also, some of...

Hello @alsco77, thanks for reporting this! Could you provide a contract and a test snippet so we can reproduce this issue to better understand it?

The test is passing because the complete error message includes an 'x': >Returned error: VM E**x**ception while processing transaction: revert {message} We're currently matching against the entire string, not just...