Skip to content

Commit 56ba5e3

Browse files
committed
rebrand paraswap to velora
1 parent 500a69f commit 56ba5e3

6 files changed

Lines changed: 15 additions & 7 deletions

File tree

public/icons/other/paraswap.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

public/icons/other/velora.svg

Lines changed: 9 additions & 0 deletions
Loading

src/hooks/paraswap/useCollateralRepaySwap.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export const useCollateralRepaySwap = ({
128128
console.error(e);
129129
const message =
130130
convertParaswapErrorMessage(e.message) ||
131-
'There was an issue fetching data from Paraswap';
131+
'There was an issue fetching data from Velora';
132132
setError(message);
133133
} finally {
134134
setLoading(false);

src/hooks/paraswap/useCollateralSwap.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export const useCollateralSwap = ({
109109
console.error(e);
110110
const message =
111111
convertParaswapErrorMessage(e.message) ||
112-
'There was an issue fetching data from Paraswap';
112+
'There was an issue fetching data from Velora';
113113
setError(message);
114114
} finally {
115115
setLoading(false);

src/hooks/paraswap/useDebtSwitch.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export const useDebtSwitch = ({
112112
console.error(e);
113113
const message =
114114
convertParaswapErrorMessage(e.message) ||
115-
'There was an issue fetching data from Paraswap';
115+
'There was an issue fetching data from Velora';
116116
setError(message);
117117
} finally {
118118
setLoading(false);

src/modules/dashboard/lists/SlippageList.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { SlippageTooltip } from 'src/components/infoTooltips/SlippageTooltip';
1616
import { useRootStore } from 'src/store/root';
1717
import { GENERAL } from 'src/utils/events';
1818

19-
import Paraswap from '/public/icons/other/paraswap.svg';
19+
import VeloraIcon from '/public/icons/other/velora.svg';
2020

2121
interface ListSlippageButtonProps {
2222
setSlippage: (value: string) => void;
@@ -131,11 +131,11 @@ export const ListSlippageButton = ({
131131
left: '5px',
132132
}}
133133
>
134-
<Paraswap />
134+
<VeloraIcon />
135135
</SvgIcon>
136136
</Typography>
137137
<Typography variant="main12" color="text.secondary">
138-
Paraswap
138+
Velora
139139
</Typography>
140140
</Box>
141141
</Menu>

0 commit comments

Comments
 (0)