2020-11-20 02:16:11 +01:00
|
|
|
import React, { useContext, useEffect, useRef, useState } from 'react';
|
2023-02-25 17:20:46 +01:00
|
|
|
import { ActivityIndicator, TouchableOpacity, ScrollView, View, TextInput, Linking, Platform, Text, StyleSheet } from 'react-native';
|
2021-02-28 06:13:37 +01:00
|
|
|
import Clipboard from '@react-native-clipboard/clipboard';
|
2020-12-25 17:09:53 +01:00
|
|
|
import DocumentPicker from 'react-native-document-picker';
|
2023-10-24 03:28:44 +02:00
|
|
|
import { useNavigation, useRoute, useIsFocused } from '@react-navigation/native';
|
2020-12-25 17:09:53 +01:00
|
|
|
import RNFS from 'react-native-fs';
|
2021-01-20 03:13:01 +01:00
|
|
|
import Biometric from '../../class/biometrics';
|
2020-12-25 17:09:53 +01:00
|
|
|
|
2023-12-27 07:52:11 +01:00
|
|
|
import { SecondButton, BlueText, BlueCard, BlueSpacing20, BlueCopyToClipboardButton } from '../../BlueComponents';
|
2020-12-25 17:09:53 +01:00
|
|
|
import navigationStyle from '../../components/navigationStyle';
|
2020-07-20 15:38:46 +02:00
|
|
|
import loc from '../../loc';
|
2020-10-24 19:20:59 +02:00
|
|
|
import { BlueStorageContext } from '../../blue_modules/storage-context';
|
|
|
|
import Notifications from '../../blue_modules/notifications';
|
2021-09-11 18:33:27 +02:00
|
|
|
import { DynamicQRCode } from '../../components/DynamicQRCode';
|
2021-10-04 08:02:33 +02:00
|
|
|
import alert from '../../components/Alert';
|
2023-10-17 15:35:10 +02:00
|
|
|
import { requestCameraAuthorization } from '../../helpers/scan-qr';
|
2023-10-24 03:28:44 +02:00
|
|
|
import { useTheme } from '../../components/themes';
|
2023-12-29 12:52:12 +01:00
|
|
|
import triggerHapticFeedback, { HapticFeedbackTypes } from '../../blue_modules/hapticFeedback';
|
2023-12-27 07:52:11 +01:00
|
|
|
import SafeArea from '../../components/SafeArea';
|
2020-07-01 13:56:52 +02:00
|
|
|
const BlueElectrum = require('../../blue_modules/BlueElectrum');
|
2019-09-27 16:49:56 +02:00
|
|
|
const bitcoin = require('bitcoinjs-lib');
|
2020-12-20 08:01:39 +01:00
|
|
|
const fs = require('../../blue_modules/fs');
|
2020-05-24 11:17:26 +02:00
|
|
|
|
2020-11-20 02:16:11 +01:00
|
|
|
const PsbtWithHardwareWallet = () => {
|
2021-08-24 07:00:57 +02:00
|
|
|
const { txMetadata, fetchAndSaveWalletTransactions, isElectrumDisabled } = useContext(BlueStorageContext);
|
2020-11-20 02:16:11 +01:00
|
|
|
const navigation = useNavigation();
|
|
|
|
const route = useRoute();
|
2021-09-09 13:00:11 +02:00
|
|
|
const { fromWallet, memo, psbt, deepLinkPSBT, launchedBy } = route.params;
|
2020-11-20 02:16:11 +01:00
|
|
|
const routeParamsPSBT = useRef(route.params.psbt);
|
|
|
|
const routeParamsTXHex = route.params.txhex;
|
|
|
|
const { colors } = useTheme();
|
|
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
|
|
const [txHex, setTxHex] = useState(route.params.txhex);
|
2021-02-27 01:23:59 +01:00
|
|
|
const openScannerButton = useRef();
|
2021-09-11 19:46:01 +02:00
|
|
|
const dynamicQRCode = useRef();
|
2021-09-11 19:57:43 +02:00
|
|
|
const isFocused = useIsFocused();
|
2019-09-27 16:49:56 +02:00
|
|
|
|
2020-11-20 02:16:11 +01:00
|
|
|
const stylesHook = StyleSheet.create({
|
|
|
|
root: {
|
|
|
|
backgroundColor: colors.elevated,
|
|
|
|
},
|
|
|
|
rootPadding: {
|
|
|
|
backgroundColor: colors.elevated,
|
|
|
|
},
|
|
|
|
hexWrap: {
|
|
|
|
backgroundColor: colors.elevated,
|
|
|
|
},
|
|
|
|
hexLabel: {
|
|
|
|
color: colors.foregroundColor,
|
|
|
|
},
|
|
|
|
hexInput: {
|
|
|
|
borderColor: colors.formBorder,
|
|
|
|
backgroundColor: colors.inputBackgroundColor,
|
|
|
|
color: colors.foregroundColor,
|
|
|
|
},
|
|
|
|
hexText: {
|
|
|
|
color: colors.foregroundColor,
|
|
|
|
},
|
|
|
|
});
|
2019-09-27 16:49:56 +02:00
|
|
|
|
2020-11-20 02:16:11 +01:00
|
|
|
const _combinePSBT = receivedPSBT => {
|
|
|
|
return fromWallet.combinePsbt(psbt, receivedPSBT);
|
2020-06-24 13:56:35 +02:00
|
|
|
};
|
|
|
|
|
2020-11-20 02:16:11 +01:00
|
|
|
const onBarScanned = ret => {
|
2020-08-24 13:53:07 +02:00
|
|
|
if (ret && !ret.data) ret = { data: ret };
|
2020-06-24 13:56:35 +02:00
|
|
|
if (ret.data.toUpperCase().startsWith('UR')) {
|
2020-10-08 17:39:31 +02:00
|
|
|
alert('BC-UR not decoded. This should never happen');
|
2020-06-24 13:56:35 +02:00
|
|
|
}
|
2020-02-24 22:45:14 +01:00
|
|
|
if (ret.data.indexOf('+') === -1 && ret.data.indexOf('=') === -1 && ret.data.indexOf('=') === -1) {
|
|
|
|
// this looks like NOT base64, so maybe its transaction's hex
|
2020-11-20 02:16:11 +01:00
|
|
|
setTxHex(ret.data);
|
2020-02-24 22:45:14 +01:00
|
|
|
return;
|
|
|
|
}
|
2020-08-16 04:43:17 +02:00
|
|
|
try {
|
2020-11-20 02:16:11 +01:00
|
|
|
const Tx = _combinePSBT(ret.data);
|
|
|
|
setTxHex(Tx.toHex());
|
2021-09-09 13:00:11 +02:00
|
|
|
if (launchedBy) {
|
|
|
|
// we must navigate back to the screen who requested psbt (instead of broadcasting it ourselves)
|
|
|
|
// most likely for LN channel opening
|
2023-12-13 12:57:30 +01:00
|
|
|
navigation.navigate({ name: launchedBy, params: { psbt }, merge: true });
|
2021-09-09 13:00:11 +02:00
|
|
|
// ^^^ we just use `psbt` variable sinse it was finalized in the above _combinePSBT()
|
|
|
|
// (passed by reference)
|
|
|
|
}
|
2020-08-16 04:43:17 +02:00
|
|
|
} catch (Err) {
|
2023-04-30 13:36:21 +02:00
|
|
|
alert(Err.message);
|
2020-08-16 04:43:17 +02:00
|
|
|
}
|
2019-09-27 16:49:56 +02:00
|
|
|
};
|
|
|
|
|
2021-09-11 19:57:43 +02:00
|
|
|
useEffect(() => {
|
|
|
|
if (isFocused) {
|
|
|
|
dynamicQRCode.current?.startAutoMove();
|
|
|
|
} else {
|
|
|
|
dynamicQRCode.current?.stopAutoMove();
|
|
|
|
}
|
|
|
|
}, [isFocused]);
|
|
|
|
|
2020-11-20 02:16:11 +01:00
|
|
|
useEffect(() => {
|
|
|
|
if (!psbt && !route.params.txhex) {
|
|
|
|
alert(loc.send.no_tx_signing_in_progress);
|
2020-09-16 18:52:10 +02:00
|
|
|
}
|
|
|
|
|
2020-01-03 05:02:41 +01:00
|
|
|
if (deepLinkPSBT) {
|
2023-07-25 15:50:04 +02:00
|
|
|
const newPsbt = bitcoin.Psbt.fromBase64(deepLinkPSBT);
|
2020-01-03 05:02:41 +01:00
|
|
|
try {
|
2023-07-25 15:50:04 +02:00
|
|
|
const Tx = fromWallet.combinePsbt(routeParamsPSBT.current, newPsbt);
|
2020-11-20 02:16:11 +01:00
|
|
|
setTxHex(Tx.toHex());
|
2020-01-03 05:02:41 +01:00
|
|
|
} catch (Err) {
|
|
|
|
alert(Err);
|
|
|
|
}
|
2020-11-20 02:16:11 +01:00
|
|
|
} else if (routeParamsTXHex) {
|
|
|
|
setTxHex(routeParamsTXHex);
|
2020-01-03 05:02:41 +01:00
|
|
|
}
|
2020-11-20 02:16:11 +01:00
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
|
|
}, [deepLinkPSBT, routeParamsTXHex]);
|
2020-01-03 05:02:41 +01:00
|
|
|
|
2020-11-20 02:16:11 +01:00
|
|
|
const broadcast = async () => {
|
|
|
|
setIsLoading(true);
|
2021-01-20 03:13:01 +01:00
|
|
|
const isBiometricsEnabled = await Biometric.isBiometricUseCapableAndEnabled();
|
|
|
|
|
|
|
|
if (isBiometricsEnabled) {
|
|
|
|
if (!(await Biometric.unlockWithBiometrics())) {
|
|
|
|
setIsLoading(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2020-11-20 02:16:11 +01:00
|
|
|
try {
|
|
|
|
await BlueElectrum.ping();
|
|
|
|
await BlueElectrum.waitTillConnected();
|
|
|
|
const result = await fromWallet.broadcastTx(txHex);
|
|
|
|
if (result) {
|
|
|
|
setIsLoading(false);
|
|
|
|
const txDecoded = bitcoin.Transaction.fromHex(txHex);
|
|
|
|
const txid = txDecoded.getId();
|
|
|
|
Notifications.majorTomToGroundControl([], [], [txid]);
|
|
|
|
if (memo) {
|
|
|
|
txMetadata[txid] = { memo };
|
2019-09-27 16:49:56 +02:00
|
|
|
}
|
2020-11-20 02:16:11 +01:00
|
|
|
navigation.navigate('Success', { amount: undefined });
|
2020-11-27 17:35:14 +01:00
|
|
|
await new Promise(resolve => setTimeout(resolve, 3000)); // sleep to make sure network propagates
|
|
|
|
fetchAndSaveWalletTransactions(fromWallet.getID());
|
2020-11-20 02:16:11 +01:00
|
|
|
} else {
|
2023-12-29 12:52:12 +01:00
|
|
|
triggerHapticFeedback(HapticFeedbackTypes.NotificationError);
|
2020-11-20 02:16:11 +01:00
|
|
|
setIsLoading(false);
|
|
|
|
alert(loc.errors.broadcast);
|
2019-09-27 16:49:56 +02:00
|
|
|
}
|
2020-11-20 02:16:11 +01:00
|
|
|
} catch (error) {
|
2023-12-29 12:52:12 +01:00
|
|
|
triggerHapticFeedback(HapticFeedbackTypes.NotificationError);
|
2020-11-20 02:16:11 +01:00
|
|
|
setIsLoading(false);
|
|
|
|
alert(error.message);
|
|
|
|
}
|
2019-11-02 23:51:33 +01:00
|
|
|
};
|
2019-09-27 16:49:56 +02:00
|
|
|
|
2020-11-20 02:19:04 +01:00
|
|
|
const handleOnVerifyPressed = () => {
|
|
|
|
Linking.openURL('https://coinb.in/?verify=' + txHex);
|
|
|
|
};
|
2019-09-27 16:49:56 +02:00
|
|
|
|
2020-11-20 14:01:49 +01:00
|
|
|
const copyHexToClipboard = () => {
|
|
|
|
Clipboard.setString(txHex);
|
|
|
|
};
|
|
|
|
|
2020-11-20 02:16:11 +01:00
|
|
|
const _renderBroadcastHex = () => {
|
2019-09-27 16:49:56 +02:00
|
|
|
return (
|
2020-11-20 02:16:11 +01:00
|
|
|
<View style={[styles.rootPadding, stylesHook.rootPadding]}>
|
|
|
|
<BlueCard style={[styles.hexWrap, stylesHook.hexWrap]}>
|
|
|
|
<BlueText style={[styles.hexLabel, stylesHook.hexLabel]}>{loc.send.create_this_is_hex}</BlueText>
|
|
|
|
<TextInput style={[styles.hexInput, stylesHook.hexInput]} height={112} multiline editable value={txHex} />
|
2019-09-27 16:49:56 +02:00
|
|
|
|
2021-06-24 14:50:57 +02:00
|
|
|
<TouchableOpacity accessibilityRole="button" style={styles.hexTouch} onPress={copyHexToClipboard}>
|
2020-11-20 02:16:11 +01:00
|
|
|
<Text style={[styles.hexText, stylesHook.hexText]}>{loc.send.create_copy}</Text>
|
2019-09-27 16:49:56 +02:00
|
|
|
</TouchableOpacity>
|
2021-06-24 14:50:57 +02:00
|
|
|
<TouchableOpacity accessibilityRole="button" style={styles.hexTouch} onPress={handleOnVerifyPressed}>
|
2020-11-20 02:16:11 +01:00
|
|
|
<Text style={[styles.hexText, stylesHook.hexText]}>{loc.send.create_verify}</Text>
|
2019-09-27 16:49:56 +02:00
|
|
|
</TouchableOpacity>
|
|
|
|
<BlueSpacing20 />
|
2021-08-24 06:33:32 +02:00
|
|
|
<SecondButton
|
|
|
|
disabled={isElectrumDisabled}
|
|
|
|
onPress={broadcast}
|
|
|
|
title={loc.send.confirm_sendNow}
|
|
|
|
testID="PsbtWithHardwareWalletBroadcastTransactionButton"
|
|
|
|
/>
|
2019-09-27 16:49:56 +02:00
|
|
|
</BlueCard>
|
|
|
|
</View>
|
|
|
|
);
|
2020-11-20 02:16:11 +01:00
|
|
|
};
|
2019-09-27 16:49:56 +02:00
|
|
|
|
2021-07-10 04:38:09 +02:00
|
|
|
const exportPSBT = () => {
|
2020-11-20 02:16:11 +01:00
|
|
|
const fileName = `${Date.now()}.psbt`;
|
2021-09-11 19:46:01 +02:00
|
|
|
dynamicQRCode.current?.stopAutoMove();
|
|
|
|
fs.writeFileAndExport(fileName, typeof psbt === 'string' ? psbt : psbt.toBase64()).finally(() => {
|
|
|
|
dynamicQRCode.current?.startAutoMove();
|
|
|
|
});
|
2020-01-01 04:31:04 +01:00
|
|
|
};
|
|
|
|
|
2020-11-20 02:16:11 +01:00
|
|
|
const openSignedTransaction = async () => {
|
2020-01-01 04:31:04 +01:00
|
|
|
try {
|
2021-12-27 22:17:02 +01:00
|
|
|
const res = await DocumentPicker.pickSingle({
|
2022-06-09 21:01:47 +02:00
|
|
|
type: Platform.OS === 'ios' ? ['io.bluewallet.psbt', 'io.bluewallet.psbt.txn'] : [DocumentPicker.types.allFiles],
|
2020-02-24 22:45:14 +01:00
|
|
|
});
|
2020-01-03 05:02:41 +01:00
|
|
|
const file = await RNFS.readFile(res.uri);
|
|
|
|
if (file) {
|
2020-11-20 02:16:11 +01:00
|
|
|
onBarScanned({ data: file });
|
2020-01-01 04:31:04 +01:00
|
|
|
} else {
|
|
|
|
throw new Error();
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
if (!DocumentPicker.isCancel(err)) {
|
2020-07-20 15:38:46 +02:00
|
|
|
alert(loc.send.details_no_signed_tx);
|
2020-01-01 04:31:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-11-20 02:16:11 +01:00
|
|
|
const openScanner = () => {
|
2023-10-17 15:35:10 +02:00
|
|
|
requestCameraAuthorization().then(() => {
|
|
|
|
navigation.navigate('ScanQRCodeRoot', {
|
|
|
|
screen: 'ScanQRCode',
|
|
|
|
params: {
|
|
|
|
launchedBy: route.name,
|
|
|
|
showFileImportButton: false,
|
|
|
|
onBarScanned,
|
|
|
|
},
|
|
|
|
});
|
2023-02-25 17:20:46 +01:00
|
|
|
});
|
2020-08-16 04:43:17 +02:00
|
|
|
};
|
|
|
|
|
2020-11-20 02:16:11 +01:00
|
|
|
if (txHex) return _renderBroadcastHex();
|
2019-09-27 16:49:56 +02:00
|
|
|
|
2020-11-20 02:16:11 +01:00
|
|
|
return isLoading ? (
|
|
|
|
<View style={[styles.rootPadding, stylesHook.rootPadding]}>
|
|
|
|
<ActivityIndicator />
|
|
|
|
</View>
|
|
|
|
) : (
|
2023-12-27 07:52:11 +01:00
|
|
|
<SafeArea style={stylesHook.root}>
|
2020-11-20 02:16:11 +01:00
|
|
|
<ScrollView centerContent contentContainerStyle={styles.scrollViewContent} testID="PsbtWithHardwareScrollView">
|
|
|
|
<View style={styles.container}>
|
|
|
|
<BlueCard>
|
|
|
|
<BlueText testID="TextHelperForPSBT">{loc.send.psbt_this_is_psbt}</BlueText>
|
|
|
|
<BlueSpacing20 />
|
2020-11-22 08:07:27 +01:00
|
|
|
<Text testID="PSBTHex" style={styles.hidden}>
|
|
|
|
{psbt.toHex()}
|
|
|
|
</Text>
|
2021-09-11 19:46:01 +02:00
|
|
|
<DynamicQRCode value={psbt.toHex()} ref={dynamicQRCode} />
|
2020-11-20 02:16:11 +01:00
|
|
|
<BlueSpacing20 />
|
|
|
|
<SecondButton
|
|
|
|
testID="PsbtTxScanButton"
|
|
|
|
icon={{
|
|
|
|
name: 'qrcode',
|
|
|
|
type: 'font-awesome',
|
|
|
|
color: colors.buttonTextColor,
|
|
|
|
}}
|
|
|
|
onPress={openScanner}
|
2021-02-27 01:23:59 +01:00
|
|
|
ref={openScannerButton}
|
2020-11-20 02:16:11 +01:00
|
|
|
title={loc.send.psbt_tx_scan}
|
|
|
|
/>
|
|
|
|
<BlueSpacing20 />
|
|
|
|
<SecondButton
|
|
|
|
icon={{
|
2023-04-30 13:36:40 +02:00
|
|
|
name: 'login',
|
|
|
|
type: 'entypo',
|
2020-11-20 02:16:11 +01:00
|
|
|
color: colors.buttonTextColor,
|
|
|
|
}}
|
|
|
|
onPress={openSignedTransaction}
|
|
|
|
title={loc.send.psbt_tx_open}
|
|
|
|
/>
|
|
|
|
<BlueSpacing20 />
|
|
|
|
<SecondButton
|
|
|
|
icon={{
|
|
|
|
name: 'share-alternative',
|
|
|
|
type: 'entypo',
|
|
|
|
color: colors.buttonTextColor,
|
|
|
|
}}
|
|
|
|
onPress={exportPSBT}
|
|
|
|
title={loc.send.psbt_tx_export}
|
|
|
|
/>
|
|
|
|
<BlueSpacing20 />
|
|
|
|
<View style={styles.copyToClipboard}>
|
|
|
|
<BlueCopyToClipboardButton
|
|
|
|
stringToCopy={typeof psbt === 'string' ? psbt : psbt.toBase64()}
|
|
|
|
displayText={loc.send.psbt_clipboard}
|
2020-01-01 04:31:04 +01:00
|
|
|
/>
|
2020-11-20 02:16:11 +01:00
|
|
|
</View>
|
|
|
|
</BlueCard>
|
|
|
|
</View>
|
|
|
|
</ScrollView>
|
2023-12-27 07:52:11 +01:00
|
|
|
</SafeArea>
|
2020-11-20 02:16:11 +01:00
|
|
|
);
|
2019-09-27 16:49:56 +02:00
|
|
|
};
|
2020-07-15 19:32:59 +02:00
|
|
|
|
2020-11-20 02:16:11 +01:00
|
|
|
export default PsbtWithHardwareWallet;
|
|
|
|
|
2021-02-15 09:03:54 +01:00
|
|
|
PsbtWithHardwareWallet.navigationOptions = navigationStyle({}, opts => ({ ...opts, title: loc.send.header }));
|
2020-11-20 02:16:11 +01:00
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
scrollViewContent: {
|
|
|
|
flexGrow: 1,
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
},
|
|
|
|
container: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
justifyContent: 'center',
|
|
|
|
paddingTop: 16,
|
|
|
|
paddingBottom: 16,
|
|
|
|
},
|
|
|
|
rootPadding: {
|
|
|
|
flex: 1,
|
|
|
|
paddingTop: 20,
|
|
|
|
},
|
|
|
|
hexWrap: {
|
|
|
|
alignItems: 'center',
|
|
|
|
flex: 1,
|
|
|
|
},
|
|
|
|
hexLabel: {
|
|
|
|
fontWeight: '500',
|
|
|
|
},
|
|
|
|
hexInput: {
|
|
|
|
borderRadius: 4,
|
|
|
|
marginTop: 20,
|
|
|
|
fontWeight: '500',
|
|
|
|
fontSize: 14,
|
|
|
|
paddingHorizontal: 16,
|
|
|
|
paddingBottom: 16,
|
|
|
|
paddingTop: 16,
|
|
|
|
},
|
|
|
|
hexTouch: {
|
|
|
|
marginVertical: 24,
|
|
|
|
},
|
|
|
|
hexText: {
|
|
|
|
fontSize: 15,
|
|
|
|
fontWeight: '500',
|
|
|
|
alignSelf: 'center',
|
|
|
|
},
|
|
|
|
copyToClipboard: {
|
|
|
|
justifyContent: 'center',
|
|
|
|
alignItems: 'center',
|
|
|
|
},
|
2020-11-22 08:07:27 +01:00
|
|
|
hidden: {
|
|
|
|
width: 0,
|
|
|
|
height: 0,
|
|
|
|
},
|
2020-11-20 02:16:11 +01:00
|
|
|
});
|