When you compile your solidity code, look in the artifacts/
directory. You'll should find a json file MyContract.sol/MyContract.json
that contains both the abi
and bytecode
.
{% hint style="danger" %}
Make sure you use bytecode
and NOT deployedByteCode
from the json file.
deployedByteCode
does not contain constructor code
{% endhint %}
{% embed url="https://epm.wtf/create" %} Upload a contract to epm.wtf {% endembed %}
Once uploaded, your contract will be available for deployment.