aboutsummaryrefslogtreecommitdiffstats
path: root/docs/using-the-compiler.rst
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-10-08 18:18:56 +0800
committerchriseth <chris@ethereum.org>2018-10-12 21:15:01 +0800
commite8ba2d6e46f13fc02a32c2216b6bd32fb300c011 (patch)
tree5ac8dda203c51d28e63c8d3362b1d4ce7bee5435 /docs/using-the-compiler.rst
parent56bbfce6d36befbe89256035a333d9b47b360e0d (diff)
downloaddexon-solidity-e8ba2d6e46f13fc02a32c2216b6bd32fb300c011.tar
dexon-solidity-e8ba2d6e46f13fc02a32c2216b6bd32fb300c011.tar.gz
dexon-solidity-e8ba2d6e46f13fc02a32c2216b6bd32fb300c011.tar.bz2
dexon-solidity-e8ba2d6e46f13fc02a32c2216b6bd32fb300c011.tar.lz
dexon-solidity-e8ba2d6e46f13fc02a32c2216b6bd32fb300c011.tar.xz
dexon-solidity-e8ba2d6e46f13fc02a32c2216b6bd32fb300c011.tar.zst
dexon-solidity-e8ba2d6e46f13fc02a32c2216b6bd32fb300c011.zip
Document library placeholder change.
Diffstat (limited to 'docs/using-the-compiler.rst')
-rw-r--r--docs/using-the-compiler.rst17
1 files changed, 14 insertions, 3 deletions
diff --git a/docs/using-the-compiler.rst b/docs/using-the-compiler.rst
index 39520bec..ac744d08 100644
--- a/docs/using-the-compiler.rst
+++ b/docs/using-the-compiler.rst
@@ -41,14 +41,25 @@ If there are multiple matches due to remappings, the one with the longest common
For security reasons the compiler has restrictions what directories it can access. Paths (and their subdirectories) of source files specified on the commandline and paths defined by remappings are allowed for import statements, but everything else is rejected. Additional paths (and their subdirectories) can be allowed via the ``--allow-paths /sample/path,/another/sample/path`` switch.
-If your contracts use :ref:`libraries <libraries>`, you will notice that the bytecode contains substrings of the form ``__LibraryName______``. You can use ``solc`` as a linker meaning that it will insert the library addresses for you at those points:
+If your contracts use :ref:`libraries <libraries>`, you will notice that the bytecode contains substrings of the form ``__53aea86b7d70b31448b230b20ae141a537e5__``. These are placeholders for the actual library addresses.
+The placeholder is a 36 character prefix of the hex encoding of the keccak256 hash of the fully qualified library name.
+The bytecode file will also contain lines of the form ``// <placeholder> -> <library name>`` at the end to help
+identify which libraries the placeholders represent.
+You can use ``solc`` as a linker meaning that it will insert the library addresses for you at those points:
-Either add ``--libraries "Math:0x12345678901234567890 Heap:0xabcdef0123456"`` to your command to provide an address for each library or store the string in a file (one library per line) and run ``solc`` using ``--libraries fileName``.
+Either add ``--libraries "file.sol:Math:0x1234567890123456789012345678901234567890 file.sol:Heap:0xabCD567890123456789012345678901234567890"`` to your command to provide an address for each library or store the string in a file (one library per line) and run ``solc`` using ``--libraries fileName``.
-If ``solc`` is called with the option ``--link``, all input files are interpreted to be unlinked binaries (hex-encoded) in the ``__LibraryName____``-format given above and are linked in-place (if the input is read from stdin, it is written to stdout). All options except ``--libraries`` are ignored (including ``-o``) in this case.
+If ``solc`` is called with the option ``--link``, all input files are interpreted to be unlinked binaries (hex-encoded) in the ``__53aea86b7d70b31448b230b20ae141a537e5__``-format given above and are linked in-place (if the input is read from stdin, it is written to stdout). All options except ``--libraries`` are ignored (including ``-o``) in this case.
If ``solc`` is called with the option ``--standard-json``, it will expect a JSON input (as explained below) on the standard input, and return a JSON output on the standard output. This is the recommended interface for more complex and especially automated uses.
+.. note::
+ The library placeholder used to be the fully qualified name of the library itself
+ instead of the hash of it. This format is still supported by ``solc --link`` but
+ the compiler will no longer output it. This change was made to reduce
+ the likelihood of a collision between libraries, since only the first 36 characters
+ of the fully qualified library name could be used.
+
.. _evm-version:
.. index:: ! EVM version, compile target