From eae95e1e3b1c253f44166b828c60ea9ddc5ed3c2 Mon Sep 17 00:00:00 2001 From: snsd0805 Date: Sun, 4 Jun 2023 20:36:18 +0800 Subject: [PATCH] fix: useless contract --- contracts/OnChainSVG.sol | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 contracts/OnChainSVG.sol diff --git a/contracts/OnChainSVG.sol b/contracts/OnChainSVG.sol deleted file mode 100644 index 19849b4..0000000 --- a/contracts/OnChainSVG.sol +++ /dev/null @@ -1,14 +0,0 @@ -// SPDX-License-Identifier: MIT -pragma solidity >=0.4.22 <0.9.0; -import "@openzeppelin/contracts/utils/Strings.sol"; - -contract OnChainSVG { - constructor() {} - - function getSvgImage(uint uid) external pure returns (string memory){ - string memory uid_str = Strings.toString(uid); - string memory a = 'Credit SystemSoulbound Token(CSSBT)'; - string memory b = ""; - return string(abi.encodePacked(a, uid_str, b)); - } -}