Skip to content
This repository was archived by the owner on Mar 16, 2022. It is now read-only.
Closed
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
Binary file added src/assets/images/jaxx.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/ledger.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/metamask.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/mycrypto.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/parity.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
52 changes: 51 additions & 1 deletion src/containers/simple-bid/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ import * as IICOSelectors from '../../reducers/iico'
import * as IICOActions from '../../actions/iico'
import Identicon from '../../components/identicon'
import ETHQR from '../../components/eth-qr'
import ledger from '../../assets/images/ledger.png'
import metamask from '../../assets/images/metamask.png'
import mycrypto from '../../assets/images/mycrypto.png'
import parity from '../../assets/images/parity.png'
import jaxx from '../../assets/images/jaxx.png'

import './simple-bid.css'

Expand Down Expand Up @@ -107,7 +112,8 @@ class SimpleBid extends PureComponent {
</p>
{address && (
<div className="SimpleBid-addressInfo">
<b>Contract Address:</b> {address}
<b>Contract Address:</b>&nbsp;
<a href={`https://etherscan.io/address/${address}`}>{address}</a>
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ideally it would be good to have the good address in function of the network

<div className="SimpleBid-addressInfo-blocks">
<div>
<b>Identicon:</b>
Expand Down Expand Up @@ -135,6 +141,50 @@ class SimpleBid extends PureComponent {
come back with a Web3 enabled browser.
</p>
)}
<b>Recommended tools to send ethers:</b>
<div className="SimpleBid-wallets">
<div>
<a href="https://www.ledgerwallet.com/apps/ethereum">
<img
className="SimpleBid-wallets-ledger"
alt="ledger wallet"
src={ledger}
/>
</a>
</div>
<div>
<a href="https://metamask.io">
<img
className="SimpleBid-wallets-metamask"
alt="metamask"
src={metamask}
/>
</a>
</div>
<div>
<a href="https://mycrypto.com">
<img
className="SimpleBid-wallets-mycrypto"
alt="mycrypto"
src={mycrypto}
/>
</a>
</div>
<div>
<a href="https://parity.io">
<img
className="SimpleBid-wallets-parity"
alt="parity wallet"
src={parity}
/>
</a>
</div>
<div>
<a href="https://jaxx.io/">
<img className="SimpleBid-wallets-jaxx" alt="jaxx" src={jaxx} />
</a>
</div>
</div>
</div>
)
}
Expand Down
37 changes: 37 additions & 0 deletions src/containers/simple-bid/simple-bid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,41 @@
margin-top: 24px;
}
}

&-wallets {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-around;
padding-top: 2em;

&-ledger {
padding-top: 1em;
width: 120px;
}

&-metamask {
margin-top: -10px;
padding-top: 1em;
width: 120px;
}

&-mycrypto {
margin-top: -3px;
padding-top: 1em;
width: 120px;
}

&-parity {
margin-top: -20px;
padding-top: 1em;
width: 150px;
}

&-jaxx {
margin-top: -10px;
padding-top: 1em;
width: 90px;
}
}
}