About 55 results
Open links in new tab
  1. Solidity Forum - The place for all Solidity developers, tool builders ...

    Sep 12, 2025 · The place to discuss design and usage of and changes to the Solidity programming language.

  2. [ANN] Yolc - a safe, expressive, fun language for Ethereum Using ...

    Jan 7, 2025 · Hi, I’d like to announce the launch of the technical preview of the /Yolc project/. It is the first milestone where Yolc can produce a partial ERC20 code deployable to Ethereum networks, …

  3. What are the virtual and override keywords in Solidity?

    Dec 27, 2019 · For multiple inheritance, the most derived base contracts that define the same function must be specified explicitly after the override keyword. Functions with the private visibility cannot be …

  4. Solidity v0.8.25 is out! - Announcements - Solidity Forum

    Mar 15, 2024 · 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. …

  5. solidity - Difference between require and assert and the difference ...

    Solidity implements a formal verification approach based on SMT (Satisfiability Modulo Theories) and Horn solving. The SMTChecker module automatically tries to prove that the code satisfies the …

  6. solidity - Source File requires different compiler version - Ethereum ...

    During solidity (solc) 0.5 releases the different frameworks like solc, truffle, web3, openzeppelin had a timeframe where some had a 0.5 compatible version released and some didn't. I think you could …

  7. solidity - invalid opcode: opcode 0x5f not defined - Ethereum Stack ...

    May 15, 2023 · I'm new to Solidity and it's my first try to write a smart contract using Openzeppelin, Pancakeswap and BEP20 libraries basically to make a BEP-20 token. When i try to deploy the smart …

  8. Some questions about the Solidity language

    May 17, 2021 · 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 …

  9. solidity - `external` vs `public` best practices - Ethereum Stack Exchange

    Jul 4, 2017 · 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 expensive, …

  10. solidity - What does the keyword "memory" do exactly? - Ethereum …

    Mar 1, 2016 · I've been looking through the code of Etherdice and noticed that some variables are declared like ParserResult memory result; and I haven't found the keyword "memory" in …