sol-straightener

Straighten/Flatten Solidity file from js file

Usage no npm install needed!

<script type="module">
  import solStraightener from 'https://cdn.skypack.dev/sol-straightener';
</script>

README

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";
  • All parent node_modules directories, 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