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
@tarekskr Currently we use the eth.getTransactionCount. Since users can interact with the chain outside of MEW, we have to depend on the latest txcount on the chain. We might add a cacher and an automatic nonce incrementing function in the future but this has not been implemented yet.
Thanks @gamalielhere . The only problem with only using eth.getTransactionCount is that it will currently return the wrong number of transactions if the user has any pending transactions at the time they use MEW to post a new tx.
@tarekskr We are aware of that. But then again, users might have different activities outside of MEW, so we have no way to accurately estimate nonces. As mentioned above, we are looking to implement a cache system to keep track of nonces.
How does MyEtherWallet calculate the correct transaction nonce (including pending transactions) when multiple transactions are being issued?
It's well known that eth_getTransactionCount does not return the correct number of pending transactions, so I was wondering how you guys do it. Could be really beneficial for the community to learn from.
The text was updated successfully, but these errors were encountered: