Token name from state

This commit is contained in:
Callil Capuozzo 2018-01-19 12:55:52 -05:00
parent 1821441138
commit 0a7c668dc6
2 changed files with 4 additions and 4 deletions

@ -319,15 +319,15 @@ class App extends Component {
<section className="rate border pa2"> <section className="rate border pa2">
<span className="rate-info"> <span className="rate-info">
<p>Rate</p> <p>Rate</p>
<p>{this.state.tokenBuyRate.toFixed(3)} UNI/ETH</p> <p>{this.state.tokenBuyRate.toFixed(3)} {this.state.outputToken.value + "/" + this.state.inputToken.value}</p>
</span> </span>
<span className="rate-info"> <span className="rate-info">
<p>Cost</p> <p>Cost</p>
<p>{this.state.tokenCost.toFixed(5)} ETH</p> <p>{this.state.tokenCost.toFixed(5)} {this.state.inputToken.value}</p>
</span> </span>
<span className="rate-info"> <span className="rate-info">
<p>Fee</p> <p>Fee</p>
<p>{this.state.tokenFee.toFixed(5)} ETH</p> <p>{this.state.tokenFee.toFixed(5)} {this.state.inputToken.value}</p>
</span> </span>
</section> </section>
{this.state.interaction === 'input' ? {this.state.interaction === 'input' ?

@ -5,7 +5,7 @@ function NetworkStatus(props) {
if (isConnected){ if (isConnected){
return ( return (
<div className="connection border pa2"> <div className="connection border pa2">
<a href={'https://etherscan.io/search?q=' + props.address}>{props.address}</a> <a href={'https://rinkeby.etherscan.io/search?q=' + props.address}>{props.address}</a>
<p></p> <p></p>
</div> </div>
) )