Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improvement: approval token transfer data #1027

Merged
merged 6 commits into from
Aug 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 25 additions & 7 deletions app/components/Nav/Main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ import { toChecksumAddress, isValidAddress } from 'ethereumjs-util';
import { isENS } from '../../../util/address';
import Logger from '../../../util/Logger';
import contractMap from 'eth-contract-metadata';
import { BN } from 'gaba';

const styles = StyleSheet.create({
flex: {
Expand Down Expand Up @@ -358,6 +359,10 @@ class Main extends PureComponent {
* Selected address
*/
selectedAddress: PropTypes.string,
/**
* Array of ERC20 assets
*/
tokens: PropTypes.array,
/**
* List of transactions
*/
Expand Down Expand Up @@ -634,32 +639,44 @@ class Main extends PureComponent {
return;
}
// Check if it's a payment channel deposit transaction to sign
const to = toChecksumAddress(transactionMeta.transaction.to);
const networkId = Networks[this.props.providerType].networkId.toString();
if (
this.props.paymentChannelsEnabled &&
AppConstants.CONNEXT.SUPPORTED_NETWORKS.includes(this.props.providerType) &&
transactionMeta.transaction.data.substr(0, 10) === CONNEXT_DEPOSIT &&
toChecksumAddress(transactionMeta.transaction.to) === AppConstants.CONNEXT.CONTRACTS[networkId]
to === AppConstants.CONNEXT.CONTRACTS[networkId]
) {
await this.paymentChannelDepositSign(transactionMeta);
} else {
const {
transaction: { value, gas, gasPrice, data, to }
transaction: { value, gas, gasPrice, data }
} = transactionMeta;

const { AssetsContractController } = Engine.context;
transactionMeta.transaction.gas = hexToBN(gas);
transactionMeta.transaction.gasPrice = hexToBN(gasPrice);

if (
value === '0x0' &&
(value === '0x0' || !value) &&
data !== '0x' &&
to &&
contractMap[toChecksumAddress(to)] &&
(await getMethodData(data)).name === TOKEN_METHOD_TRANSFER
) {
const decodedData = decodeTransferData('transfer', data);
const asset = contractMap[toChecksumAddress(to)];
let asset = this.props.tokens.find(({ address }) => address === to);
if (!asset && contractMap[to]) {
asset = contractMap[to];
} else if (!asset) {
try {
asset = {};
asset.decimals = await AssetsContractController.getTokenDecimals(to);
asset.symbol = await AssetsContractController.getAssetSymbol(to);
} catch (e) {
// This could fail when requesting a transfer in other network
asset = { symbol: 'ERC20', decimals: new BN(0) };
}
}

const decodedData = decodeTransferData('transfer', data);
transactionMeta.transaction.value = hexToBN(decodedData[2]);
transactionMeta.transaction.readableValue = renderFromTokenMinimalUnit(
hexToBN(decodedData[2]),
Expand Down Expand Up @@ -913,6 +930,7 @@ const mapStateToProps = state => ({
lockTime: state.settings.lockTime,
transaction: state.transaction,
selectedAddress: state.engine.backgroundState.PreferencesController.selectedAddress,
tokens: state.engine.backgroundState.AssetsController.tokens,
transactions: state.engine.backgroundState.TransactionController.transactions,
paymentChannelsEnabled: state.settings.paymentChannelsEnabled,
providerType: state.engine.backgroundState.NetworkController.provider.type
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ exports[`TransactionReviewInformation should render correctly 1`] = `
}
}
>
Amount Transaction Fee
Amount + Transaction Fee
</Text>
<Text
style={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ class TransactionReviewInformation extends PureComponent {
<Text numberOfLines={1} style={[styles.overviewEth, styles.assetName]}>
{amountToken + ' ' + selectedAsset.symbol}
</Text>
<Text style={styles.overviewEth}>{`${renderFromWei(totalGas)} ${strings('unit.eth')}`}</Text>
<Text style={styles.overviewEth}>{` + ${renderFromWei(totalGas)} ${strings('unit.eth')}`}</Text>
</View>
);
return [totalFiat, totalValue];
Expand Down Expand Up @@ -238,7 +238,7 @@ class TransactionReviewInformation extends PureComponent {
<Text style={styles.overviewLabel}>{strings('transaction.total')}</Text>
<View style={styles.overviewContent}>
<Text style={styles.overviewInfo}>
{`${strings('transaction.amount')} ${strings('transaction.gas_fee')}`}
{`${strings('transaction.amount')} + ${strings('transaction.gas_fee')}`}
</Text>
<Text style={[styles.overviewFiat, styles.overviewAccent]}>{totalFiat}</Text>
{totalValue}
Expand Down