alesanro / sol-straightener

Straighten/Flatten Solidity file from js file

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

npm version Build status Coverage Status dependencies Status devDependencies Status npm GitHub

sol-straightener

sol-straightener is an NPM package to straighten the Solidity smart contracts for various purposes. It fetches the content of each imported file and returns the straightened version. It works inside a file.

Install

npm install --save sol-straightener

How to use

    const Straightener = require('sol-straightener');
    let result = await Straightener.straighten(<solidity/file/path>);

An import straightened file contents will be returned which can be used for further processing or writing a file.

Support

Currently it handles import of files from:

  • relative directories, e.g; import "./lib/SafeMath.sol";
  • node_modules directory, e.g; import "openzeppelin-solidity/contracts/token/ERC20/ERC20.sol";
  • Github, e.g; import "github.com/oraclize/ethereum-api/oraclizeAPI_0.5.sol";

Contribution

contributions welcome

Contribution in any form is most welcome.

License

MIT

About

Straighten/Flatten Solidity file from js file

License:MIT License


Languages

Language:JavaScript 100.0%