Skip to content

Commit 9feb9f1

Browse files
authored
Merge pull request #697 from PolymathNetwork/develop
2.4.1
2 parents 83427b3 + cf5dcc4 commit 9feb9f1

20 files changed

Lines changed: 108 additions & 51 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/new-polymath-ui/src/components/Footer/Footer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const Footer = (props: FooterProps) => {
2525
<Link
2626
href={
2727
props.termsOfServiceUrl ||
28-
'https://polymath.network/termsofservice.html'
28+
'https://polymath.network/terms-of-service'
2929
}
3030
>
3131
Terms Of Service
@@ -35,7 +35,7 @@ export const Footer = (props: FooterProps) => {
3535
<Link
3636
href={
3737
props.privacyPolicyUrl ||
38-
'https://polymath.network/privacypolicy.html'
38+
'https://polymath.network/privacy-policy'
3939
}
4040
>
4141
Privacy Policy
70.4 KB
Loading
5.65 KB
Loading
387 KB
Loading
3.98 KB
Loading
307 KB
Loading
1.24 KB
Loading

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-issuer/src/pages/home/index.js

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,20 @@ class HomePage extends Component {
1212
<div className="splash-background" />
1313
<div>
1414
<h1 className="pui-h0">
15-
The Next Mega-Trend
15+
Start Your Security Token
1616
<br />
17-
in Crypto is the Emergence
18-
<br /> of Securities Tokens
17+
Journey Here
1918
</h1>
2019
<h3 className="pui-h3">
21-
Polymath enables trillions of dollars of securities to be issued
22-
<br /> and traded on the blockchain.
20+
Easily reserve your ticker, mint your tokens, and <br />
21+
prepare distribution of your STO.
2322
</h3>
2423
<br />
2524
<br />
2625
<p>
2726
<Link to="/account">
2827
<Button id="create-token-btn" icon="arrow--right">
29-
Configure your security token
28+
Connect Metamask
3029
</Button>
3130
</Link>
3231
</p>

0 commit comments

Comments
 (0)