From 26cde36ec705e64c8b3674abc6eacb7c3b63a470 Mon Sep 17 00:00:00 2001 From: Thrilok Kumar Date: Fri, 2 Apr 2021 04:09:40 +0530 Subject: [PATCH] updated name and symbol --- contracts/TokenInterfaces.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/TokenInterfaces.sol b/contracts/TokenInterfaces.sol index 0c50c03..dfab978 100644 --- a/contracts/TokenInterfaces.sol +++ b/contracts/TokenInterfaces.sol @@ -46,10 +46,10 @@ contract TokenDelegatorStorage { address public implementation; /// @notice EIP-20 token name for this token - string public name = ""; // TODO - Replace it + string public name = "Instadapp"; /// @notice EIP-20 token symbol for this token - string public symbol = ""; // TODO - Replace it + string public symbol = "INST"; /// @notice Total number of tokens in circulation uint public totalSupply;