Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export type PerpsTooltipContentKey =
| 'receive'
| 'open_interest'
| 'funding_rate'
| 'funding_payments'
| 'geo_block'
| 'estimated_pnl'
| 'limit_price'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export const tooltipContentRegistry: ContentRegistry = {
margin: undefined,
open_interest: undefined,
funding_rate: undefined,
funding_payments: undefined,
geo_block: undefined,
estimated_pnl: undefined,
limit_price: undefined,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ const PerpsPositionCard: React.FC<PerpsPositionCardProps> = ({
</Text>
{onTooltipPress && (
<TouchableOpacity
onPress={() => onTooltipPress('funding_rate')}
onPress={() => onTooltipPress('funding_payments')}
>
<Icon
name={IconName.Info}
Expand Down
4 changes: 4 additions & 0 deletions locales/languages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1477,6 +1477,10 @@
"title": "Funding rate",
"content": "An hourly fee paid between traders to keep prices in line with the market. If the rate is positive, longs pay shorts. If negative, shorts pay longs."
},
"funding_payments": {
"title": "Funding payments",
"content": "This is the amount you've paid in funding fees since the position was opened. Funding is paid or received every hour to keep the perp price close to the actual token price."
},
"geo_block": {
"title": "Perps unavailable in your region",
"content": "Perps trading isn't available in your location due to local restrictions or sanctions."
Expand Down
Loading