diff --git a/components/stats/PerpMarketsTable.tsx b/components/stats/PerpMarketsTable.tsx index 9e48d9b2..167f4400 100644 --- a/components/stats/PerpMarketsTable.tsx +++ b/components/stats/PerpMarketsTable.tsx @@ -21,6 +21,7 @@ import Tooltip from '@components/shared/Tooltip' import { PerpStatsItem } from 'types' import useMangoGroup from 'hooks/useMangoGroup' import { NextRouter, useRouter } from 'next/router' +import { InformationCircleIcon } from '@heroicons/react/24/outline' const SimpleAreaChart = dynamic( () => import('@components/shared/SimpleAreaChart'), { ssr: false } @@ -188,13 +189,30 @@ const PerpMarketsTable = () => { -
-

- {fundingRate} - | - {fundingRateApr}{' '} - APR -

+
+

{fundingRate}

+ + {fundingRateApr ? ( +
+ The 1hr rate as an APR is {fundingRateApr}. +
+ ) : null} +
+ Funding is paid continuously. The 1hr rate + displayed is a rolling average of the past 60 + mins. +
+
+ When positive, longs will pay shorts and when + negative shorts pay longs. +
+ + } + > + +
diff --git a/components/trade/PerpFundingRate.tsx b/components/trade/PerpFundingRate.tsx index 1eeacc64..8911fd67 100644 --- a/components/trade/PerpFundingRate.tsx +++ b/components/trade/PerpFundingRate.tsx @@ -1,5 +1,5 @@ import { BookSide, PerpMarket } from '@blockworks-foundation/mango-v4' -import { InformationCircleIcon } from '@heroicons/react/20/solid' +import { InformationCircleIcon } from '@heroicons/react/24/outline' import { useQuery } from '@tanstack/react-query' import useMangoGroup from 'hooks/useMangoGroup' import useSelectedMarket from 'hooks/useSelectedMarket'