0

I can generate the .bin of a contract with solc as follows:

solcjs --bin -o output contract.sol

However running the following command:

solcjs --bin-runtime -o output contract.sol

Generates the following:

Invalid option selected, must specify either --bin or --abi

Is bin-runtime still a valid command in solc?

ZhouW
  • 1,348
  • 2
  • 18
  • 35

1 Answers1

0

bin-runtime is an option for solc, but you're using solcjs. Here are instructions for installing solc.

Daniel Que
  • 783
  • 7
  • 21