aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-08-15 18:31:26 +0800
committerGitHub <noreply@github.com>2018-08-15 18:31:26 +0800
commit6c0261e6abdac4370404d8782c5ab9759dd5ae13 (patch)
treeba9ed829543740457f39994a66f8c51681ddc0fb /docs
parentc7d2af2637e061de43cc6c53e12bf35d1ac66387 (diff)
parent6e139f7d1a82e90e3818d7f4475745f441c1d6f2 (diff)
downloaddexon-solidity-6c0261e6abdac4370404d8782c5ab9759dd5ae13.tar
dexon-solidity-6c0261e6abdac4370404d8782c5ab9759dd5ae13.tar.gz
dexon-solidity-6c0261e6abdac4370404d8782c5ab9759dd5ae13.tar.bz2
dexon-solidity-6c0261e6abdac4370404d8782c5ab9759dd5ae13.tar.lz
dexon-solidity-6c0261e6abdac4370404d8782c5ab9759dd5ae13.tar.xz
dexon-solidity-6c0261e6abdac4370404d8782c5ab9759dd5ae13.tar.zst
dexon-solidity-6c0261e6abdac4370404d8782c5ab9759dd5ae13.zip
Merge pull request #4390 from ethereum/abidecode
Add abi.decode
Diffstat (limited to 'docs')
-rw-r--r--docs/miscellaneous.rst1
-rw-r--r--docs/units-and-global-variables.rst5
2 files changed, 4 insertions, 2 deletions
diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst
index c0c7cb1b..e8631224 100644
--- a/docs/miscellaneous.rst
+++ b/docs/miscellaneous.rst
@@ -318,6 +318,7 @@ The following is the order of precedence for operators, listed in order of evalu
Global Variables
================
+- ``abi.decode(bytes encodedData, (...)) returns (...)``: :ref:`ABI <ABI>`-decodes the provided data. 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)``: :ref:`ABI <ABI>`-encodes the given arguments
- ``abi.encodePacked(...) returns (bytes)``: Performs :ref:`packed encoding <abi_packed_mode>` of the given arguments
- ``abi.encodeWithSelector(bytes4 selector, ...) returns (bytes)``: :ref:`ABI <ABI>`-encodes the given arguments
diff --git a/docs/units-and-global-variables.rst b/docs/units-and-global-variables.rst
index 6eae2804..ceabee4e 100644
--- a/docs/units-and-global-variables.rst
+++ b/docs/units-and-global-variables.rst
@@ -96,9 +96,10 @@ Block and Transaction Properties
.. index:: abi, encoding, packed
-ABI Encoding Functions
-----------------------
+ABI Encoding and Decoding Functions
+-----------------------------------
+- ``abi.decode(bytes 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)``: ABI-encodes the given arguments
- ``abi.encodePacked(...) returns (bytes)``: Performs :ref:`packed encoding <abi_packed_mode>` of the given arguments
- ``abi.encodeWithSelector(bytes4 selector, ...) returns (bytes)``: ABI-encodes the given arguments starting from the second and prepends the given four-byte selector