-
Kizdar net |
Kizdar net |
Кыздар Нет
Solidity Forum - The place for all Solidity developers, tool builders ...
Jul 11, 2025 · The place to discuss design and usage of and changes to the Solidity programming language.
Missing implicit type conversions - Solidity Forum
Dec 10, 2023 · The disadvantage is that in order to keep track of the length of an array, you must pass that length along with the array itself to every function which relies on that length. In …
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 …
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 …
Newest 'solidity' Questions - Ethereum Stack Exchange
Solidity is a contract-oriented, high-level language whose syntax is similar to that of JavaScript and it is designed for writing smart contracts in Ethereum to run on the EVM. Solidity is …
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.
solidity - Foundry or Hardhat: I'm really confused about which one ...
Nov 29, 2023 · Here is my problem: I started working with smart contracts with Foundry and I loved it. testing is just so easy using foundry and I didn't need any other language except …
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 - ERC20 decimals in smart contract - Ethereum Stack …
Sep 4, 2022 · As Foxxxey mentioned, the Solidity compiler creates a getter function for public state variables with the same name of the state variable. Probably athe OpenZeppelin ERC20 …
Mechanism to split large contracts - Solidity Forum
Feb 16, 2021 · I don’t think it is necessary to implement splitting large contracts at the Solidity language level. The reason is because EIP-2535 Diamonds solves the problem in a sufficiently …