stylus-erc20
Generate an ERC-20 fungible token contract source code with optional burnable, permit, and flashmint features. Returns the code as a Markdown block.
Instructions
Make a fungible token per the ERC-20 standard.
Returns the source code of the generated contract, formatted in a Markdown code block. Does not write to disk.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The name of the contract | |
| burnable | No | Whether token holders will be able to destroy their tokens | |
| permit | No | Whether without paying gas, token holders will be able to allow third parties to transfer from their account. | |
| flashmint | No | Whether to include built-in flash loans to allow lending tokens without requiring collateral as long as they're returned in the same transaction. | |
| info | No | Metadata about the contract and author |