In Ethereum, does Account nonce depend on network?
I mean for same address on different network, will there be different nonce?
In Ethereum, does Account nonce depend on network?
I mean for same address on different network, will there be different nonce?
Yes, nonce is relative to the number of tx you did in the network.
So if do n tx on mainnet your ropsten nonce will still be 0.
is Account nonce depends on network?
Yes. The nonce is part of the state data associated with each account. The state data will be difference for each different network you use the same address on (i.e. private key).
There is no way for one network's state data to be shared with another network.