-
Kizdar net |
Kizdar net |
Кыздар Нет
Solidity Forum - The place for all Solidity developers, tool builders ...
Aug 15, 2024 · The place to discuss design and usage of and changes to the Solidity programming language.
What are the virtual and override keywords in Solidity?
Dec 27, 2019 · As of Solidity 0.6.0, the keywords virtual and override are available natively in Solidity for function overriding. The purpose of these keywords is to be more explicit when …
Missing implicit type conversions - Solidity Forum
Dec 10, 2023 · BTW and FYI, the same syntax-problem (of not being able to initialize the values in a dynamic array upon declaration) also exists in other strongly-typed languages such as C and …
Solc AST generator - Solidity Forum
Jan 31, 2025 · I’m trying to obtain an AST from a solidity contract I cannot find anyway to achieve that using solc I saw on previous versions there were --ast options in command line or other …
We are thrilled to release Solidity v0.8.29!
Mar 12, 2025 · General: The experimental EOF backend implements a subset of EOF sufficient to compile arbitrary high-level Solidity syntax via IR with optimization enabled. SMTChecker: …
solidity - `external` vs `public` best practices - Ethereum Stack …
Jul 4, 2017 · pragma solidity 0.8.14; contract Test1 { uint a; function test() external{ a = 1; } } In this case I have tested a transaction that change the contract state of the contract and the …
Add the ability to make dynamic arrays in memory - Solidity Forum
Sep 19, 2023 · Problem Solidity currently only supports static arrays in memory, when it is more than capable of handling dynamic memory arrays. A proof of concept can be seen with a repo …
solidity - Source File requires different compiler version
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 …
solidity - When should I use calldata and when should I use …
It is a special data location that contains the function arguments, only available for external function call parameters. From the Solidity docs: Calldata is a non-modifiable, non-persistent …
solidity - What does the keyword "memory" do exactly?
Mar 1, 2016 · In Solidity, the keyword memory is used to declare variables that are stored in the EVM's memory, which is a temporary, short-lived storage area that is used during contract …