Hedera Contract Builder Quickstart
The Hedera Contract Builder allows you to deploy smart contracts on the Hedera testnet quickly. The tool is provided through the Hedera Developer Portal.1
Step 1: Visit the Hedera Contract Builder
Head over to the Hedera Smart Contract Builder, a powerful web-based IDE for compiling and deploying contracts.

2
Step 2: Create and Compile an ERC-20 Smart Contract
Select the ERC20 option at the top and modify its settings. Let’s create a token with the “Mintable” feature and set access control to “Ownable.” Once you’ve done that, click the “Compile” button at the bottom left of the page.

3
Step 3: Deploy ERC-20 Smart Contract
Finally, you can deploy your contract. First, copy your EVM account address at the top right of your profile information.
Next, let’s paste the address in the constructor argument 
Click the “Deploy” button to deploy the contract. Once your contract is deployed, you get an interface where you can interact with your smart contract.

initialOwner for our ERC-20 contract. This address will be assigned the role of minting new tokens.
4
Step 4: Mint an ERC-20 Token
Let’s use the interface to mint a new token. Expand the mint function, and let’s mint a token for ourselves. Paste your EVM address in the 
Expanding the output area allows you to check the status of your function call. If you see a status message “SUCCESS,” you’ve successfully minted an ERC-20 token on Hedera.
to field and set the amount equal to 1.
