
Solidity Forum - The place for all Solidity developers, tool builders ...
2025年3月27日 · The place to discuss design and usage of and changes to the Solidity programming language.
Solidity v0.8.31 is out! - Announcements - Solidity Forum
2025年12月4日 · Version 0.8.31 of the Solidity Compiler further extends the features of storage layout specifiers. It is now possible to use constant variables in the base slot expression.
Solidity v0.8.33 is out! - Announcements - Solidity Forum
2025年12月20日 · We just released versions 0.8.32 and 0.8.33 of the Solidity Compiler. 🚨 Note: We recommend skipping 0.8.32 and upgrading directly to 0.8.33, which contains a hotfix for an issue …
Solidity v0.8.25 is out! - Announcements - Solidity Forum
2024年3月15日 · Introducing the newest version of the Solidity Compiler v0.8.25. This is a minor release following the Dencun hard-fork on Ethereum mainnet that occurred on March 13, 2024 at 13:55 UTC. …
We are thrilled to release Solidity v0.8.29!
2025年3月12日 · Check out our release blog post to learn more about other features in the release and read the full changelog. Blog: Solidity 0.8.29 Release Announcement | Solidity Programming …
Some questions about the Solidity language
2021年5月17日 · Solidity is an object-oriented, high-level language for implementing smart contracts. It is designed to target the Ethereum Virtual Machine (EVM). There are many other blockchains (other …
Return bytes32 or address in one or two functions?
2022年6月9日 · Hello everyone. I have a question in solidity regarding different methods concerned with returning an address that is either as it is, an (address) type or encrypted therefore resulting as …
solidity - What is msg.value? - Ethereum Stack Exchange
msg.value is a member of the msg (message) object when sending (state transitioning) transactions on the Ethereum network. msg.value contains the amount of wei (ether / 1e18) sent in the transaction. …
solidity - `external` vs `public` best practices - Ethereum Stack Exchange
2017年7月4日 · The difference is because in public functions, Solidity immediately copies array arguments to memory, while external functions can read directly from calldata. Memory allocation is …
What is a function signature and function selector in solidity (and EVM ...
2022年9月8日 · What is a function signature and function selector in solidity (and EVM languages)? Ask Question Asked 3 years, 6 months ago Modified 2 years, 9 months ago