Developer Uche
Developer Uche
foundryup does not work for windows users, has this been resolved? I am facing such issues
It seems this has been handled; ```rust #[derive(Clone, Debug, PartialEq, Eq, Hash)] #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] pub struct TxEnv { /// Caller aka Author aka transaction signer. pub caller:...
> not duplicate of #595 as the issue there was only the filters generated by the sol! macro. manually making filters worked fine for me. > > looks like for...
someone else's problem
Would like to work on this, but I don't think this is a core implementation that should be in the `contract` crate... I think it would be more oraganised to...
> I have a WIP implementation for the core ABI part here [alloy-rs/core#492](https://github.com/alloy-rs/core/pull/492) that may be of interest this is ineresting...
```rust fn basic_builder() { let token = Address::with_last_byte(1); let builder: MulticallBuilder = MulticallBuilder::new_aggregate(); assert_eq!(builder.calls(), &[]); let call1 = ERC20::totalSupplyCall {}; let builder: MulticallBuilder = builder.push(&call1, token); assert_eq!( builder.calls(), &[IMulticall3::Call {...
> > Would like to work on this, but I don't think this is a core implementation that should be in the `contract` crate... I think it would be more...
@DaniPopes would it be possible to merge your WIP? I would like to also add interfaces for Mulitcall1 and Multicall2... Lastly was there a reason [this](https://github.com/alloy-rs/core/pull/492) was closed?