Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 766 Bytes

creating-a-contract.md

File metadata and controls

21 lines (13 loc) · 766 Bytes

Creating a Contract

Find your contract ABI and bytecode

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 %}

Upload the contract

{% embed url="https://epm.wtf/create" %} Upload a contract to epm.wtf {% endembed %}

Once uploaded, your contract will be available for deployment.