I'm confused about the term word in solidity. When I google word, it says 1 word = 2 bytes but whenever I read word mentioned in the context of solidity, it sounds like 1 word = 32 bytes?
What is a word in solidity then? Why does it seem like 1 word in solidity is 32 bytes but only 4 bytes in other places?
1 word = 32 bytes = 256 bitssomething specific to only Ethereum and Solidity? That means, in Solidity, it uses a 256-bit word. But in a different system or VM like Java, it uses 32-bit word. Hence, the termwordhere is different with different systems, is my understanding correct? – xenon Jul 05 '22 at 08:51