mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 01:40:12 +01:00
18 lines
418 B
TypeScript
18 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 */;
|
|
};
|
|
};
|