Hacker News new | ask | show | jobs
by raingrove 3085 days ago
Yes, use the same recovery phrase. I wouldn't recommend making transactions simultaneously on multiple devices though.
1 comments

Why? They would be separate transactions on Blockchain
Ethereum is different from Bitcoin in that it uses simple account balances, which are easier to deal with in smart contracts. To prevent replay attacks, each account has a nonce, which is included in the transaction.

You can check the blockchain for the current nonce of an account, but if you sent from the same account simultaneously from two devices, both transactions would get the same nonce and one would fail.

That is correct! Thanks for explaining!