I am trying to deploy a contract via MyEtherWallet from byte code generated by browser-solidity. I unlocked my wallet using private key,but I didn't find any way of passing parameters to contract's constructor. How can I do that?
This makes me doubt whether I will be able to call all functions of my contract from MyEtherWallet as I was able to do using Mist.
I am using MyEtherWallet as substitue to Mist because it saves me from downloading blockchain data.But not sure whether this will work as substitue of Mist for deploying and accessing contracts.
Edit 1: Even on deploying contract from Mist using byte code doesn't give any option to choose for a contact and pass parameters to contract. While deploying contract from source code works as good as expected.
MyContrachere?I guess the steps are part of deploying contract from geth. I don't have geth (or maybe if I am not comfortable with command line). I compiled my contract from solidity-compiler, it gave me compiled bytecode. So how to proceed now? – Prashant Prabhakar Singh Oct 14 '16 at 10:27MyContractwith the output of solidity compiler: https://github.com/ethereum/wiki/wiki/JavaScript-API#returns-48 – Xavier Leprêtre B9lab Oct 14 '16 at 10:29