solidity-unfolder icon indicating copy to clipboard operation
solidity-unfolder copied to clipboard

A Python package to flatten Solidity code with imports into a single file

Results 1 solidity-unfolder issues
Sort by recently updated
recently updated
newest added

## Reproduce ```js pragma solidity ^0.4.24; import "./B.sol"; contract A { B kid; constructor() public { kid = new B(); } } ``` ```js pragma solidity ^0.4.24; import "./A.sol"; contract...