@dpradell Hi David,
thank you very much for your detailed response. It makes a lot, lot more sense now. Thank youâŠ
I also noticed that SendEVMTransactionAsync is deprecated and there is a new SendTransactionAsync method. When I use the new method, I get this error:
Assets\Scripts\Moralis\ClaimNftController.cs(138,45): error CS1501: No overload for method âSendTransactionAsyncâ takes 7 arguments
this is what I have now that gives the error,
string resp = await Moralis.SendTransactionAsync(âRewardsâ, âmumbaiâ, âclaimRewardâ, _walletAddress, gas, new HexBigInteger(â0x0â), pars);
and I think it should be formatted like this;;;
(string recipientAddress, HexBigInteger value, HexBigInteger gas = null, HexBigInteger gasPrice = null)
What should I change my variables to? I currently did (âRewardsâ, gas, HexBigInteger(â0x0â), pars); and got the following error :
== Assets\Scripts\Moralis\ClaimNftController.cs(138,82): error CS1503: Argument 3: cannot convert from âobject[]â to âNethereum.Hex.HexTypes.HexBigIntegerâ
thank you for all the help