Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
interface
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LuckySwap
interface
Commits
93c627be
Commit
93c627be
authored
Jan 22, 2018
by
Callil Capuozzo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes
parent
c6457bbf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
App.js
src/App.js
+4
-4
No files found.
src/App.js
View file @
93c627be
...
...
@@ -80,9 +80,9 @@ class App extends Component {
this
.
setState
({
connected
:
false
})
}
else
{
this
.
setState
({
firstRun
:
cookie
.
load
(
'
firstRun
'
),
swapAdded
:
cookie
.
load
(
'
swapAdded
'
),
uniAdded
:
cookie
.
load
(
'
uniAdded
'
),
firstRun
:
cookie
.
load
(
'
firstRun
'
)
||
true
,
swapAdded
:
cookie
.
load
(
'
swapAdded
'
)
||
false
,
uniAdded
:
cookie
.
load
(
'
uniAdded
'
)
||
false
,
transactions
:
cookie
.
load
(
'
transactions
'
)
||
[],
})
this
.
getContracts
();
...
...
@@ -670,7 +670,7 @@ class App extends Component {
<
section
className
=
"
expand grey-bg border pa2
"
>
<
p
>
Uniswap
is
a
trustless
,
decentralized
exchange
for
Ether
and
ERC20
tokens
<
/p
>
<
p
>
Uniswap
exchange
uses
a
"
Market Maker
"
mechanism
,
where
liquidity
providers
store
a
reserve
of
ETH
and
ERC20
tokens
within
an
Ethereum
smart
contract
.
An
exchange
rate
is
set
between
the
tokens
and
ETH
based
on
the
relative
availibility
of
each
token
.
Arbitrage
ensures
that
the
rate
will
be
the
same
as
on
other
exchanges
.
Buyers
who
send
Token
1
to
the
smart
contract
will
receive
back
Token
2
at
the
current
rate
.
A
small
fee
is
paid
from
the
buyer
to
the
liquidity
providers
to
incentive
participation
.
<
/p
>
<
p
>
A
full
writeup
wi
th
math
and
whatnot
will
be
written
soon
.
Until
then
,
here
is
some
more
info
on
Market
Makers
:
<
/p
>
<
p
>
A
full
writeup
wi
ll
be
written
soon
.
Until
then
,
here
is
some
more
info
on
Market
Makers
:
<
/p
>
<
a
target
=
"
_blank
"
href
=
"
https://www.reddit.com/r/ethereum/comments/55m04x/lets_run_onchain_decentralized_exchanges_the_way/
"
>
https
:
//www.reddit.com/r/ethereum/comments/55m04x/lets_run_onchain_decentralized_exchanges_the_way/</a>
<
a
target
=
"
_blank
"
href
=
"
http://vitalik.ca/general/2017/06/22/marketmakers.html
"
>
http
:
//vitalik.ca/general/2017/06/22/marketmakers.html</a>
<
p
>
Please
reach
out
if
you
would
like
to
get
involved
or
support
the
project
.
<
/p
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment