[Ethereum] Combine imports in one file in Solidity

solidity

Is there a tool like the subject for Solidity. Let's say I have a contract with import and that import has three imports etc. I'd like to combine all of them into one file and play with it in Remix, for example.

I know how to make it manually.

Best Answer

Use sol-merger. This works like a charm. It creates a separate folder and put the merged contracts there.

Related Topic