Skip to content
This repository has been archived by the owner on Oct 10, 2023. It is now read-only.

Update default slip tolerance to 1% #2175

Merged
merged 1 commit into from
Mar 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

- [Shares] Show asym shares in list [#2172](https://github.com/thorchain/asgardex-electron/issues/2172)

## Update

- Add more slippage options [#2170](https://github.com/thorchain/asgardex-electron/pull/2170) by @WojciechKo

# 0.12.2 (2022-03-25)

## Fix
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/services/const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { SlipTolerance } from '../types/asgardex'

export const DEFAULT_NETWORK: Network =
process.env.NODE_ENV !== 'production' && process.env.REACT_APP_DEFAULT_NETWORK === 'testnet' ? 'testnet' : 'mainnet'
export const DEFAULT_SLIP_TOLERANCE: SlipTolerance = 5
export const DEFAULT_SLIP_TOLERANCE: SlipTolerance = 1
export const DEFAULT_CLIENT_NETWORK: Client.Network = Client.Network.Mainnet

export const AVAILABLE_NETWORKS: Network[] = ['testnet', 'stagenet', 'mainnet']
Expand Down