Jean-Marie Nkurunziza
Jean-Marie Nkurunziza
@simolus3 It was something stupid. So initially I had something like this: `var response = await platform.invokeMethod("mySmartContractSetterMethod)"`. This was used to call the Android and iOS code. Then adding support...
@simolus3 For the contributions, I will definitely let you know.
@simolus3 I am hitting another issue. So when I call a setter function in my smart contract, the transaction goes through initially and it shows me the gas consumed is...
If I try to set the gas price and the max gas like this: ``` Transaction.callContract( gasPrice: EtherAmount.inWei(BigInt.one), maxGas: 100000, ) ``` , I then get the response ``` {...
@simolus3 Thanks for this. I will collect the data and share with you
@simolus3 Sorry. It's been a hectic 2 weeks. I could not return to working on my project. Instead of `gasPrice: EtherAmount.inWei(BigInt.one)` from the example, I used `gasPrice: EtherAmount.fromUnitAndValue(EtherUnit.gwei, 1)`, all...