Skip to content
This repository was archived by the owner on Aug 6, 2020. It is now read-only.
Open
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
4 changes: 2 additions & 2 deletions client/src/components/Web3Info/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { Component } from 'react';
import { PublicAddress, Blockie } from 'rimble-ui';
import { EthAddress, Blockie } from 'rimble-ui';
import styles from './Web3Info.module.scss';

export default class Web3Info extends Component {
Expand Down Expand Up @@ -32,7 +32,7 @@ export default class Web3Info extends Component {
<div className={styles.dataPoint}>
<div className={styles.label}>Your address:</div>
<div className={styles.value}>
<PublicAddress address={accounts[0]} />
<EthAddress address={accounts[0]} />
<Blockie opts={{ seed: accounts[0], size: 15, scale: 3 }} />
</div>
</div>
Expand Down