- Write a smart contract with semantics defined below, deploy it to Ethereum Ropsten testnet. Please share contract address and include verified code on Etherscan
contract SimpleToken {
// Create a new token, with default price of 0.01 ETH
// Token ids can start with zero and auto increment
// Current owner is 0x0
// Returns token id
function mint() public returns (uint256);