Mobile Smart Contracts – Deploying Smart Contracts from a Mobile Device Using Solidity

androidsolidity

I have recently started learning solidity but I don't have access to a laptop. All I have is a Samsung s4. I know it is not ideal, but is there a wallet that has the ability to deploy from Android

Best Answer

MyEtherWallet provides an offline signer for contract deployment here. You can use this to generate -and relay- your transaction.

Edit:

For the current version (v3.8.1), you need to click "Deploy contract" first. In that page it asks for the bytecode (yes, you cannot directly paste Solidity code), however, obtaining the bytecode from the source code is trivial. You can use Remix for that. Though I'm not sure if it will work with smartphones. If not, you need to find another Solidity compiler.

Related Topic