Commit 24eb01db authored by Hayden Adams's avatar Hayden Adams

add CNAME

parent ab891d1b
uniswap.io
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
.title { .title {
position: fixed; position: fixed;
font-size: 9vh; font-size: 10vh;
margin-top: 1vh; margin-top: 1vh;
margin-left: 2vh; margin-left: 2vh;
float: left; float: left;
...@@ -44,7 +44,6 @@ ...@@ -44,7 +44,6 @@
.title { .title {
transition: 0.6s; transition: 0.6s;
transform-style: preserve-3d; transform-style: preserve-3d;
position: relative; position: relative;
} }
...@@ -69,6 +68,14 @@ ...@@ -69,6 +68,14 @@
transform: rotateX(180deg); transform: rotateX(180deg);
} }
.noICO {
position:fixed;
top:3vh;
left: 37vw;
color: rgb(216, 169, 236);
text-shadow: 1px 1px 5px #ff69f0;
}
.ethLogo { .ethLogo {
position: fixed; position: fixed;
z-index: 0; z-index: 0;
...@@ -122,9 +129,8 @@ ...@@ -122,9 +129,8 @@
position: fixed; position: fixed;
z-index: 2; z-index: 2;
text-align: left; text-align: left;
font-size: 14px; top: 13vh;
top: 60px; left: 37vw;
left: 40vw;
color: rgb(122, 251, 255); color: rgb(122, 251, 255);
text-shadow: 2px 2px 10px #2daae0; text-shadow: 2px 2px 10px #2daae0;
width: 35vw; width: 35vw;
......
...@@ -84,14 +84,14 @@ class App extends Component { ...@@ -84,14 +84,14 @@ class App extends Component {
switch (netId) { switch (netId) {
case "1": case "1":
console.log('This is mainnet') console.log('This is mainnet')
self.setState({networkMessage: 'Connected to Ethereum Mainet, please switch to Rinkeby and refresh'}); self.setState({networkMessage: 'MetaMask connected to Ethereum Mainet. Switch to Rinkeby and refresh!'});
break break
case "2": case "2":
console.log('This is the deprecated Morden test network.') console.log('This is the deprecated Morden test network.')
self.setState({networkMessage: 'Connected to Morden testnet, please switch to Rinkeby and refresh'}); self.setState({networkMessage: 'MetaMask connected to Morden testnet. Switch to Rinkeby and refresh!'});
break break
case "3": case "3":
self.setState({networkMessage: 'Connected to Ropstein testnet, please switch to Rinkeby and refresh'}) self.setState({networkMessage: 'MetaMask connected to Ropstein testnet. Switch to Rinkeby and refresh!'})
break break
default: default:
console.log('This is an unknown network.') console.log('This is an unknown network.')
...@@ -288,13 +288,16 @@ class App extends Component { ...@@ -288,13 +288,16 @@ class App extends Component {
<div className="back">UNISWAP</div> <div className="back">UNISWAP</div>
</div> </div>
</div> </div>
<div className="noICO">UNI is an ERC20 test token. We are NOT doing an ICO.</div>
<img src={unicorn} className="unicorn" alt="unicorn"/> <img src={unicorn} className="unicorn" alt="unicorn"/>
<img src={ethLogo} className="ethLogo" alt = "ethLogo"/> <img src={ethLogo} className="ethLogo" alt = "ethLogo"/>
<div className="Warning">{this.state.networkMessage}</div> <div className="Warning">{this.state.networkMessage}</div>
<div className="Account-info"> <div className="Account-info">
Address : {this.state.currentMaskAddress}<br /> Account Detected:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{this.state.ethBalance} ETH&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Ether : {this.state.ethBalance} ETH &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {this.state.tokenBalance.toFixed(2)} UNI<br/>
Tokens: {this.state.tokenBalance.toFixed(2)} UNI<br/> {this.state.currentMaskAddress}
&nbsp;&nbsp;
<br/>
</div> </div>
<div className="instructions"> <div className="instructions">
<div className="instructions-title">Instructions and Stuff</div> <div className="instructions-title">Instructions and Stuff</div>
...@@ -309,7 +312,8 @@ class App extends Component { ...@@ -309,7 +312,8 @@ class App extends Component {
6) This is a proof-of-concept for a decentralized Market Maker exchange. Stay tuned for token-to-token pairs, the ability to become a Market Creator and collect fees, 6) This is a proof-of-concept for a decentralized Market Maker exchange. Stay tuned for token-to-token pairs, the ability to become a Market Creator and collect fees,
and a Mainet launch! :) <br/> <br/> and a Mainet launch! :) <br/> <br/>
7) This demo was hastily programmed by a single developer <i>(Hi, my name is Hayden!)</i>. Please reach out to me with any questions, comments, complaints, or bug reports.<br/><br/> 7) This demo was hastily programmed by a single developer <i>(Hi, my name is Hayden!)</i>. Please reach out to me with any questions, comments, complaints, or bug reports.<br/><br/>
&nbsp;&nbsp;Email: hayden@uniswap.io &nbsp;&nbsp; GitHub: https://github.com/haydenadams/uniswap<br/> &nbsp;&nbsp;Email: hayden@uniswap.io &nbsp;&nbsp;
<span className="instructions-link"><a href= "https://faucet.rinkeby.io/">GitHub: https://github.com/haydenadams/uniswap<br/></a></span>
&nbsp;&nbsp;ETH Address: 0x4779721CaC18A46DbCF148f2Dd7A8E6cc1F90078<br/><br/> &nbsp;&nbsp;ETH Address: 0x4779721CaC18A46DbCF148f2Dd7A8E6cc1F90078<br/><br/>
</div> </div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment