RΞgistry
@@ -70,13 +73,11 @@ export default class Application extends Component {
{ contract && fee ? (
-
{ this.renderActions() }
-
-
- The Registry is provided by the contract at { contract.address }.
-
+
+ WARNING: The name registry is experimental. Please ensure that you understand the risks, benefits & consequences of registering a name before doing so. A non-refundable fee of { api.util.fromWei(fee).toFormat(3) }ETH is required for all registrations.
+
) : (
diff --git a/js/src/dapps/tokenreg/Application/application.css b/js/src/dapps/tokenreg/Application/application.css
index 07bc74b40..033147ae3 100644
--- a/js/src/dapps/tokenreg/Application/application.css
+++ b/js/src/dapps/tokenreg/Application/application.css
@@ -20,3 +20,15 @@
flex-direction: column;
align-items: center;
}
+
+.warning {
+ background: #f80;
+ bottom: 0;
+ color: #fff;
+ left: 0;
+ opacity: 1;
+ padding: 1.5em;
+ position: fixed;
+ right: 50%;
+ z-index: 100;
+}
diff --git a/js/src/dapps/tokenreg/Application/application.js b/js/src/dapps/tokenreg/Application/application.js
index e48922b05..6a94f5c9c 100644
--- a/js/src/dapps/tokenreg/Application/application.js
+++ b/js/src/dapps/tokenreg/Application/application.js
@@ -17,6 +17,8 @@
import React, { Component, PropTypes } from 'react';
import getMuiTheme from 'material-ui/styles/getMuiTheme';
+import { api } from '../parity';
+
import Loading from '../Loading';
import Status from '../Status';
import Tokens from '../Tokens';
@@ -59,6 +61,9 @@ export default class Application extends Component {
+
+ WARNING: The token registry is experimental. Please ensure that you understand the steps, risks, benefits & consequences of registering a token before doing so. A non-refundable fee of { api.util.fromWei(contract.fee).toFormat(3) }ETH is required for all registrations.
+
);
}
diff --git a/js/src/dapps/tokenreg/Status/status.css b/js/src/dapps/tokenreg/Status/status.css
index 27ef53607..7333194b7 100644
--- a/js/src/dapps/tokenreg/Status/status.css
+++ b/js/src/dapps/tokenreg/Status/status.css
@@ -31,6 +31,12 @@
.title {
font-size: 3rem;
font-weight: 300;
- margin-top: 0;
+ margin: 0;
text-transform: uppercase;
}
+
+.byline {
+ font-size: 1.25em;
+ opacity: 0.75;
+ margin: 0 0 1.75em 0;
+}
diff --git a/js/src/dapps/tokenreg/Status/status.js b/js/src/dapps/tokenreg/Status/status.js
index f8c7b347a..4ca47a6ea 100644
--- a/js/src/dapps/tokenreg/Status/status.js
+++ b/js/src/dapps/tokenreg/Status/status.js
@@ -29,17 +29,12 @@ export default class Status extends Component {
};
render () {
- const { address, fee } = this.props;
+ const { fee } = this.props;
return (