Skip to content

Commit b851c29

Browse files
authored
Merge pull request #689 from PolymathNetwork/stop-etherscan-api
GT-163: stop calling etherscan api
2 parents 4da5a87 + 4201c3d commit b851c29

3 files changed

Lines changed: 3 additions & 6 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
]
1111
},
1212
"engines": {
13-
"node": ">=8.11.4 <=10.17.0",
14-
"yarn": ">=1.12.3 <=1.19.1",
13+
"node": "8.x || 10.x",
14+
"yarn": "1.x",
1515
"npm": "6.11.3"
1616
},
1717
"version": "1.0.0-beta.0",

packages/polymath-issuer/src/components/Dashboard.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ type StateProps = {|
4343
type DispatchProps = {|
4444
fetchToken: (ticker: string) => any,
4545
fetchProviders: (ticker: string) => any,
46-
fetchLegacyToken: (ticker: string) => any,
4746
|};
4847

4948
const mapStateToProps = (state: RootState): StateProps => ({
@@ -57,7 +56,6 @@ const mapStateToProps = (state: RootState): StateProps => ({
5756
const mapDispatchToProps: DispatchProps = {
5857
fetchToken,
5958
fetchProviders,
60-
fetchLegacyToken,
6159
};
6260

6361
type Props = {|
@@ -74,7 +72,6 @@ class Dashboard extends Component<Props> {
7472
componentDidMount() {
7573
const ticker = this.props.match.params.id;
7674

77-
this.props.fetchLegacyToken(ticker);
7875
this.props.fetchToken(ticker);
7976
this.props.fetchProviders(ticker);
8077
}

packages/polymath-ui/src/components/Footer/__tests__/__snapshots__/Footer.js.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ exports[`renders without crashing 1`] = `
9292
class="pui-footer-text"
9393
>
9494
©
95-
2019
95+
2020
9696
9797
Polymath
9898
</span>

0 commit comments

Comments
 (0)