Is there a way to automate an ERC20 token deploy? Can a contract receive some parameters to configure the new token and then deploy it returning the new token address?
I'm trying to create a contract that speaks with a dapp which instructs the contract to create and then deploy a given ERC20 token with the given parameters (name, sym, decimals...)
Is this possible?
I've found that a Dapp can deploy a contract: https://ethereum.stackexchange.com/questions/36698/deploying-a-smart-contract-using-dapp
But can a contract deploy a contract? Is this too pricy?