{ "info": { "author": "Trail of Bits", "author_email": "", "bugtrack_url": null, "classifiers": [], "description": "# Slither, the Solidity source analyzer\n\"Logo\"\n\n[![Build Status](https://travis-ci.com/crytic/slither.svg?token=JEF97dFy1QsDCfQ2Wusd&branch=master)](https://travis-ci.com/crytic/slither)\n[![Slack Status](https://empireslacking.herokuapp.com/badge.svg)](https://empireslacking.herokuapp.com)\n[![PyPI version](https://badge.fury.io/py/slither-analyzer.svg)](https://badge.fury.io/py/slither-analyzer)\n\nSlither is a Solidity static analysis framework written in Python 3. It runs a suite of vulnerability detectors, prints visual information about contract details, and provides an API to easily write custom analyses. Slither enables developers to find vulnerabilities, enhance their code comprehension, and quickly prototype custom analyses.\n\n## Features\n\n* Detects vulnerable Solidity code with low false positives\n* Identifies where the error condition occurs in the source code\n* Easily integrates into continuous integration and Truffle builds\n* Built-in 'printers' quickly report crucial contract information\n* Detector API to write custom analyses in Python\n* Ability to analyze contracts written with Solidity >= 0.4\n* Intermediate representation ([SlithIR](https://github.com/trailofbits/slither/wiki/SlithIR)) enables simple, high-precision analyses\n* Correctly parses 99.9% of all public Solidity code\n* Average execution time of less than 1 second per contract\n\n## Usage\n\nRun Slither on a Truffle/Embark/Dapp/Etherlime application:\n```\nslither .\n```\n\nRun Slither on a single file:\n``` \n$ slither tests/uninitialized.sol \n``` \n\nFor additional configuration, see the [usage](https://github.com/trailofbits/slither/wiki/Usage) documentation. \n\nUse [solc-select](https://github.com/crytic/solc-select) if your contracts require older versions of solc.\n\n## Detectors\n\nBy default, all the detectors are run.\n\nNum | Detector | What it Detects | Impact | Confidence\n--- | --- | --- | --- | ---\n1 | `rtlo` | [Right-To-Left-Override control character is used](https://github.com/crytic/slither/wiki/Detector-Documentation#right-to-left-override-character) | High | High\n2 | `shadowing-state` | [State variables shadowing](https://github.com/crytic/slither/wiki/Detector-Documentation#state-variable-shadowing) | High | High\n3 | `suicidal` | [Functions allowing anyone to destruct the contract](https://github.com/crytic/slither/wiki/Detector-Documentation#suicidal) | High | High\n4 | `uninitialized-state` | [Uninitialized state variables](https://github.com/crytic/slither/wiki/Detector-Documentation#uninitialized-state-variables) | High | High\n5 | `uninitialized-storage` | [Uninitialized storage variables](https://github.com/crytic/slither/wiki/Detector-Documentation#uninitialized-storage-variables) | High | High\n6 | `arbitrary-send` | [Functions that send ether to arbitrary destinations](https://github.com/crytic/slither/wiki/Detector-Documentation#functions-that-send-ether-to-arbitrary-destinations) | High | Medium\n7 | `controlled-delegatecall` | [Controlled delegatecall destination](https://github.com/crytic/slither/wiki/Detector-Documentation#controlled-delegatecall) | High | Medium\n8 | `reentrancy-eth` | [Reentrancy vulnerabilities (theft of ethers)](https://github.com/crytic/slither/wiki/Detector-Documentation#reentrancy-vulnerabilities) | High | Medium\n9 | `erc20-interface` | [Incorrect ERC20 interfaces](https://github.com/crytic/slither/wiki/Detector-Documentation#incorrect-erc20-interface) | Medium | High\n10 | `erc721-interface` | [Incorrect ERC721 interfaces](https://github.com/crytic/slither/wiki/Detector-Documentation#incorrect-erc721-interface) | Medium | High\n11 | `incorrect-equality` | [Dangerous strict equalities](https://github.com/crytic/slither/wiki/Detector-Documentation#dangerous-strict-equalities) | Medium | High\n12 | `locked-ether` | [Contracts that lock ether](https://github.com/crytic/slither/wiki/Detector-Documentation#contracts-that-lock-ether) | Medium | High\n13 | `shadowing-abstract` | [State variables shadowing from abstract contracts](https://github.com/crytic/slither/wiki/Detector-Documentation#state-variable-shadowing-from-abstract-contracts) | Medium | High\n14 | `constant-function` | [Constant functions changing the state](https://github.com/crytic/slither/wiki/Detector-Documentation#constant-functions-changing-the-state) | Medium | Medium\n15 | `reentrancy-no-eth` | [Reentrancy vulnerabilities (no theft of ethers)](https://github.com/crytic/slither/wiki/Detector-Documentation#reentrancy-vulnerabilities-1) | Medium | Medium\n16 | `tx-origin` | [Dangerous usage of `tx.origin`](https://github.com/crytic/slither/wiki/Detector-Documentation#dangerous-usage-of-txorigin) | Medium | Medium\n17 | `unchecked-lowlevel` | [Unchecked low-level calls](https://github.com/crytic/slither/wiki/Detector-Documentation#unchecked-low-level-calls) | Medium | Medium\n18 | `unchecked-send` | [Unchecked send](https://github.com/crytic/slither/wiki/Detector-Documentation#unchecked-send) | Medium | Medium\n19 | `uninitialized-local` | [Uninitialized local variables](https://github.com/crytic/slither/wiki/Detector-Documentation#uninitialized-local-variables) | Medium | Medium\n20 | `unused-return` | [Unused return values](https://github.com/crytic/slither/wiki/Detector-Documentation#unused-return) | Medium | Medium\n21 | `shadowing-builtin` | [Built-in symbol shadowing](https://github.com/crytic/slither/wiki/Detector-Documentation#builtin-symbol-shadowing) | Low | High\n22 | `shadowing-local` | [Local variables shadowing](https://github.com/crytic/slither/wiki/Detector-Documentation#local-variable-shadowing) | Low | High\n23 | `void-cst` | [Constructor called not implemented](https://github.com/crytic/slither/wiki/Detector-Documentation#void-constructor) | Low | High\n24 | `calls-loop` | [Multiple calls in a loop](https://github.com/crytic/slither/wiki/Detector-Documentation/_edit#calls-inside-a-loop) | Low | Medium\n25 | `reentrancy-benign` | [Benign reentrancy vulnerabilities](https://github.com/crytic/slither/wiki/Detector-Documentation#reentrancy-vulnerabilities-2) | Low | Medium\n26 | `timestamp` | [Dangerous usage of `block.timestamp`](https://github.com/crytic/slither/wiki/Detector-Documentation#block-timestamp) | Low | Medium\n27 | `assembly` | [Assembly usage](https://github.com/crytic/slither/wiki/Detector-Documentation#assembly-usage) | Informational | High\n28 | `deprecated-standards` | [Deprecated Solidity Standards](https://github.com/crytic/slither/wiki/Detector-Documentation#deprecated-standards) | Informational | High\n29 | `erc20-indexed` | [Un-indexed ERC20 event parameters](https://github.com/crytic/slither/wiki/Detector-Documentation#unindexed-erc20-event-parameters) | Informational | High\n30 | `low-level-calls` | [Low level calls](https://github.com/crytic/slither/wiki/Detector-Documentation#low-level-calls) | Informational | High\n31 | `naming-convention` | [Conformance to Solidity naming conventions](https://github.com/crytic/slither/wiki/Detector-Documentation#conformance-to-solidity-naming-conventions) | Informational | High\n32 | `pragma` | [If different pragma directives are used](https://github.com/crytic/slither/wiki/Detector-Documentation#different-pragma-directives-are-used) | Informational | High\n33 | `solc-version` | [Incorrect Solidity version (< 0.4.24 or complex pragma)](https://github.com/crytic/slither/wiki/Detector-Documentation#incorrect-versions-of-solidity) | Informational | High\n34 | `unused-state` | [Unused state variables](https://github.com/crytic/slither/wiki/Detector-Documentation#unused-state-variables) | Informational | High\n35 | `too-many-digits` | [Conformance to numeric notation best practices](https://github.com/crytic/slither/wiki/Detector-Documentation#too-many-digits) | Informational | Medium\n36 | `constable-states` | [State variables that could be declared constant](https://github.com/crytic/slither/wiki/Detector-Documentation#state-variables-that-could-be-declared-constant) | Optimization | High\n37 | `external-function` | [Public function that could be declared as external](https://github.com/crytic/slither/wiki/Detector-Documentation#public-function-that-could-be-declared-as-external) | Optimization | High\n\n\n[Contact us](https://www.trailofbits.com/contact/) to get access to additional detectors.\n\n### Printers\n\nTo run a printer, use `--print` and a comma-separated list of printers.\n\nNum | Printer | Description\n--- | --- | ---\n1 | `call-graph` | [Export the call-graph of the contracts to a dot file](https://github.com/trailofbits/slither/wiki/Printer-documentation#call-graph)\n2 | `cfg` | [Export the CFG of each functions](https://github.com/trailofbits/slither/wiki/Printer-documentation#cfg)\n3 | `constructor-calls` | [Print the constructors executed](https://github.com/crytic/slither/wiki/Printer-documentation#constructor-calls)\n4 | `contract-summary` | [Print a summary of the contracts](https://github.com/trailofbits/slither/wiki/Printer-documentation#contract-summary)\n5 | `data-dependency` | [Print the data dependencies of the variables](https://github.com/trailofbits/slither/wiki/Printer-documentation#data-dependencies)\n6 | `echidna` | [Export Echidna guiding information](https://github.com/trailofbits/slither/wiki/Printer-documentation#echidna)\n7 | `function-id` | [Print the keccack256 signature of the functions](https://github.com/trailofbits/slither/wiki/Printer-documentation#function-id)\n8 | `function-summary` | [Print a summary of the functions](https://github.com/trailofbits/slither/wiki/Printer-documentation#function-summary)\n9 | `human-summary` | [Print a human-readable summary of the contracts](https://github.com/trailofbits/slither/wiki/Printer-documentation#human-summary)\n10 | `inheritance` | [Print the inheritance relations between contracts](https://github.com/trailofbits/slither/wiki/Printer-documentation#inheritance)\n11 | `inheritance-graph` | [Export the inheritance graph of each contract to a dot file](https://github.com/trailofbits/slither/wiki/Printer-documentation#inheritance-graph)\n12 | `modifiers` | [Print the modifiers called by each function](https://github.com/trailofbits/slither/wiki/Printer-documentation#modifiers)\n13 | `require` | [Print the require and assert calls of each function](https://github.com/trailofbits/slither/wiki/Printer-documentation#require)\n14 | `slithir` | [Print the slithIR representation of the functions](https://github.com/trailofbits/slither/wiki/Printer-documentation#slithir)\n15 | `slithir-ssa` | [Print the slithIR representation of the functions](https://github.com/trailofbits/slither/wiki/Printer-documentation#slithir-ssa)\n16 | `variable-order` | [Print the storage order of the state variables](https://github.com/trailofbits/slither/wiki/Printer-documentation#variable-order)\n17 | `vars-and-auth` | [Print the state variables written and the authorization of the functions](https://github.com/trailofbits/slither/wiki/Printer-documentation#variables-written-and-authorization)\n\n## How to install\n\nSlither requires Python 3.6+ and [solc](https://github.com/ethereum/solidity/), the Solidity compiler. \n\n### Using Pip\n\n```\n$ pip install slither-analyzer\n```\n\n### Using Git\n\n```bash\n$ git clone https://github.com/crytic/slither.git && cd slither\n$ python setup.py install \n```\n\nWe recommend using an Python virtual environment, as detailed in the [Developer Installation Instructions](https://github.com/trailofbits/slither/wiki/Developer-installation), if you prefer to install Slither via git.\n\n### Using Docker\n\nUse the [`eth-security-toolbox`](https://github.com/trailofbits/eth-security-toolbox/) docker image. It includes all of our security tools and every major version of Solidity in a single image. `/home/share` will be mounted to `/share` in the container. Use [`solc-select`](https://github.com/trailofbits/eth-security-toolbox/#usage) to switch the Solidity version.\n\n```\ndocker pull trailofbits/eth-security-toolbox\n```\n\nTo share a directory in the container:\n\n```\ndocker run -it -v /home/share:/share trailofbits/eth-security-toolbox\n```\n\n## Getting Help\n\nFeel free to stop by our [Slack channel](https://empireslacking.herokuapp.com) (#ethereum) for help using or extending Slither.\n\n* The [Printer documentation](https://github.com/trailofbits/slither/wiki/Printer-documentation) describes the information Slither is capable of visualizing for each contract.\n\n* The [Detector documentation](https://github.com/trailofbits/slither/wiki/Adding-a-new-detector) describes how to write a new vulnerability analyses.\n\n* The [API documentation](https://github.com/trailofbits/slither/wiki/API-examples) describes the methods and objects available for custom analyses.\n\n* The [SlithIR documentation](https://github.com/trailofbits/slither/wiki/SlithIR) describes the SlithIR intermediate representation.\n\n## License\n\nSlither is licensed and distributed under the AGPLv3 license. [Contact us](mailto:opensource@trailofbits.com) if you're looking for an exception to the terms.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/crytic/slither", "keywords": "", "license": "AGPL-3.0", "maintainer": "", "maintainer_email": "", "name": "slither-analyzer", "package_url": "https://pypi.org/project/slither-analyzer/", "platform": "", "project_url": "https://pypi.org/project/slither-analyzer/", "project_urls": { "Homepage": "https://github.com/crytic/slither" }, "release_url": "https://pypi.org/project/slither-analyzer/0.6.7/", "requires_dist": [ "prettytable (>=0.7.2)", "pysha3 (>=1.0.2)", "crytic-compile (>=0.1.4)" ], "requires_python": ">=3.6", "summary": "Slither is a Solidity static analysis framework written in Python 3.", "version": "0.6.7" }, "last_serial": 5929072, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "10c41961ddf714bf94cd6da85ba23949", "sha256": "ddb16ce9a9754e2c72b369d7050c0db72bdbbf5adddd8ffd612b5646a6eeaf2b" }, "downloads": -1, "filename": "slither_analyzer-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "10c41961ddf714bf94cd6da85ba23949", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 210773, "upload_time": "2018-10-19T12:55:11", "url": "https://files.pythonhosted.org/packages/dd/7d/d5797bfa3494ba0e732c7d561886e74b3ea68750ddc081cd9798b75c4a6d/slither_analyzer-0.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e3920330e8ef9d31a90d36e7e7d09687", "sha256": "8105be1ba1cf75f0f7cc3d4d0bf17d53411aff486f15c74d1e56bf6a1cc46ede" }, "downloads": -1, "filename": "slither-analyzer-0.1.0.tar.gz", "has_sig": false, "md5_digest": "e3920330e8ef9d31a90d36e7e7d09687", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 74756, "upload_time": "2018-10-19T12:55:13", "url": "https://files.pythonhosted.org/packages/0e/c2/681d2a66a0bd6eae180391fc240999588ffa5e6679ce31b17a831ba6a385/slither-analyzer-0.1.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "8c4565f38caf7c6abc08bae0be995f51", "sha256": "9ae88c0f30cb52a094cd8c67054bc1dac2a4f515ad0773a9ff39542a074aa530" }, "downloads": -1, "filename": "slither-analyzer-0.2.0.tar.gz", "has_sig": false, "md5_digest": "8c4565f38caf7c6abc08bae0be995f51", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 84540, "upload_time": "2018-10-30T08:35:31", "url": "https://files.pythonhosted.org/packages/3d/13/f369bb8da8b59291ec6ffba1a9b0bc9d47b891d8bd8465553ebbeb7d7308/slither-analyzer-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "3ca8559f4fa8306561ee626e974408f9", "sha256": "0f8d30e590f6191ab235e0c63187cdaf8f5de3afb876018eab7886332a667983" }, "downloads": -1, "filename": "slither-analyzer-0.3.0.tar.gz", "has_sig": false, "md5_digest": "3ca8559f4fa8306561ee626e974408f9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 89176, "upload_time": "2018-11-20T17:02:44", "url": "https://files.pythonhosted.org/packages/22/0a/ccc0c69b610d5b288610ab4c5155397b2db27db5d90fa9ba84c1f2852239/slither-analyzer-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "5e6a8a9529a13af1e23ae782316190ad", "sha256": "41d129f6fd532849b30bf92e25379ae20ba16e0fe943b17fa90e4187901d0b60" }, "downloads": -1, "filename": "slither_analyzer-0.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5e6a8a9529a13af1e23ae782316190ad", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 238558, "upload_time": "2018-12-03T15:04:07", "url": "https://files.pythonhosted.org/packages/9b/0f/b3169f232bbf0de2293eafa82a197f9d56b8c3fe93730ece35dee422f341/slither_analyzer-0.3.1-py3-none-any.whl" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "bcc96a70abd983d0d7de48c397a31329", "sha256": "f384c9892b63ecf985576fb66d208f12c11fb6bb2f772379cc6148f456b3f5cd" }, "downloads": -1, "filename": "slither-analyzer-0.4.0.tar.gz", "has_sig": false, "md5_digest": "bcc96a70abd983d0d7de48c397a31329", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 92772, "upload_time": "2018-12-14T20:41:21", "url": "https://files.pythonhosted.org/packages/bb/21/9512867d8af37780b39a717ca7c67f32df4bdee99d796c5e815924c6726f/slither-analyzer-0.4.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "28cd43eac85f6a432429158eeb2439d0", "sha256": "87530b9b33b977aa8beb0df3cc0b8a4262a9347dc7958cc585f200c641d60886" }, "downloads": -1, "filename": "slither_analyzer-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "28cd43eac85f6a432429158eeb2439d0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 281126, "upload_time": "2019-01-14T19:51:38", "url": "https://files.pythonhosted.org/packages/6e/b6/0d3cbe6d1b506dec11db6f17dff0c7a33f847d1bc1108ed3792f8c13741b/slither_analyzer-0.5.0-py3-none-any.whl" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "ca09a43ec203f7489216eef7e1f480c6", "sha256": "58b26d18e6e984479bbb7956a3589078a10456f93b6a56453491c9e29619a331" }, "downloads": -1, "filename": "slither-analyzer-0.5.1.tar.gz", "has_sig": false, "md5_digest": "ca09a43ec203f7489216eef7e1f480c6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 112055, "upload_time": "2019-01-25T15:58:30", "url": "https://files.pythonhosted.org/packages/46/ef/9243635895db63e7284d62a833fdfc923351875c230dda1dc0ca51ba611c/slither-analyzer-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "ec25a04d2107aa20684b12d94de229cc", "sha256": "0130e0c164558f941bf1bf29b12bae5510e5cea6535cf151397955bbae02470f" }, "downloads": -1, "filename": "slither_analyzer-0.5.2-py3-none-any.whl", "has_sig": false, "md5_digest": "ec25a04d2107aa20684b12d94de229cc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 287174, "upload_time": "2019-01-31T18:53:41", "url": "https://files.pythonhosted.org/packages/ae/3a/3f1fe9d4cb77238b557ce6a2c2a17667a480b3aebb064dcf0e58e85498f2/slither_analyzer-0.5.2-py3-none-any.whl" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "bb44e9f3d933b10eeac34d4050be7eb0", "sha256": "4dd7281cf3503c002fa4ebf40a6c96fb54c14aac6ee4014e369fa904fbe0f0c0" }, "downloads": -1, "filename": "slither_analyzer-0.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "bb44e9f3d933b10eeac34d4050be7eb0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 313850, "upload_time": "2019-02-15T21:59:53", "url": "https://files.pythonhosted.org/packages/50/a8/13afb0f7857303277a8b28d9bdee464b3cdf91f8535895a9e6020c1013cb/slither_analyzer-0.6.0-py3-none-any.whl" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "f0650ebb95f1bc0287d9ad9b40f1a67b", "sha256": "38eeb9c42ae537fb1ce4e6086d7e3aad05f97ce9310d07ef9031be6b6e22eeef" }, "downloads": -1, "filename": "slither_analyzer-0.6.1-py3-none-any.whl", "has_sig": false, "md5_digest": "f0650ebb95f1bc0287d9ad9b40f1a67b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 319127, "upload_time": "2019-03-04T20:11:44", "url": "https://files.pythonhosted.org/packages/f4/94/868c0753eaedc853296d53c0ae61a25d2c346fd39a5357d77a74cd8cbba6/slither_analyzer-0.6.1-py3-none-any.whl" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "2afdd753884e3ddc922abefd7759a97f", "sha256": "3629d3648e28ccfed6f85f8d449a7b8893549c0c4c8adeda3ddef368d4b96f4b" }, "downloads": -1, "filename": "slither-analyzer-0.6.2.tar.gz", "has_sig": false, "md5_digest": "2afdd753884e3ddc922abefd7759a97f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 141333, "upload_time": "2019-04-05T18:23:21", "url": "https://files.pythonhosted.org/packages/7c/13/d20101f50a2d53c436481febb3fcfbd130e43f334510312f7a2d1c3f4e58/slither-analyzer-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "cb3254ccb493e0ab4f9418b894386eab", "sha256": "d08d4bf065b776efd837d76741092394ffb3f9dc865086d251da5202ac655cce" }, "downloads": -1, "filename": "slither_analyzer-0.6.3-py3-none-any.whl", "has_sig": false, "md5_digest": "cb3254ccb493e0ab4f9418b894386eab", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 325059, "upload_time": "2019-04-24T20:00:01", "url": "https://files.pythonhosted.org/packages/21/a8/faf2ef340fcbb20b983375c66a26e8643c880f7555b9121405cba07cef28/slither_analyzer-0.6.3-py3-none-any.whl" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "e5d3657fe35cba4c3994c7d59dc0ad88", "sha256": "f653d8f73f0c5b156b9100c4f14f846331151ba7713ecdecd8036d25294b50b5" }, "downloads": -1, "filename": "slither_analyzer-0.6.4-py3-none-any.whl", "has_sig": false, "md5_digest": "e5d3657fe35cba4c3994c7d59dc0ad88", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 270268, "upload_time": "2019-05-14T18:32:04", "url": "https://files.pythonhosted.org/packages/3a/7c/13e7fb73b5b092733acb4002ae46601ad65c074a82cc0f6485e45fdba0a1/slither_analyzer-0.6.4-py3-none-any.whl" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "3e90a0b9e6c00ec12f6c9e418d8b245e", "sha256": "6eb89b1a79efbb90570afe6f690810c5781077a82a31be234efe521251d3e5b9" }, "downloads": -1, "filename": "slither-analyzer-0.6.5.tar.gz", "has_sig": false, "md5_digest": "3e90a0b9e6c00ec12f6c9e418d8b245e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 162727, "upload_time": "2019-08-16T15:49:43", "url": "https://files.pythonhosted.org/packages/14/f0/ee8529324f4c9e14f664fecf2c18c14b4811acaf046b024a8e535a637d97/slither-analyzer-0.6.5.tar.gz" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "6707cbe6a2a042dda29e4e6d8f4e567a", "sha256": "bccca447261c9c2dd0f05e296546dfff0f6325aaf725d1103666fb59672d3014" }, "downloads": -1, "filename": "slither-analyzer-0.6.6.tar.gz", "has_sig": false, "md5_digest": "6707cbe6a2a042dda29e4e6d8f4e567a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 162750, "upload_time": "2019-08-16T18:28:30", "url": "https://files.pythonhosted.org/packages/8b/2f/f446ad8631690fe92dbddeae16b390227e2262dc7015e7ccecd1cc216ddf/slither-analyzer-0.6.6.tar.gz" } ], "0.6.7": [ { "comment_text": "", "digests": { "md5": "756947dcf42a6acf4d1dc791779e6f5f", "sha256": "9a9ac0c8ebbf22c40278ca1b375145019b0c81e062bf7d026f5ee42dda207fc3" }, "downloads": -1, "filename": "slither_analyzer-0.6.7-py3-none-any.whl", "has_sig": false, "md5_digest": "756947dcf42a6acf4d1dc791779e6f5f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 320746, "upload_time": "2019-10-04T15:50:57", "url": "https://files.pythonhosted.org/packages/11/1f/4be0195f06ee76ed9a0ef2c6e71f22c72fbac1dd5a9acb94d4532da7a0e3/slither_analyzer-0.6.7-py3-none-any.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "756947dcf42a6acf4d1dc791779e6f5f", "sha256": "9a9ac0c8ebbf22c40278ca1b375145019b0c81e062bf7d026f5ee42dda207fc3" }, "downloads": -1, "filename": "slither_analyzer-0.6.7-py3-none-any.whl", "has_sig": false, "md5_digest": "756947dcf42a6acf4d1dc791779e6f5f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 320746, "upload_time": "2019-10-04T15:50:57", "url": "https://files.pythonhosted.org/packages/11/1f/4be0195f06ee76ed9a0ef2c6e71f22c72fbac1dd5a9acb94d4532da7a0e3/slither_analyzer-0.6.7-py3-none-any.whl" } ] }