solwrap

1.0.0 • Public • Published

Solwrap

npm license

Flatten your contract code into one file by inlining all imports recursively.

This library is handy when you need to verify your Solidity contract code on platforms that require flat files, like Etherscan. Or when you need to compile in your production app without access to node_modules.

Installation

Use the package manager npm to install Solwrap.

npm install solwrap

This library has not install any dependencies and any library referenced in your contract (e.g. @openzeppelin/contracts) must be installed separately.

Usage

const solwrap = require('solwrap');

// specify the path to your solidity file
const contractSource = fs.readFileSync('./path/to/your/Contract.sol', 'utf8');

const flattenedCode=solwrap(contractSource);

Package Sidebar

Install

npm i solwrap

Weekly Downloads

0

Version

1.0.0

License

MIT

Unpacked Size

3.92 kB

Total Files

4

Last publish

Collaborators

  • hacktisch