1
0
Fork 0
mirror of https://github.com/BlueWallet/BlueWallet.git synced 2025-03-16 20:21:35 +01:00
BlueWallet/navigation/PaymentCodeStackParamList.ts
Marcos Rodriguez Velez 919feb243e wip
2024-10-23 19:01:21 -04:00

17 lines
418 B
TypeScript

import { BitcoinUnit } from '../models/bitcoinUnits';
export type PaymentCodeStackParamList = {
PaymentCode: { paymentCode: string };
PaymentCodesList: {
memo: string;
address: string;
walletID: string;
amount: number;
amountSats: number;
unit: BitcoinUnit;
isTransactionReplaceable: boolean;
launchedBy: string;
isEditable: boolean;
uri: string /* payjoin uri */;
};
};