From 1ec6587c8038a23b045c9277b413628fd436736c Mon Sep 17 00:00:00 2001 From: tradermohamed Date: Fri, 16 Feb 2024 17:09:34 -0500 Subject: [PATCH] set sol colour to orange --- constants/tokens.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/constants/tokens.ts b/constants/tokens.ts index 17e485a..d54f685 100644 --- a/constants/tokens.ts +++ b/constants/tokens.ts @@ -7,6 +7,9 @@ export function getTokenColor(token: string): string { if (token == 'Other') { return 'pink'; } + if (token == 'SOL') { + return 'orange'; + } // Use the CryptoJS library to get the MD5 hash of the string let hash = CryptoJS.MD5('col' + token);