I'm trying to build a smart contract with Truffle. I can compile it just fine, but when I try to deploy it on the network, I don't get an option to pass in the initialiser parameters and thus the contract fails.
How do I pass the parameters to a Truffle-compiled contract during deployment?
MintableToken _token– codesalsa Feb 23 '18 at 21:212_deploy_contracts.js(i.e., how can you pass an argument totruffle migrateortruffle deploy)? – goodvibration Oct 03 '18 at 14:04truffle migratecommand-line, and then in2_deploy_contracts.js, access it viaprocess.argv. – goodvibration Oct 03 '18 at 14:15