Skip to content

Latest commit

 

History

History
37 lines (20 loc) · 1.61 KB

how-to-launch-utility-token-dpt.md

File metadata and controls

37 lines (20 loc) · 1.61 KB

How to launch a Utility Token for your DPT?

Prerequisites

  1. Your token should be compliant with ERC20, ERC1363, EIP2612, and EIP3009 Standards.

Instructions using Remix

These instructions include our implementation of ERC20 which fulfills all standards mentioned above

  1. Open Code in remix

  2. Change the contract name from TokenNameERC20 to whatever you want to call your token.

    token-1

  3. Change the TokenName, TokenSymbol, and token supply.

    token-2

  4. Compile the contract.

    token-3

  5. Navigate to Deploy and run transactions from the left navigation.

    token-4

  6. Change the environment from Remix VM to Injected Provider. And connect your Metamask.

    token-5

  7. Select the token contract to deploy.

  8. Click on Deploy and approve the transaction in Metamask.

    token-6

  9. Congratulations you have deployed ERC20 token for your DPT.