mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-22 06:52:41 +01:00
ADD: CPFP for BIP84 HD wallets
This commit is contained in:
parent
0bbb322237
commit
d41c3cc0eb
4 changed files with 307 additions and 16 deletions
|
@ -25,6 +25,7 @@ import SelectWallet from './screen/wallets/selectWallet';
|
|||
import details from './screen/transactions/details';
|
||||
import rbf from './screen/transactions/RBF';
|
||||
import createrbf from './screen/transactions/RBF-create';
|
||||
import cpfp from './screen/transactions/CPFP';
|
||||
|
||||
import receiveDetails from './screen/receive/details';
|
||||
import setReceiveAmount from './screen/receive/receiveAmount';
|
||||
|
@ -69,6 +70,9 @@ const WalletsStackNavigator = createStackNavigator(
|
|||
CreateRBF: {
|
||||
screen: createrbf,
|
||||
},
|
||||
CPFP: {
|
||||
screen: cpfp,
|
||||
},
|
||||
Settings: {
|
||||
screen: Settings,
|
||||
path: 'Settings',
|
||||
|
|
|
@ -758,17 +758,15 @@ export class HDSegwitBech32Wallet extends AbstractHDWallet {
|
|||
}
|
||||
|
||||
/**
|
||||
* Broadcast txhex. Can throw an exception if failed
|
||||
*
|
||||
* @param {String} txhex
|
||||
* @returns {Promise<boolean>}
|
||||
*/
|
||||
async broadcastTx(txhex) {
|
||||
try {
|
||||
let broadcast = await BlueElectrum.broadcastV2(txhex);
|
||||
if (broadcast.indexOf('successfully') !== -1) return true;
|
||||
return broadcast.length === 64; // this means return string is txid (precise length), so it was broadcasted ok
|
||||
} catch (error) {
|
||||
console.warn(error);
|
||||
return false;
|
||||
}
|
||||
let broadcast = await BlueElectrum.broadcastV2(txhex);
|
||||
console.log({ broadcast });
|
||||
if (broadcast.indexOf('successfully') !== -1) return true;
|
||||
return broadcast.length === 64; // this means return string is txid (precise length), so it was broadcasted ok
|
||||
}
|
||||
}
|
||||
|
|
247
screen/transactions/CPFP.js
Normal file
247
screen/transactions/CPFP.js
Normal file
|
@ -0,0 +1,247 @@
|
|||
/* global alert */
|
||||
import React, { Component } from 'react';
|
||||
import { ActivityIndicator, View, TextInput, TouchableOpacity, Linking, Clipboard } from 'react-native';
|
||||
import { BlueSpacing20, BlueButton, SafeBlueArea, BlueCard, BlueText, BlueSpacing, BlueNavigationStyle } from '../../BlueComponents';
|
||||
import PropTypes from 'prop-types';
|
||||
import { HDSegwitBech32Transaction, HDSegwitBech32Wallet } from '../../class';
|
||||
import { Icon, Text } from 'react-native-elements';
|
||||
import ReactNativeHapticFeedback from 'react-native-haptic-feedback';
|
||||
/** @type {AppStorage} */
|
||||
let EV = require('../../events');
|
||||
let BlueElectrum = require('../../BlueElectrum');
|
||||
let loc = require('../../loc');
|
||||
|
||||
export default class CPFP extends Component {
|
||||
static navigationOptions = () => ({
|
||||
...BlueNavigationStyle(null, false),
|
||||
title: 'Bump fee (CPFP)',
|
||||
});
|
||||
|
||||
constructor(props) {
|
||||
super(props);
|
||||
let txid;
|
||||
let wallet;
|
||||
if (props.navigation.state.params) txid = props.navigation.state.params.txid;
|
||||
if (props.navigation.state.params) wallet = props.navigation.state.params.wallet;
|
||||
|
||||
this.state = {
|
||||
isLoading: true,
|
||||
stage: 1,
|
||||
txid,
|
||||
wallet,
|
||||
};
|
||||
}
|
||||
|
||||
broadcast() {
|
||||
this.setState({ isLoading: true }, async () => {
|
||||
try {
|
||||
await BlueElectrum.ping();
|
||||
await BlueElectrum.waitTillConnected();
|
||||
let result = await this.state.wallet.broadcastTx(this.state.txhex);
|
||||
if (result) {
|
||||
console.log('broadcast result = ', result);
|
||||
EV(EV.enum.REMOTE_TRANSACTIONS_COUNT_CHANGED); // someone should fetch txs
|
||||
this.setState({ stage: 3 });
|
||||
} else {
|
||||
ReactNativeHapticFeedback.trigger('notificationError', { ignoreAndroidSystemSettings: false });
|
||||
this.setState({ isLoading: false });
|
||||
alert('Broadcast failed');
|
||||
}
|
||||
} catch (error) {
|
||||
ReactNativeHapticFeedback.trigger('notificationError', { ignoreAndroidSystemSettings: false });
|
||||
this.setState({ isLoading: false });
|
||||
alert(error.message);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
async componentDidMount() {
|
||||
console.log('transactions/CPFP - componentDidMount');
|
||||
this.setState({
|
||||
isLoading: true,
|
||||
newFeeRate: '',
|
||||
nonReplaceable: false,
|
||||
});
|
||||
await this.checkPossibilityOfCPFP();
|
||||
}
|
||||
|
||||
async checkPossibilityOfCPFP() {
|
||||
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.isToUsTransaction()) && (await tx.getRemoteConfirmationsNum()) === 0 && (await tx.isSequenceReplaceable())) {
|
||||
let info = await tx.getInfo();
|
||||
return this.setState({ nonReplaceable: false, feeRate: info.feeRate, isLoading: false, tx });
|
||||
} 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.createCPFPbumpFee(newFeeRate);
|
||||
this.setState({ stage: 2, txhex: newTx.toHex() });
|
||||
this.setState({ isLoading: false });
|
||||
} catch (_) {
|
||||
this.setState({ isLoading: false });
|
||||
alert('Failed');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
render() {
|
||||
if (this.state.isLoading) {
|
||||
return (
|
||||
<View style={{ flex: 1, paddingTop: 20 }}>
|
||||
<ActivityIndicator />
|
||||
</View>
|
||||
);
|
||||
}
|
||||
|
||||
if (this.state.stage === 3) {
|
||||
return (
|
||||
<SafeBlueArea style={{ flex: 1, paddingTop: 19 }}>
|
||||
<BlueCard style={{ alignItems: 'center', flex: 1 }}>
|
||||
<View style={{ flexDirection: 'row', justifyContent: 'center', paddingTop: 76, paddingBottom: 16 }} />
|
||||
</BlueCard>
|
||||
<View
|
||||
style={{
|
||||
backgroundColor: '#ccddf9',
|
||||
width: 120,
|
||||
height: 120,
|
||||
borderRadius: 60,
|
||||
alignSelf: 'center',
|
||||
justifyContent: 'center',
|
||||
marginTop: 43,
|
||||
marginBottom: 53,
|
||||
}}
|
||||
>
|
||||
<Icon name="check" size={50} type="font-awesome" color="#0f5cc0" />
|
||||
</View>
|
||||
<BlueCard>
|
||||
<BlueButton
|
||||
onPress={() => {
|
||||
this.props.navigation.popToTop();
|
||||
}}
|
||||
title={loc.send.success.done}
|
||||
/>
|
||||
</BlueCard>
|
||||
</SafeBlueArea>
|
||||
);
|
||||
}
|
||||
|
||||
if (this.state.stage === 2) {
|
||||
return (
|
||||
<View style={{ flex: 1, paddingTop: 20 }}>
|
||||
<BlueCard style={{ alignItems: 'center', flex: 1 }}>
|
||||
<BlueText style={{ color: '#0c2550', fontWeight: '500' }}>{loc.send.create.this_is_hex}</BlueText>
|
||||
<TextInput
|
||||
style={{
|
||||
borderColor: '#ebebeb',
|
||||
backgroundColor: '#d2f8d6',
|
||||
borderRadius: 4,
|
||||
marginTop: 20,
|
||||
color: '#37c0a1',
|
||||
fontWeight: '500',
|
||||
fontSize: 14,
|
||||
paddingHorizontal: 16,
|
||||
paddingBottom: 16,
|
||||
paddingTop: 16,
|
||||
}}
|
||||
height={112}
|
||||
multiline
|
||||
editable
|
||||
value={this.state.txhex}
|
||||
/>
|
||||
|
||||
<TouchableOpacity style={{ marginVertical: 24 }} onPress={() => Clipboard.setString(this.state.txhex)}>
|
||||
<Text style={{ color: '#9aa0aa', fontSize: 15, fontWeight: '500', alignSelf: 'center' }}>Copy and broadcast later</Text>
|
||||
</TouchableOpacity>
|
||||
<TouchableOpacity
|
||||
style={{ marginVertical: 24 }}
|
||||
onPress={() => Linking.openURL('https://coinb.in/?verify=' + this.state.txhex)}
|
||||
>
|
||||
<Text style={{ color: '#9aa0aa', fontSize: 15, fontWeight: '500', alignSelf: 'center' }}>Verify on coinb.in</Text>
|
||||
</TouchableOpacity>
|
||||
<BlueButton onPress={() => this.broadcast()} title={loc.send.confirm.sendNow} />
|
||||
</BlueCard>
|
||||
</View>
|
||||
);
|
||||
}
|
||||
|
||||
if (this.state.nonReplaceable) {
|
||||
return (
|
||||
<SafeBlueArea style={{ flex: 1, paddingTop: 20 }}>
|
||||
<BlueSpacing20 />
|
||||
<BlueSpacing20 />
|
||||
<BlueSpacing20 />
|
||||
<BlueSpacing20 />
|
||||
<BlueSpacing20 />
|
||||
|
||||
<BlueText h4>This transaction is not bumpable</BlueText>
|
||||
</SafeBlueArea>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<SafeBlueArea style={{ flex: 1, paddingTop: 20 }}>
|
||||
<BlueSpacing />
|
||||
<BlueCard style={{ alignItems: 'center', flex: 1 }}>
|
||||
<BlueText>
|
||||
We will create another transaction that spends your unconfirmed transaction. Total fee will be higher than original transaction
|
||||
fee, so it should be mined faster. This is called CPFP - Child Pays For Parent.
|
||||
</BlueText>
|
||||
<BlueSpacing20 />
|
||||
|
||||
<View
|
||||
style={{
|
||||
flexDirection: 'row',
|
||||
borderColor: '#d2d2d2',
|
||||
borderBottomColor: '#d2d2d2',
|
||||
borderWidth: 1.0,
|
||||
borderBottomWidth: 0.5,
|
||||
backgroundColor: '#f5f5f5',
|
||||
minHeight: 44,
|
||||
height: 44,
|
||||
alignItems: 'center',
|
||||
marginVertical: 8,
|
||||
borderRadius: 4,
|
||||
}}
|
||||
>
|
||||
<TextInput
|
||||
onChangeText={text => this.setState({ newFeeRate: text })}
|
||||
keyboardType={'numeric'}
|
||||
placeholder={'total fee rate (satoshi per byte) you want to pay'}
|
||||
value={this.state.newFeeRate + ''}
|
||||
style={{ flex: 1, minHeight: 33, marginHorizontal: 8 }}
|
||||
/>
|
||||
</View>
|
||||
|
||||
<BlueText>Should be bigger than {this.state.feeRate} sat/byte</BlueText>
|
||||
<BlueSpacing />
|
||||
<BlueButton onPress={() => this.createTransaction()} title="Create" />
|
||||
</BlueCard>
|
||||
</SafeBlueArea>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
CPFP.propTypes = {
|
||||
navigation: PropTypes.shape({
|
||||
popToTop: PropTypes.func,
|
||||
navigate: PropTypes.func,
|
||||
state: PropTypes.shape({
|
||||
params: PropTypes.shape({
|
||||
txid: PropTypes.string,
|
||||
wallet: PropTypes.object,
|
||||
}),
|
||||
}),
|
||||
}),
|
||||
};
|
|
@ -1,5 +1,5 @@
|
|||
import React, { Component } from 'react';
|
||||
import { View, ScrollView, TouchableOpacity, Linking } from 'react-native';
|
||||
import { View, ActivityIndicator, ScrollView, TouchableOpacity, Linking } from 'react-native';
|
||||
import {
|
||||
BlueButton,
|
||||
SafeBlueArea,
|
||||
|
@ -12,11 +12,18 @@ import {
|
|||
BlueNavigationStyle,
|
||||
} from '../../BlueComponents';
|
||||
import PropTypes from 'prop-types';
|
||||
import { HDSegwitBech32Transaction, HDSegwitBech32Wallet } from '../../class';
|
||||
/** @type {AppStorage} */
|
||||
let BlueApp = require('../../BlueApp');
|
||||
let loc = require('../../loc');
|
||||
const dayjs = require('dayjs');
|
||||
|
||||
const buttonStatus = Object.freeze({
|
||||
possible: 1,
|
||||
unknown: 2,
|
||||
notPossible: 3,
|
||||
});
|
||||
|
||||
function onlyUnique(value, index, self) {
|
||||
return self.indexOf(value) === index;
|
||||
}
|
||||
|
@ -70,6 +77,7 @@ export default class TransactionsDetails extends Component {
|
|||
from,
|
||||
to,
|
||||
wallet,
|
||||
isCPFPpossible: buttonStatus.unknown,
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -78,6 +86,21 @@ export default class TransactionsDetails extends Component {
|
|||
this.setState({
|
||||
isLoading: false,
|
||||
});
|
||||
|
||||
await this.checkPossibilityOfCPFP();
|
||||
}
|
||||
|
||||
async checkPossibilityOfCPFP() {
|
||||
if (this.state.wallet.type !== HDSegwitBech32Wallet.type) {
|
||||
return this.setState({ isCPFPpossible: buttonStatus.notPossible });
|
||||
}
|
||||
|
||||
let tx = new HDSegwitBech32Transaction(null, this.state.tx.hash, this.state.wallet);
|
||||
if ((await tx.isToUsTransaction()) && (await tx.getRemoteConfirmationsNum()) === 0 && (await tx.isSequenceReplaceable())) {
|
||||
return this.setState({ isCPFPpossible: buttonStatus.possible });
|
||||
} else {
|
||||
return this.setState({ isCPFPpossible: buttonStatus.notPossible });
|
||||
}
|
||||
}
|
||||
|
||||
render() {
|
||||
|
@ -108,6 +131,32 @@ export default class TransactionsDetails extends Component {
|
|||
}
|
||||
})()}
|
||||
|
||||
{(() => {
|
||||
if (this.state.isCPFPpossible === buttonStatus.unknown) {
|
||||
return (
|
||||
<React.Fragment>
|
||||
<ActivityIndicator />
|
||||
<BlueSpacing20 />
|
||||
</React.Fragment>
|
||||
);
|
||||
} else if (this.state.isCPFPpossible === buttonStatus.possible) {
|
||||
return (
|
||||
<React.Fragment>
|
||||
<BlueButton
|
||||
onPress={() =>
|
||||
this.props.navigation.navigate('CPFP', {
|
||||
txid: this.state.tx.hash,
|
||||
wallet: this.state.wallet,
|
||||
})
|
||||
}
|
||||
title="Bump fee (CPFP)"
|
||||
/>
|
||||
<BlueSpacing20 />
|
||||
</React.Fragment>
|
||||
);
|
||||
}
|
||||
})()}
|
||||
|
||||
{(() => {
|
||||
if (BlueApp.tx_metadata[this.state.tx.hash]) {
|
||||
if (BlueApp.tx_metadata[this.state.tx.hash]['memo']) {
|
||||
|
@ -186,13 +235,6 @@ export default class TransactionsDetails extends Component {
|
|||
</React.Fragment>
|
||||
)}
|
||||
|
||||
{this.state.tx.hasOwnProperty('confirmations') && this.state.tx.confirmations > 0 && (
|
||||
<React.Fragment>
|
||||
<BlueText style={{ fontSize: 16, fontWeight: '500', marginBottom: 4 }}>Confirmations</BlueText>
|
||||
<BlueText style={{ marginBottom: 26, color: 'grey' }}>{this.state.tx.confirmations}</BlueText>
|
||||
</React.Fragment>
|
||||
)}
|
||||
|
||||
{this.state.tx.hasOwnProperty('inputs') && (
|
||||
<React.Fragment>
|
||||
<BlueText style={{ fontSize: 16, fontWeight: '500', marginBottom: 4 }}>Inputs</BlueText>
|
||||
|
|
Loading…
Add table
Reference in a new issue