mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 02:09:10 +01:00
127 lines
3.8 KiB
JavaScript
127 lines
3.8 KiB
JavaScript
/* global alert */
|
|
import React from 'react';
|
|
import { ActivityIndicator, View } from 'react-native';
|
|
import { BlueSpacing20, SafeBlueArea, BlueText, BlueNavigationStyle } from '../../BlueComponents';
|
|
import PropTypes from 'prop-types';
|
|
import { HDSegwitBech32Transaction, HDSegwitBech32Wallet } from '../../class';
|
|
import CPFP from './CPFP';
|
|
/** @type {AppStorage} */
|
|
let BlueApp = require('../../BlueApp');
|
|
|
|
export default class RBFCancel extends CPFP {
|
|
static navigationOptions = () => ({
|
|
...BlueNavigationStyle(null, false),
|
|
title: 'Cancel this transaction (RBF)',
|
|
});
|
|
|
|
async componentDidMount() {
|
|
console.log('transactions/RBFCancel - componentDidMount');
|
|
this.setState({
|
|
isLoading: true,
|
|
newFeeRate: '',
|
|
nonReplaceable: false,
|
|
});
|
|
await this.checkPossibilityOfRBFCancel();
|
|
}
|
|
|
|
async checkPossibilityOfRBFCancel() {
|
|
if (this.state.wallet.type !== HDSegwitBech32Wallet.type) {
|
|
return this.setState({ nonReplaceable: true, isLoading: false });
|
|
}
|
|
|
|
let tx = new HDSegwitBech32Transaction(null, this.state.txid, this.state.wallet);
|
|
if (
|
|
(await tx.isOurTransaction()) &&
|
|
(await tx.getRemoteConfirmationsNum()) === 0 &&
|
|
(await tx.isSequenceReplaceable()) &&
|
|
(await tx.canCancelTx())
|
|
) {
|
|
let info = await tx.getInfo();
|
|
console.log({ info });
|
|
return this.setState({ nonReplaceable: false, feeRate: info.feeRate + 1, isLoading: false, tx });
|
|
// 1 sat makes a lot of difference, since sometimes because of rounding created tx's fee might be insufficient
|
|
} else {
|
|
return this.setState({ nonReplaceable: true, isLoading: false });
|
|
}
|
|
}
|
|
|
|
async createTransaction() {
|
|
const newFeeRate = parseInt(this.state.newFeeRate);
|
|
if (newFeeRate > this.state.feeRate) {
|
|
/** @type {HDSegwitBech32Transaction} */
|
|
const tx = this.state.tx;
|
|
this.setState({ isLoading: true });
|
|
try {
|
|
let { tx: newTx } = await tx.createRBFcancelTx(newFeeRate);
|
|
this.setState({ stage: 2, txhex: newTx.toHex(), newTxid: newTx.getId() });
|
|
this.setState({ isLoading: false });
|
|
} catch (_) {
|
|
this.setState({ isLoading: false });
|
|
alert('Failed: ' + _.message);
|
|
}
|
|
}
|
|
}
|
|
|
|
onSuccessBroadcast() {
|
|
// porting tx memo
|
|
if (BlueApp.tx_metadata[this.state.txid]) {
|
|
BlueApp.tx_metadata[this.state.newTxid] = BlueApp.tx_metadata[this.state.txid];
|
|
if (BlueApp.tx_metadata[this.state.newTxid]['memo']) {
|
|
BlueApp.tx_metadata[this.state.newTxid]['memo'] = 'Cancelled: ' + BlueApp.tx_metadata[this.state.newTxid]['memo'];
|
|
}
|
|
} else {
|
|
// no old metadata
|
|
BlueApp.tx_metadata[this.state.newTxid] = { memo: 'Cancelled transaction' };
|
|
}
|
|
}
|
|
|
|
render() {
|
|
if (this.state.isLoading) {
|
|
return (
|
|
<View style={{ flex: 1, paddingTop: 20 }}>
|
|
<ActivityIndicator />
|
|
</View>
|
|
);
|
|
}
|
|
|
|
if (this.state.stage === 3) {
|
|
return this.renderStage3();
|
|
}
|
|
|
|
if (this.state.stage === 2) {
|
|
return this.renderStage2();
|
|
}
|
|
|
|
if (this.state.nonReplaceable) {
|
|
return (
|
|
<SafeBlueArea style={{ flex: 1, paddingTop: 20 }}>
|
|
<BlueSpacing20 />
|
|
<BlueSpacing20 />
|
|
<BlueSpacing20 />
|
|
<BlueSpacing20 />
|
|
<BlueSpacing20 />
|
|
|
|
<BlueText h4>This transaction is not replaceable</BlueText>
|
|
</SafeBlueArea>
|
|
);
|
|
}
|
|
|
|
return this.renderStage1(
|
|
'We will replace this transaction with the one that pays you and has higher fees. This effectively cancels transaction. This is called RBF - Replace By Fee.',
|
|
);
|
|
}
|
|
}
|
|
|
|
RBFCancel.propTypes = {
|
|
navigation: PropTypes.shape({
|
|
popToTop: PropTypes.func,
|
|
navigate: PropTypes.func,
|
|
state: PropTypes.shape({
|
|
params: PropTypes.shape({
|
|
txid: PropTypes.string,
|
|
wallet: PropTypes.object,
|
|
}),
|
|
}),
|
|
}),
|
|
};
|