[Feature] ABI encode with json in Function
Component
other
Describe the feature you would like
fn abi_encode_input(&self, values: &[DynSolValue]) -> Result<Vec<u8>, Error>
values is very hard to build.
can we provider a method to build with json
fn abi_encode_input_with_json(&self, values: &[serde_json::Value]) -> Result<Vec<u8>, Error>
Additional context
No response
I could do it but need understand what are they for first.
I could do it but need understand what are they for first.
a contract call service that pass abi and args dynamically
Hey @zerosnacks curious if anyone is working on this. I would love to get started on this. As it is fairly straight forward, and i have good knowledge on the alloy crate from my previous contributions.