import { shell } from 'electron' import React from 'react' import PropTypes from 'prop-types' import { FaCircle } from 'react-icons/lib/fa' import { btc } from 'utils' import styles from './Contact.scss' const ClosingContact = ({ channel }) => (
  • Removing shell.openExternal(`${'https://testnet.smartbit.com.au'}/tx/${channel.closing_txid}`)}> (Details)

    {channel.channel.remote_node_pub}

    Can Pay

    {btc.satoshisToBtc(channel.channel.local_balance)}BTC

    Can Receive

    {btc.satoshisToBtc(channel.channel.remote_balance)}BTC

  • ) ClosingContact.propTypes = { } export default ClosingContact