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

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

  2. 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 …

  3. 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, …

  4. solidity - What does the function "abi.encodeWithSelector (bytes4 ...

    Oct 5, 2020 · I tried to edit this function according to my smart contract but I couldn't understand this function. I read the docs already. can someone explain this to me with more details and examples? …

  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 - How to know the default evm version of a specific version of ...

    Jan 18, 2024 · I have multiple versions of solc installed asdf list solidity 0.4.24 *0.8.23 latest solc includes the default evm version in the help output: solc --version && solc --help|grep evm...

  7. 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 …

  8. solidity - How to "flatten" imported contracts - Ethereum Stack Exchange

    Visual Studio Code Solidity extension from Nomic Foundation Hardhat: Flatten this file and its dependencies

  9. solidity - When should I use calldata and when should I use memory ...

    I have seen people use both memory and calldata keywords when writing Solidity. Specifically, they are used when declaring function parameters that take dynamic types like 'structs' or 'arrays'.

  10. solidity - Upgradeable smart contracts - Ethereum Stack Exchange

    However, I also recommend checking Proxy Libraries in Solidity that is posted by Zeppelin Solutions and Aragon. There is a planning to make an industry standard for this matter. You have to have a good …