TxDetails.js 2.23 KiB
Newer Older
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
// This file is part of Parity.
//
// SPDX-License-Identifier: BSD-3-Clause

import React, { Component } from 'react';
import BigNumber from 'bignumber.js';
import { fromWei, toWei } from '@parity/api/lib/util/wei';

class TxDetails extends Component {
  renderDetails = () => {
    const { estimatedTxFee, token, values } = this.props;
    if (
      !estimatedTxFee ||
      !values.gasPrice ||
      !values.amount ||
Luke Schoen's avatar
Luke Schoen committed
      !values.chainId ||
      !values.ethBalance ||
      !values.gas ||
      !values.gasPrice ||
      !values.transactionCount ||
      // Keep line break so message is centered
      return `
Missing input fields...`;
    }

    return `${this.renderCalculation()}
${this.renderFee()}
${this.renderTotalAmount()}`;
  renderCalculation = () => {
    const { estimatedTxFee, values } = this.props;

    if (!estimatedTxFee || !values.gasPrice) {
      return;
    }

    const gasPriceBn = new BigNumber(values.gasPrice.toString());
      .div(gasPriceBn)
      .div(10 ** 9)
      .toFixed(0)
      .toString();

Thibaut Sardan's avatar
Thibaut Sardan committed
    return `Gas Limit: ${gasLimitBn}`;
    const { estimatedTxFee } = this.props;
    return `Fee: ${fromWei(estimatedTxFee, 'ether')
      .toString()} ETH (gas limit * gas price)`;
  renderTotalAmount = () => {
    const { estimatedTxFee, token, values } = this.props;
    if (!estimatedTxFee || !values.amount || !token.address) {
      return;
    }

    return `Total Amount: ${fromWei(
      estimatedTxFee.plus(
        token.address === 'ETH' ? toWei(values.amount.toString()) : 0
      ),
      'ether'
    ).toString()} ETH`;
            <label htmlFor='txDetails'>Transaction Details:</label>
            <textarea
              className='-sm-details'
              id='txDetails'
              readOnly