Replies: 1 comment
-
Can you pls share the RPC url? It seems a lot of people are facing this problem, I am debugging it. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
In my React Native 0.66 app, the app listens to event emitted by smart contract and do some backend update after calling a function in smart contract. What I found is that the smart contract function was executed successfully but the event was not triggered. Here is the code with ethers 5.4:
Here is event definition in smart contract:
event sellerEscrowDeposited(address _seller, address _buyer, uint256 _value, string _item, uint256 _id);
Is there anything missing or not right in the on("event") code above which causes the
on
was not fired?Beta Was this translation helpful? Give feedback.
All reactions