Deploy ERC20 via factory

Returns transaction data for deploying a new ERC20 token via the factory contract.

Note: This contract is not audited.

Calls deployAndInitializeProxy on the ERC20PausableRecoverableFactory to atomically deploy and initialize a new token proxy.

The deployed token supports:

  • mint(to, amount) - Mint tokens (MINTER_ROLE gated)
  • burn(amount) - Burn tokens
  • burnFrom(account, amount) - Burn from account (with allowance)
  • pause() / unpause() - Pause/unpause transfers (PAUSER_ROLE gated)
  • recover(token, to, amount) - Recover tokens (RECOVER_ROLE gated)
Language
Response
Click Try It! to start a request and see the response here!