项目作者: BlockCatIO

项目描述 :
A python utility to flatten Solidity code with imports into a single file.
高级语言: Python
项目地址: git://github.com/BlockCatIO/solidity-flattener.git
创建时间: 2017-08-08T01:59:41Z
项目社区:https://github.com/BlockCatIO/solidity-flattener

开源协议:MIT License

下载


Solidity Flattener

A BlockCAT Technologies contribution - https://blockcat.io

Are you tired of having to manually combine all of your files when verifying your contract source on Etherscan? This script automatically traverses the dependency graph and outputs all of your imports in the correct order, ready to be pasted into the contract verifier.

This is also useful for quickly throwing your source into Remix without having to fumble with local filesystem connections.

NOTE: This script does not work with imports that are aliased (i.e. import './A.sol' as B; ).

Requirements

  • Python 3.5+, pip
  • solc, the Solidity compiler
    • Note: The NPM version of the compiler does not expose enough functionality to satisfy the requirements of this tool.

Installation

pip install solidity-flattener

Usage

  1. usage: solidity_flattener [-h] [--output FILENAME] [--solc-paths SOLC_PATHS]
  2. target_solidity_file
  3. Flattens a target Solidity source file by resolving all of its imports and
  4. dependencies. NOTE: This does not work with imports that are aliased (i.e.
  5. import './A.sol' as B; )
  6. positional arguments:
  7. target_solidity_file Specifies the target Solidity source file to flatten.
  8. optional arguments:
  9. -h, --help show this help message and exit
  10. --output FILENAME Specifies the output destination filename. Outputs to
  11. stdout by default.
  12. --solc-paths SOLC_PATHS
  13. Specifies the path replacements to pass onto solidity.
  14. See solc --help for more information.

Examples

To flatten a Solidity file:

solidity_flattener StandardToken.sol

To output to a file instead of standard out:

solidity_flattener --output StandardTokenFlattened.sol StandardToken.sol

To provide import path redirections:

solidity_flattener --solc-paths="my_solidity_path=my_actual_path" StandardToken.sol

Contributions

Pull requests are welcome, or feel free to open an issue to discuss.