diff --git a/src/commons/utils/helper.ts b/src/commons/utils/helper.ts index 5b2c0b7f41..a760a4f174 100644 --- a/src/commons/utils/helper.ts +++ b/src/commons/utils/helper.ts @@ -30,9 +30,6 @@ export const getShortHashXs = (address = "", firstpart?: number, lastPart?: numb if (address?.length <= 18) return address; return address ? `${address.slice(0, firstpart ? firstpart : 7)}...${address.slice(-(lastPart ? lastPart : 5))}` : ""; }; -export const getShortValue = (address = "", length = 50) => { - return address.slice(0, length); -}; export const getShortValue = (address = "", length = 50) => { return address.slice(0, length);