Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(gui): Display markup on "waiting for bitcoin deposit page" #209

Merged
merged 3 commits into from
Nov 26, 2024
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
6 changes: 3 additions & 3 deletions src-gui/src/renderer/components/modal/provider/MakerInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
MoneroBitcoinExchangeRate,
SatsAmount,
} from "renderer/components/other/Units";
import { satsToBtc, secondsToDays } from "utils/conversionUtils";
import { getMarkup, satsToBtc, secondsToDays } from "utils/conversionUtils";
import { isMakerOutdated } from 'utils/multiAddrUtils';
import WarningIcon from '@material-ui/icons/Warning';
import { useAppSelector } from "store/hooks";
Expand Down Expand Up @@ -43,12 +43,12 @@ const useStyles = makeStyles((theme) => ({
*/
function MakerMarkupChip({ maker }: { maker: ExtendedMakerStatus }) {
const marketExchangeRate = useAppSelector(s => s.rates?.xmrBtcRate);
if (marketExchangeRate === null)
if (marketExchangeRate == null)
return null;

const makerExchangeRate = satsToBtc(maker.price);
/** The markup of the exchange rate compared to the market rate in percent */
const markup = (makerExchangeRate - marketExchangeRate) / marketExchangeRate * 100;
const markup = getMarkup(makerExchangeRate, marketExchangeRate);

return (
<Tooltip title="The markup this maker charges compared to centralized markets. A lower markup means that you get more Monero for your Bitcoin.">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default function WaitingForBtcDepositPage({
<li>
All Bitcoin sent to this this address will converted into
Monero at an exchance rate of{" "}
<MoneroSatsExchangeRate rate={quote.price} />
<MoneroSatsExchangeRate rate={quote.price} displayMarkup={true} />
</li>
<li>
The network fee of{" "}
Expand Down
50 changes: 36 additions & 14 deletions src-gui/src/renderer/components/other/Units.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Tooltip } from "@material-ui/core";
import { useAppSelector } from "store/hooks";
import { piconerosToXmr, satsToBtc } from "utils/conversionUtils";
import { getMarkup, piconerosToXmr, satsToBtc } from "utils/conversionUtils";

type Amount = number | null | undefined;

Expand All @@ -9,11 +9,13 @@ export function AmountWithUnit({
unit,
fixedPrecision,
exchangeRate,
parenthesisText = null,
}: {
amount: Amount;
unit: string;
fixedPrecision: number;
exchangeRate?: Amount;
parenthesisText?: string;
}) {
const fetchFiatPrices = useAppSelector((state) => state.settings.fetchFiatPrices);
const fiatCurrency = useAppSelector((state) => state.settings.fiatCurrency);
Expand All @@ -29,6 +31,7 @@ export function AmountWithUnit({
? Number.parseFloat(amount.toFixed(fixedPrecision))
: "?"}{" "}
{unit}
{parenthesisText != null ? ` (${parenthesisText})` : null}
</span>
</Tooltip>
);
Expand Down Expand Up @@ -64,25 +67,44 @@ export function MoneroAmount({ amount }: { amount: Amount }) {
);
}

export function MoneroBitcoinExchangeRate(
state: { rate: Amount } | { satsAmount: number; piconeroAmount: number },
) {
if ("rate" in state) {
return (
<AmountWithUnit amount={state.rate} unit="BTC/XMR" fixedPrecision={8} />
);
}
export function MoneroBitcoinExchangeRate({
rate,
displayMarkup = false,
}: {
rate: Amount;
displayMarkup?: boolean;
}) {
const marketRate = useAppSelector((state) => state.rates?.xmrBtcRate);
const markup = (displayMarkup && marketRate != null) ? `${getMarkup(rate, marketRate).toFixed(2)}% markup` : null;

return (
<AmountWithUnit
amount={rate}
unit="BTC/XMR"
fixedPrecision={8}
parenthesisText={markup}
/>
);
}

const rate =
satsToBtc(state.satsAmount) / piconerosToXmr(state.piconeroAmount);
export function MoneroBitcoinExchangeRateFromAmounts({
satsAmount,
piconeroAmount,
displayMarkup = false,
}: {
satsAmount: number;
piconeroAmount: number;
displayMarkup?: boolean;
}) {
const rate = satsToBtc(satsAmount) / piconerosToXmr(piconeroAmount);

return <AmountWithUnit amount={rate} unit="BTC/XMR" fixedPrecision={8} />;
return <MoneroBitcoinExchangeRate rate={rate} displayMarkup={displayMarkup} />;
}

export function MoneroSatsExchangeRate({ rate }: { rate: Amount }) {
export function MoneroSatsExchangeRate({ rate, displayMarkup = false }: { rate: Amount, displayMarkup?: boolean }) {
const btc = satsToBtc(rate);

return <AmountWithUnit amount={btc} unit="BTC/XMR" fixedPrecision={6} />;
return <MoneroBitcoinExchangeRate rate={btc} displayMarkup={displayMarkup} />;
}

export function SatsAmount({ amount }: { amount: Amount }) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import ActionableMonospaceTextBox from "renderer/components/other/ActionableMono
import MonospaceTextBox from "renderer/components/other/MonospaceTextBox";
import {
MoneroBitcoinExchangeRate,
MoneroBitcoinExchangeRateFromAmounts,
PiconeroAmount,
SatsAmount,
} from "renderer/components/other/Units";
Expand Down Expand Up @@ -78,7 +79,7 @@ export default function HistoryRowExpanded({
<TableRow>
<TableCell>Exchange Rate</TableCell>
<TableCell>
<MoneroBitcoinExchangeRate
<MoneroBitcoinExchangeRateFromAmounts
satsAmount={swap.btc_amount}
piconeroAmount={swap.xmr_amount}
/>
Expand Down
2 changes: 1 addition & 1 deletion src-gui/src/store/features/settingsSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const initialState: SettingsState = {
}
},
theme: Theme.Darker,
fetchFiatPrices: false,
fetchFiatPrices: true,
fiatCurrency: FiatCurrency.Usd,
};

Expand Down
5 changes: 5 additions & 0 deletions src-gui/src/utils/conversionUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,8 @@ export function rendezvousSellerToMakerStatus(
export function bytesToMb(bytes: number): number {
return bytes / (1024 * 1024);
}

/// Get the markup of a maker's exchange rate compared to the market rate in percent
export function getMarkup(makerPrice: number, marketPrice: number): number {
return (makerPrice - marketPrice) / marketPrice * 100;
}
Loading