Commit 103ad864 authored by Ian Lapham's avatar Ian Lapham Committed by Noah Zinsmeister

update default slippage to 50 bips (#569)

parent d400ff62
......@@ -28,8 +28,8 @@ const TOKEN_TO_ETH = 1
const TOKEN_TO_TOKEN = 2
// denominated in bips
const ALLOWED_SLIPPAGE_DEFAULT = 100
const TOKEN_ALLOWED_SLIPPAGE_DEFAULT = 100
const ALLOWED_SLIPPAGE_DEFAULT = 50
const TOKEN_ALLOWED_SLIPPAGE_DEFAULT = 50
// 15 minutes, denominated in seconds
const DEFAULT_DEADLINE_FROM_NOW = 60 * 15
......
......@@ -411,22 +411,22 @@ export default function TransactionDetails(props) {
>
0.1%
</Option>
<Option
<OptionLarge
onClick={() => {
setFromFixed(2, 0.5)
}}
active={activeIndex === 2}
>
0.5%
</Option>
<OptionLarge
0.5% <Faded>(suggested)</Faded>
</OptionLarge>
<Option
onClick={() => {
setFromFixed(3, 1)
}}
active={activeIndex === 3}
>
1% <Faded>(suggested)</Faded>
</OptionLarge>
1%
</Option>
<OptionCustom
active={activeIndex === 4}
color={
......
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