You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, this might not be the best universal way to check tx status. For example:
what if I have a method that increase counter by 1 with 50% chance, do nothing with 50% chance? Polling contract state will run into infinite loop in this case.
what if the transaction failed?
In evm we usually have an explicit contract receipt to show if a tx has been mined. It also contains info such as if the tx succeeded or not. If there anything similar in TON blockchain?
The text was updated successfully, but these errors were encountered:
in the counter example, we indirectly check if the tx has succeeded by polling the contract state
However, this might not be the best universal way to check tx status. For example:
In evm we usually have an explicit contract receipt to show if a tx has been mined. It also contains info such as if the tx succeeded or not. If there anything similar in TON blockchain?
The text was updated successfully, but these errors were encountered: