From 33f99e5558228d249ae2cb229b2712904a67300f Mon Sep 17 00:00:00 2001 From: AGMASO Date: Thu, 30 Apr 2026 14:50:07 +0200 Subject: [PATCH 1/2] feat: add logo --- public/icons/tokens/mega.svg | 1 + src/components/incentives/IncentivesTooltipContent.tsx | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 public/icons/tokens/mega.svg diff --git a/public/icons/tokens/mega.svg b/public/icons/tokens/mega.svg new file mode 100644 index 0000000000..0225f13466 --- /dev/null +++ b/public/icons/tokens/mega.svg @@ -0,0 +1 @@ + diff --git a/src/components/incentives/IncentivesTooltipContent.tsx b/src/components/incentives/IncentivesTooltipContent.tsx index d056520c59..1888281e21 100644 --- a/src/components/incentives/IncentivesTooltipContent.tsx +++ b/src/components/incentives/IncentivesTooltipContent.tsx @@ -233,6 +233,11 @@ const IncentivesSymbolMap: { symbol: 'aGHO', aToken: true, }, + MEGA: { + tokenIconSymbol: 'MEGA', + symbol: 'aMEGA', + aToken: true, + }, }; interface IncentivesTooltipContentProps { From d20eacfeb2efdf5087ddea0e20ea67567f11bb1f Mon Sep 17 00:00:00 2001 From: AGMASO Date: Thu, 30 Apr 2026 14:56:15 +0200 Subject: [PATCH 2/2] feat: native token --- src/components/incentives/IncentivesTooltipContent.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/incentives/IncentivesTooltipContent.tsx b/src/components/incentives/IncentivesTooltipContent.tsx index 1888281e21..727ae4af9a 100644 --- a/src/components/incentives/IncentivesTooltipContent.tsx +++ b/src/components/incentives/IncentivesTooltipContent.tsx @@ -235,8 +235,8 @@ const IncentivesSymbolMap: { }, MEGA: { tokenIconSymbol: 'MEGA', - symbol: 'aMEGA', - aToken: true, + symbol: 'MEGA', + aToken: false, }, };