From 10ccf4aa0b2d6914e3c2d32e454e4d106a99a4fd Mon Sep 17 00:00:00 2001 From: Lucas Manuel Date: Wed, 16 Mar 2022 02:52:56 -0400 Subject: [PATCH] feat: Add ASCII art (#33) --- contracts/ERC20.sol | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/contracts/ERC20.sol b/contracts/ERC20.sol index e322fb7..64e3196 100644 --- a/contracts/ERC20.sol +++ b/contracts/ERC20.sol @@ -3,6 +3,15 @@ pragma solidity ^0.8.7; import { IERC20 } from "./interfaces/IERC20.sol"; +/* + ███████╗██████╗ ██████╗ ██████╗ ██████╗ + ██╔════╝██╔══██╗██╔════╝ ╚════██╗██╔═████╗ + █████╗ ██████╔╝██║ █████╔╝██║██╔██║ + ██╔══╝ ██╔══██╗██║ ██╔═══╝ ████╔╝██║ + ███████╗██║ ██║╚██████╗ ███████╗╚██████╔╝ + ╚══════╝╚═╝ ╚═╝ ╚═════╝ ╚══════╝ ╚═════╝ +*/ + /** * @title Modern ERC-20 implementation. * @dev Acknowledgements to Solmate, OpenZeppelin, and DSS for inspiring this code.