
Introduction to Smart Contracts — Solidity 0.8.32-develop …
The Ethereum Virtual Machine or EVM is the runtime environment for smart contracts in Ethereum. It is not only sandboxed but actually completely isolated, which means that code …
Solidity by Example — Solidity 0.8.31-develop documentation
Only steps 1 and 3 require Ethereum transactions, step 2 means that the sender transmits a cryptographically signed message to the recipient via off chain methods (e.g. email). This …
Installing the Solidity Compiler — Solidity 0.8.32-develop …
Ubuntu packages for versions up to 0.8.30 are available in the ethereum/ethereum PPA. However, we have discontinued this distribution method and future versions will not be added …
Contracts — Solidity 0.8.32-develop documentation
Solidity events give an abstraction on top of the EVM’s logging functionality. Applications can subscribe and listen to these events through the RPC interface of an Ethereum client.
Jan 1, 1970 · Solidity is an object-oriented, high-level language for implementing smart contracts. Smart contracts are programs that govern the behavior of accounts within the Ethereum state.
Solidity — Solidity 0.8.24 文档
Solidity 是一种面向以太坊虚拟机 (EVM) 的 带花括号的语言。 它受 C++,Python 和 JavaScript 的影响。 您可以在 语言的影响因素 部分中找到更多有关 Solidity 受哪些语言启发的细节。 …
Solidity — Solidity 0.8.32-develop documentation
Solidity is an object-oriented, high-level language for implementing smart contracts. Smart contracts are programs that govern the behavior of accounts within the Ethereum state.
Contract ABI Specification — Solidity 0.8.31-develop documentation
The Contract Application Binary Interface (ABI) is the standard way to interact with contracts in the Ethereum ecosystem, both from outside the blockchain and for contract-to-contract …
Units and Globally Available Variables — Solidity 0.8.31-develop ...
The new behaviour is the result of a network-wide change that affects all contracts present on the Ethereum mainnet and testnets. It is important to note that this change is dependent on the …
Types — Solidity 0.8.31-develop documentation
Solidity is a statically typed language, which means that the type of each variable (state and local) needs to be specified. Solidity provides several elementary types which can be combined to …