solidity/docs/units-and-global-variables.rst

387 lines
17 KiB
ReStructuredText
Raw Normal View History

2015-12-07 20:16:25 +00:00
**************************************
Units and Globally Available Variables
**************************************
2020-07-08 17:45:30 +00:00
.. index:: wei, finney, szabo, gwei, ether
2015-12-07 20:16:25 +00:00
Ether Units
===========
2020-07-08 17:45:30 +00:00
A literal number can take a suffix of ``wei``, ``gwei`` or ``ether`` to specify a subdenomination of Ether, where Ether numbers without a postfix are assumed to be Wei.
2018-09-20 12:27:02 +00:00
.. code-block:: solidity
:force:
2018-09-20 12:27:02 +00:00
assert(1 wei == 1);
2020-06-18 15:09:24 +00:00
assert(1 gwei == 1e9);
2018-09-20 12:27:02 +00:00
assert(1 ether == 1e18);
The only effect of the subdenomination suffix is a multiplication by a power of ten.
2020-07-08 17:45:30 +00:00
.. note::
The denominations ``finney`` and ``szabo`` have been removed in version 0.7.0.
2015-12-07 20:16:25 +00:00
.. index:: time, seconds, minutes, hours, days, weeks, years
Time Units
==========
2018-09-20 12:27:02 +00:00
Suffixes like ``seconds``, ``minutes``, ``hours``, ``days`` and ``weeks``
after literal numbers can be used to specify units of time where seconds are the base
2015-12-07 20:16:25 +00:00
unit and units are considered naively in the following way:
2021-07-14 15:55:05 +00:00
* ``1 == 1 seconds``
* ``1 minutes == 60 seconds``
* ``1 hours == 60 minutes``
* ``1 days == 24 hours``
* ``1 weeks == 7 days``
2015-12-07 20:16:25 +00:00
Take care if you perform calendar calculations using these units, because
not every year equals 365 days and not even every day has 24 hours
because of `leap seconds <https://en.wikipedia.org/wiki/Leap_second>`_.
Due to the fact that leap seconds cannot be predicted, an exact calendar
library has to be updated by an external oracle.
2018-05-02 14:24:19 +00:00
.. note::
2018-09-20 12:27:02 +00:00
The suffix ``years`` has been removed in version 0.5.0 due to the reasons above.
2018-05-02 14:24:19 +00:00
These suffixes cannot be applied to variables. For example, if you want to
interpret a function parameter in days, you can in the following way:
.. code-block:: solidity
2015-12-07 20:16:25 +00:00
2017-12-12 18:47:30 +00:00
function f(uint start, uint daysAfter) public {
2020-05-05 08:56:31 +00:00
if (block.timestamp >= start + daysAfter * 1 days) {
2017-07-26 13:44:15 +00:00
// ...
}
2015-12-07 20:16:25 +00:00
}
.. _special-variables-functions:
2015-12-07 20:16:25 +00:00
Special Variables and Functions
===============================
There are special variables and functions which always exist in the global
2018-04-13 16:36:33 +00:00
namespace and are mainly used to provide information about the blockchain
or are general-use utility functions.
2015-12-07 20:16:25 +00:00
2020-05-05 08:56:31 +00:00
.. index:: abi, block, coinbase, difficulty, encode, number, block;number, timestamp, block;timestamp, msg, data, gas, sender, value, gas price, origin
2015-12-07 20:16:25 +00:00
Block and Transaction Properties
2016-05-25 14:14:57 +00:00
--------------------------------
2015-12-07 20:16:25 +00:00
- ``blockhash(uint blockNumber) returns (bytes32)``: hash of the given block when ``blocknumber`` is one of the 256 most recent blocks; otherwise returns zero
- ``block.basefee`` (``uint``): current block's base fee (`EIP-3198 <https://eips.ethereum.org/EIPS/eip-3198>`_ and `EIP-1559 <https://eips.ethereum.org/EIPS/eip-1559>`_)
2020-09-22 17:12:01 +00:00
- ``block.chainid`` (``uint``): current chain id
- ``block.coinbase`` (``address payable``): current block miner's address
2016-05-25 14:32:53 +00:00
- ``block.difficulty`` (``uint``): current block difficulty
- ``block.gaslimit`` (``uint``): current block gaslimit
- ``block.number`` (``uint``): current block number
2017-05-13 05:13:45 +00:00
- ``block.timestamp`` (``uint``): current block timestamp as seconds since unix epoch
- ``gasleft() returns (uint256)``: remaining gas
2018-09-20 12:27:02 +00:00
- ``msg.data`` (``bytes calldata``): complete calldata
- ``msg.sender`` (``address``): sender of the message (current call)
2016-05-25 14:32:53 +00:00
- ``msg.sig`` (``bytes4``): first four bytes of the calldata (i.e. function identifier)
- ``msg.value`` (``uint``): number of wei sent with the message
- ``tx.gasprice`` (``uint``): gas price of the transaction
- ``tx.origin`` (``address``): sender of the transaction (full call chain)
2015-12-07 20:16:25 +00:00
.. note::
The values of all members of ``msg``, including ``msg.sender`` and
``msg.value`` can change for every **external** function call.
2015-12-07 20:16:25 +00:00
This includes calls to library functions.
.. note::
When contracts are evaluated off-chain rather than in context of a transaction included in a
block, you should not assume that ``block.*`` and ``tx.*`` refer to values from any specific
block or transaction. These values are provided by the EVM implementation that executes the
contract and can be arbitrary.
.. note::
2020-05-05 08:56:31 +00:00
Do not rely on ``block.timestamp`` or ``blockhash`` as a source of randomness,
unless you know what you are doing.
Both the timestamp and the block hash can be influenced by miners to some degree.
Bad actors in the mining community can for example run a casino payout function on a chosen hash
and just retry a different hash if they did not receive any money.
The current block timestamp must be strictly larger than the timestamp of the last block,
but the only guarantee is that it will be somewhere between the timestamps of two
consecutive blocks in the canonical chain.
2015-12-07 20:16:25 +00:00
.. note::
The block hashes are not available for all blocks for scalability reasons.
You can only access the hashes of the most recent 256 blocks, all other
values will be zero.
2018-09-20 12:27:02 +00:00
.. note::
The function ``blockhash`` was previously known as ``block.blockhash``, which was deprecated in
2018-09-20 12:27:02 +00:00
version 0.4.22 and removed in version 0.5.0.
.. note::
The function ``gasleft`` was previously known as ``msg.gas``, which was deprecated in
2018-09-20 12:27:02 +00:00
version 0.4.21 and removed in version 0.5.0.
.. note::
In version 0.7.0, the alias ``now`` (for ``block.timestamp``) was removed.
2018-04-13 16:36:33 +00:00
.. index:: abi, encoding, packed
2018-08-08 15:24:45 +00:00
ABI Encoding and Decoding Functions
-----------------------------------
2018-04-13 16:36:33 +00:00
2018-09-20 12:27:02 +00:00
- ``abi.decode(bytes memory encodedData, (...)) returns (...)``: ABI-decodes the given data, while the types are given in parentheses as second argument. Example: ``(uint a, uint[2] memory b, bytes memory c) = abi.decode(data, (uint, uint[2], bytes))``
- ``abi.encode(...) returns (bytes memory)``: ABI-encodes the given arguments
- ``abi.encodePacked(...) returns (bytes memory)``: Performs :ref:`packed encoding <abi_packed_mode>` of the given arguments. Note that packed encoding can be ambiguous!
2018-09-20 12:27:02 +00:00
- ``abi.encodeWithSelector(bytes4 selector, ...) returns (bytes memory)``: ABI-encodes the given arguments starting from the second and prepends the given four-byte selector
2021-12-05 07:57:59 +00:00
- ``abi.encodeWithSignature(string memory signature, ...) returns (bytes memory)``: Equivalent to ``abi.encodeWithSelector(bytes4(keccak256(bytes(signature))), ...)``
2021-11-11 15:21:23 +00:00
- ``abi.encodeCall(function functionPointer, (...)) returns (bytes memory)``: ABI-encodes a call to ``functionPointer`` with the arguments found in the tuple. Performs a full type-check, ensuring the types match the function signature. Result equals ``abi.encodeWithSelector(functionPointer.selector, (...))``
2018-04-13 16:36:33 +00:00
.. note::
2018-09-20 12:27:02 +00:00
These encoding functions can be used to craft data for external function calls without actually
calling an external function. Furthermore, ``keccak256(abi.encodePacked(a, b))`` is a way
2018-06-13 15:49:41 +00:00
to compute the hash of structured data (although be aware that it is possible to
craft a "hash collision" using different function parameter types).
2018-04-13 16:36:33 +00:00
See the documentation about the :ref:`ABI <ABI>` and the
:ref:`tightly packed encoding <abi_packed_mode>` for details about the encoding.
.. index:: bytes members
Members of bytes
----------------
- ``bytes.concat(...) returns (bytes memory)``: :ref:`Concatenates variable number of bytes and bytes1, ..., bytes32 arguments to one byte array<bytes-concat>`
.. index:: string members
Members of string
-----------------
- ``string.concat(...) returns (string memory)``: :ref:`Concatenates variable number of string arguments to one string array<string-concat>`
2017-06-15 16:36:16 +00:00
.. index:: assert, revert, require
Error Handling
--------------
2018-09-20 12:27:02 +00:00
See the dedicated section on :ref:`assert and require<assert-and-require>` for
more details on error handling and when to use which function.
``assert(bool condition)``
2020-10-15 15:56:20 +00:00
causes a Panic error and thus state change reversion if the condition is not met - to be used for internal errors.
``require(bool condition)``
2018-05-07 09:44:37 +00:00
reverts if the condition is not met - to be used for errors in inputs or external components.
``require(bool condition, string memory message)``
2018-05-07 09:44:37 +00:00
reverts if the condition is not met - to be used for errors in inputs or external components. Also provides an error message.
``revert()``
2017-06-15 16:36:16 +00:00
abort execution and revert state changes
``revert(string memory reason)``
abort execution and revert state changes, providing an explanatory string
2017-06-15 16:36:16 +00:00
.. index:: keccak256, ripemd160, sha256, ecrecover, addmod, mulmod, cryptography,
2015-12-07 20:16:25 +00:00
.. _mathematical-and-cryptographic-functions:
2015-12-07 20:16:25 +00:00
Mathematical and Cryptographic Functions
----------------------------------------
``addmod(uint x, uint y, uint k) returns (uint)``
compute ``(x + y) % k`` where the addition is performed with arbitrary precision and does not wrap around at ``2**256``. Assert that ``k != 0`` starting from version 0.5.0.
``mulmod(uint x, uint y, uint k) returns (uint)``
compute ``(x * y) % k`` where the multiplication is performed with arbitrary precision and does not wrap around at ``2**256``. Assert that ``k != 0`` starting from version 0.5.0.
``keccak256(bytes memory) returns (bytes32)``
2018-09-20 12:27:02 +00:00
compute the Keccak-256 hash of the input
.. note::
There used to be an alias for ``keccak256`` called ``sha3``, which was removed in version 0.5.0.
``sha256(bytes memory) returns (bytes32)``
2018-06-13 15:49:41 +00:00
compute the SHA-256 hash of the input
``ripemd160(bytes memory) returns (bytes20)``
2018-06-13 15:49:41 +00:00
compute RIPEMD-160 hash of the input
``ecrecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) returns (address)``
recover the address associated with the public key from elliptic curve signature or return zero on error.
The function parameters correspond to ECDSA values of the signature:
* ``r`` = first 32 bytes of signature
* ``s`` = second 32 bytes of signature
* ``v`` = final 1 byte of signature
``ecrecover`` returns an ``address``, and not an ``address payable``. See :ref:`address payable<address>` for
conversion, in case you need to transfer funds to the recovered address.
2020-08-06 12:47:21 +00:00
For further details, read `example usage <https://ethereum.stackexchange.com/questions/1777/workflow-on-signing-a-string-with-private-key-followed-by-signature-verificatio>`_.
2015-12-07 20:16:25 +00:00
2019-06-19 09:03:10 +00:00
.. warning::
If you use ``ecrecover``, be aware that a valid signature can be turned into a different valid signature without
requiring knowledge of the corresponding private key. In the Homestead hard fork, this issue was fixed
for _transaction_ signatures (see `EIP-2 <https://eips.ethereum.org/EIPS/eip-2#specification>`_), but
2019-06-19 09:03:10 +00:00
the ecrecover function remained unchanged.
This is usually not a problem unless you require signatures to be unique or
use them to identify items. OpenZeppelin have a `ECDSA helper library <https://docs.openzeppelin.com/contracts/2.x/api/cryptography#ECDSA>`_ that you can use as a wrapper for ``ecrecover`` without this issue.
2019-06-19 09:03:10 +00:00
2018-09-20 12:27:02 +00:00
.. note::
When running ``sha256``, ``ripemd160`` or ``ecrecover`` on a *private blockchain*, you might encounter Out-of-Gas. This is because these functions are implemented as "precompiled contracts" and only really exist after they receive the first message (although their contract code is hardcoded). Messages to non-existing contracts are more expensive and thus the execution might run into an Out-of-Gas error. A workaround for this problem is to first send Wei (1 for example) to each of the contracts before you use them in your actual contracts. This is not an issue on the main or test net.
2018-09-20 12:27:02 +00:00
2020-09-24 17:45:40 +00:00
.. index:: balance, codehash, send, transfer, call, callcode, delegatecall, staticcall
2017-06-16 13:52:56 +00:00
.. _address_related:
2018-09-20 12:27:02 +00:00
Members of Address Types
------------------------
``<address>.balance`` (``uint256``)
2016-06-02 13:13:27 +00:00
balance of the :ref:`address` in Wei
2020-09-24 16:28:14 +00:00
``<address>.code`` (``bytes memory``)
code at the :ref:`address` (can be empty)
2020-09-24 17:45:40 +00:00
``<address>.codehash`` (``bytes32``)
the codehash of the :ref:`address`
``<address payable>.transfer(uint256 amount)``
2018-09-20 12:27:02 +00:00
send given amount of Wei to :ref:`address`, reverts on failure, forwards 2300 gas stipend, not adjustable
``<address payable>.send(uint256 amount) returns (bool)``
send given amount of Wei to :ref:`address`, returns ``false`` on failure, forwards 2300 gas stipend, not adjustable
``<address>.call(bytes memory) returns (bool, bytes memory)``
2018-09-20 12:27:02 +00:00
issue low-level ``CALL`` with the given payload, returns success condition and return data, forwards all available gas, adjustable
``<address>.delegatecall(bytes memory) returns (bool, bytes memory)``
2018-09-20 12:27:02 +00:00
issue low-level ``DELEGATECALL`` with the given payload, returns success condition and return data, forwards all available gas, adjustable
``<address>.staticcall(bytes memory) returns (bool, bytes memory)``
2018-09-20 12:27:02 +00:00
issue low-level ``STATICCALL`` with the given payload, returns success condition and return data, forwards all available gas, adjustable
For more information, see the section on :ref:`address`.
.. warning::
You should avoid using ``.call()`` whenever possible when executing another contract function as it bypasses type checking,
function existence check, and argument packing.
.. warning::
2016-06-02 13:14:53 +00:00
There are some dangers in using ``send``: The transfer fails if the call stack depth is at 1024
(this can always be forced by the caller) and it also fails if the recipient runs out of gas. So in order
to make safe Ether transfers, always check the return value of ``send``, use ``transfer`` or even better:
Use a pattern where the recipient withdraws the money.
.. warning::
Due to the fact that the EVM considers a call to a non-existing contract to always succeed,
Solidity includes an extra check using the ``extcodesize`` opcode when performing external calls.
This ensures that the contract that is about to be called either actually exists (it contains code)
or an exception is raised.
The low-level calls which operate on addresses rather than contract instances (i.e. ``.call()``,
``.delegatecall()``, ``.staticcall()``, ``.send()`` and ``.transfer()``) **do not** include this
check, which makes them cheaper in terms of gas but also less safe.
2018-07-05 12:32:32 +00:00
.. note::
Prior to version 0.5.0, Solidity allowed address members to be accessed by a contract instance, for example ``this.balance``.
This is now forbidden and an explicit conversion to address must be done: ``address(this).balance``.
.. note::
2018-09-20 12:27:02 +00:00
If state variables are accessed via a low-level delegatecall, the storage layout of the two contracts
must align in order for the called contract to correctly access the storage variables of the calling contract by name.
This is of course not the case if storage pointers are passed as function arguments as in the case for
the high-level libraries.
2018-09-20 12:27:02 +00:00
.. note::
Prior to version 0.5.0, ``.call``, ``.delegatecall`` and ``.staticcall`` only returned the
success condition and not the return data.
2017-07-26 11:20:38 +00:00
.. note::
2018-09-20 12:27:02 +00:00
Prior to version 0.5.0, there was a member called ``callcode`` with similar but slightly different
semantics than ``delegatecall``.
2017-07-26 11:20:38 +00:00
2015-12-07 20:16:25 +00:00
.. index:: this, selfdestruct
Contract Related
----------------
``this`` (current contract's type)
the current contract, explicitly convertible to :ref:`address`
2016-05-18 15:35:00 +00:00
``selfdestruct(address payable recipient)``
Destroy the current contract, sending its funds to the given :ref:`address`
and end execution.
Note that ``selfdestruct`` has some peculiarities inherited from the EVM:
- the receiving contract's receive function is not executed.
- the contract is only really destroyed at the end of the transaction and ``revert`` s might "undo" the destruction.
2015-12-07 20:16:25 +00:00
Furthermore, all functions of the current contract are callable directly including the current function.
2018-09-20 12:27:02 +00:00
.. note::
Prior to version 0.5.0, there was a function called ``suicide`` with the same
semantics as ``selfdestruct``.
2019-01-16 09:55:18 +00:00
.. index:: type, creationCode, runtimeCode
.. _meta-type:
Type Information
----------------
The expression ``type(X)`` can be used to retrieve information about the type
``X``. Currently, there is limited support for this feature (``X`` can be either
a contract or an integer type) but it might be expanded in the future.
The following properties are available for a contract type ``C``:
2019-01-16 09:55:18 +00:00
``type(C).name``
2019-03-04 11:59:14 +00:00
The name of the contract.
``type(C).creationCode``
2019-01-16 09:55:18 +00:00
Memory byte array that contains the creation bytecode of the contract.
This can be used in inline assembly to build custom creation routines,
especially by using the ``create2`` opcode.
This property can **not** be accessed in the contract itself or any
derived contract. It causes the bytecode to be included in the bytecode
of the call site and thus circular references like that are not possible.
``type(C).runtimeCode``
2019-01-16 09:55:18 +00:00
Memory byte array that contains the runtime bytecode of the contract.
This is the code that is usually deployed by the constructor of ``C``.
If ``C`` has a constructor that uses inline assembly, this might be
different from the actually deployed bytecode. Also note that libraries
modify their runtime bytecode at time of deployment to guard against
regular calls.
The same restrictions as with ``.creationCode`` also apply for this
property.
2020-04-08 22:08:49 +00:00
In addition to the properties above, the following properties are available
for an interface type ``I``:
``type(I).interfaceId``:
A ``bytes4`` value containing the `EIP-165 <https://eips.ethereum.org/EIPS/eip-165>`_
interface identifier of the given interface ``I``. This identifier is defined as the ``XOR`` of all
function selectors defined within the interface itself - excluding all inherited functions.
2020-05-19 13:12:56 +00:00
2020-05-11 13:35:41 +00:00
The following properties are available for an integer type ``T``:
2020-05-11 13:35:41 +00:00
``type(T).min``
The smallest value representable by type ``T``.
2020-05-11 13:35:41 +00:00
``type(T).max``
The largest value representable by type ``T``.