aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-08-02 20:27:38 +0800
committerGitHub <noreply@github.com>2018-08-02 20:27:38 +0800
commit68f9128475d75cf6b5c6f4bab79673455e36eaa3 (patch)
tree753205cc400305e7e4ce403f2bc3aec108943649 /docs
parent6f3f673eff4d5cc6e2213df6210ae4584a479238 (diff)
parentd6d1a41286834b1691a35c5030084541999f6ef3 (diff)
downloaddexon-solidity-68f9128475d75cf6b5c6f4bab79673455e36eaa3.tar
dexon-solidity-68f9128475d75cf6b5c6f4bab79673455e36eaa3.tar.gz
dexon-solidity-68f9128475d75cf6b5c6f4bab79673455e36eaa3.tar.bz2
dexon-solidity-68f9128475d75cf6b5c6f4bab79673455e36eaa3.tar.lz
dexon-solidity-68f9128475d75cf6b5c6f4bab79673455e36eaa3.tar.xz
dexon-solidity-68f9128475d75cf6b5c6f4bab79673455e36eaa3.tar.zst
dexon-solidity-68f9128475d75cf6b5c6f4bab79673455e36eaa3.zip
Merge pull request #4584 from dylanjw/update-abi-event-doc
Update doc referencing packed mode encoding for dynamic typed topic args
Diffstat (limited to 'docs')
-rw-r--r--docs/abi-spec.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/abi-spec.rst b/docs/abi-spec.rst
index 82c9f67a..ec84d123 100644
--- a/docs/abi-spec.rst
+++ b/docs/abi-spec.rst
@@ -391,7 +391,7 @@ In effect, a log entry using this ABI is described as:
- ``topics[n]``: ``EVENT_INDEXED_ARGS[n - 1]`` (``EVENT_INDEXED_ARGS`` is the series of ``EVENT_ARGS`` that are indexed);
- ``data``: ``abi_serialise(EVENT_NON_INDEXED_ARGS)`` (``EVENT_NON_INDEXED_ARGS`` is the series of ``EVENT_ARGS`` that are not indexed, ``abi_serialise`` is the ABI serialisation function used for returning a series of typed values from a function, as described above).
-For all fixed-length Solidity types, the ``EVENT_INDEXED_ARGS`` array contains the 32-byte encoded value directly. However, for *types of dynamic length*, which include ``string``, ``bytes``, and arrays, ``EVENT_INDEXED_ARGS`` will contain the *Keccak hash* of the encoded value, rather than the encoded value directly. This allows applications to efficiently query for values of dynamic-length types (by setting the hash of the encoded value as the topic), but leaves applications unable to decode indexed values they have not queried for. For dynamic-length types, application developers face a trade-off between fast search for predetermined values (if the argument is indexed) and legibility of arbitrary values (which requires that the arguments not be indexed). Developers may overcome this tradeoff and achieve both efficient search and arbitrary legibility by defining events with two arguments — one indexed, one not — intended to hold the same value.
+For all fixed-length Solidity types, the ``EVENT_INDEXED_ARGS`` array contains the 32-byte encoded value directly. However, for *types of dynamic length*, which include ``string``, ``bytes``, and arrays, ``EVENT_INDEXED_ARGS`` will contain the *Keccak hash* of the packed encoded value (see :ref:`abi_packed_mode`), rather than the encoded value directly. This allows applications to efficiently query for values of dynamic-length types (by setting the hash of the encoded value as the topic), but leaves applications unable to decode indexed values they have not queried for. For dynamic-length types, application developers face a trade-off between fast search for predetermined values (if the argument is indexed) and legibility of arbitrary values (which requires that the arguments not be indexed). Developers may overcome this tradeoff and achieve both efficient search and arbitrary legibility by defining events with two arguments — one indexed, one not — intended to hold the same value.
.. _abi_json: