When trying to pass in a bytes parameter into useWeb3Contract
how would you pass this data that is required as a parameter. For instance an empty bytes data.
usually you can use an empty string, at least that is how you can do it with web3 directly
Awesome. Iād try that out
What about structs?
For passing in a struct, for the value try an array e.g. [value1, value2]
or
[
{
name: value1,
another: value2,
}
]