diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-04-24 18:25:24 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-04-24 18:34:02 +0800 |
commit | 4a3fb9638179a4a7d4b40afb44308e56573c63e0 (patch) | |
tree | 35858cc7891969e80c47ea60dbc9111d39ceab71 /docs/using-the-compiler.rst | |
parent | e24c35bce04225f5301a65108889f9487bf5d7c5 (diff) | |
download | dexon-solidity-4a3fb9638179a4a7d4b40afb44308e56573c63e0.tar.gz dexon-solidity-4a3fb9638179a4a7d4b40afb44308e56573c63e0.tar.zst dexon-solidity-4a3fb9638179a4a7d4b40afb44308e56573c63e0.zip |
Enable standard json in the docs
Diffstat (limited to 'docs/using-the-compiler.rst')
-rw-r--r-- | docs/using-the-compiler.rst | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/docs/using-the-compiler.rst b/docs/using-the-compiler.rst index 9e9a5eb6..deaa1329 100644 --- a/docs/using-the-compiler.rst +++ b/docs/using-the-compiler.rst @@ -37,15 +37,13 @@ Either add ``--libraries "Math:0x12345678901234567890 Heap:0xabcdef0123456"`` to 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 ``--standard-json``, it will expect a JSON input (as explained below) on the standard input, and return a JSON output on the standard output. + .. _compiler-api: Compiler Input and Output JSON Description ****************************************** -.. warning:: - - This JSON interface is not yet supported by the Solidity compiler, but will be released in a future version. - These JSON formats are used by the compiler API as well as are available through ``solc``. These are subject to change, some fields are optional (as noted), but it is aimed at to only make backwards compatible changes. |