mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 02:09:10 +01:00
121 lines
3.8 KiB
JavaScript
121 lines
3.8 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { ActivityIndicator, View, ScrollView, StyleSheet } from 'react-native';
|
|
import navigationStyle from '../../components/navigationStyle';
|
|
import { BlueSpacing20, SafeBlueArea, BlueText } from '../../BlueComponents';
|
|
import { HDSegwitBech32Transaction, HDSegwitBech32Wallet } from '../../class';
|
|
import CPFP from './CPFP';
|
|
import loc from '../../loc';
|
|
import { BlueStorageContext } from '../../blue_modules/storage-context';
|
|
import alert from '../../components/Alert';
|
|
|
|
const styles = StyleSheet.create({
|
|
root: {
|
|
flex: 1,
|
|
paddingTop: 16,
|
|
},
|
|
});
|
|
|
|
export default class RBFBumpFee extends CPFP {
|
|
static contextType = BlueStorageContext;
|
|
|
|
async componentDidMount() {
|
|
console.log('transactions/RBFBumpFee - componentDidMount');
|
|
this.setState({
|
|
isLoading: true,
|
|
newFeeRate: '',
|
|
nonReplaceable: false,
|
|
});
|
|
await this.checkPossibilityOfRBFBumpFee();
|
|
}
|
|
|
|
async checkPossibilityOfRBFBumpFee() {
|
|
if (this.state.wallet.type !== HDSegwitBech32Wallet.type) {
|
|
return this.setState({ nonReplaceable: true, isLoading: false });
|
|
}
|
|
|
|
const tx = new HDSegwitBech32Transaction(null, this.state.txid, this.state.wallet);
|
|
if ((await tx.isOurTransaction()) && (await tx.getRemoteConfirmationsNum()) === 0 && (await tx.isSequenceReplaceable())) {
|
|
const info = await tx.getInfo();
|
|
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, 10);
|
|
if (newFeeRate > this.state.feeRate) {
|
|
/** @type {HDSegwitBech32Transaction} */
|
|
const tx = this.state.tx;
|
|
this.setState({ isLoading: true });
|
|
try {
|
|
const { tx: newTx } = await tx.createRBFbumpFee(newFeeRate);
|
|
this.setState({ stage: 2, txhex: newTx.toHex(), newTxid: newTx.getId() });
|
|
this.setState({ isLoading: false });
|
|
} catch (_) {
|
|
this.setState({ isLoading: false });
|
|
alert(loc.errors.error + ': ' + _.message);
|
|
}
|
|
}
|
|
}
|
|
|
|
onSuccessBroadcast() {
|
|
// porting memo from old tx:
|
|
if (this.context.txMetadata[this.state.txid]) {
|
|
this.context.txMetadata[this.state.newTxid] = this.context.txMetadata[this.state.txid];
|
|
}
|
|
this.context.sleep(4000).then(() => this.context.fetchAndSaveWalletTransactions(this.state.wallet.getID()));
|
|
this.props.navigation.navigate('Success', { onDonePressed: () => this.props.navigation.popToTop(), amount: undefined });
|
|
}
|
|
|
|
render() {
|
|
if (this.state.isLoading) {
|
|
return (
|
|
<View style={styles.root}>
|
|
<ActivityIndicator />
|
|
</View>
|
|
);
|
|
}
|
|
|
|
if (this.state.stage === 2) {
|
|
return this.renderStage2();
|
|
}
|
|
|
|
if (this.state.nonReplaceable) {
|
|
return (
|
|
<SafeBlueArea style={styles.root}>
|
|
<BlueSpacing20 />
|
|
<BlueSpacing20 />
|
|
<BlueSpacing20 />
|
|
<BlueSpacing20 />
|
|
<BlueSpacing20 />
|
|
|
|
<BlueText h4>{loc.transactions.cpfp_no_bump}</BlueText>
|
|
</SafeBlueArea>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<SafeBlueArea style={styles.root}>
|
|
<ScrollView>{this.renderStage1(loc.transactions.rbf_explain)}</ScrollView>
|
|
</SafeBlueArea>
|
|
);
|
|
}
|
|
}
|
|
|
|
RBFBumpFee.propTypes = {
|
|
navigation: PropTypes.shape({
|
|
popToTop: PropTypes.func,
|
|
navigate: PropTypes.func,
|
|
state: PropTypes.shape({
|
|
params: PropTypes.shape({
|
|
txid: PropTypes.string,
|
|
wallet: PropTypes.object,
|
|
}),
|
|
}),
|
|
}),
|
|
};
|
|
RBFBumpFee.navigationOptions = navigationStyle({}, opts => ({ ...opts, title: loc.transactions.rbf_title }));
|