1.0.0 • Published 10 months ago

solwrap v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

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);