Hi Team,
I am using typescript + moralis for my project. I realized that the useWeb3ExecuteFunction() hook does not have msgValue property so that I am coming across the issue as below:
Type '{ contractAddress: string; functionName: string; abi: ({ inputs: never[]; stateMutability: string; type: string; anonymous?: undefined; name?: undefined; outputs?: undefined; } | { anonymous: boolean; ... 4 more ...; outputs?: undefined; } | { ...; } | { ...; })[]; params: { ...; }; msgValue: any; }' is not assignable to type 'Web3ExecuteFunctionParameters'.
Object literal may only specify known properties, and 'msgValue' does not exist in type 'Web3ExecuteFunctionParameters'.
![Screen Shot 2021-12-20 at 1.59.12|690x279]
I am pretty sure that the msgValue is the property of this hook because it is working when using javascript (I actually tried)
And I checked the official video it also makes use of this property (1:17:44). (https://www.youtube.com/watch?v=WZWCzsB1xUE&t=4805s)
Please let me know if I am somehow missing anything?