Skip to content

Commit

Permalink
Onboarding: use lowercased DAI addresses (#1444)
Browse files Browse the repository at this point in the history
  • Loading branch information
sohkai committed Jun 10, 2020
1 parent 163d87f commit 011eb82
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ function TokenSelector({
return (
<div
css={`
display: ${showCustomHorizontal ? 'flex' : 'block'};
align-items: flex-end;
width 100%;
`}
display: ${showCustomHorizontal ? 'flex' : 'block'};
align-items: flex-end;
width 100%;
`}
>
<DropDown
header="Token"
Expand Down
2 changes: 1 addition & 1 deletion src/templates/dandelion/config/helpers/tokens.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { network } from '../../../../environment'
export const ETHER_TOKEN_FAKE_ADDRESS =
'0x0000000000000000000000000000000000000000'

const DAI_RINKEBY_TOKEN_ADDRESS = '0x0527E400502d0CB4f214dd0D2F2a323fc88Ff924'
const DAI_RINKEBY_TOKEN_ADDRESS = '0x0527e400502d0cb4f214dd0d2f2a323fc88ff924'
const DAI_MAINNET_TOKEN_ADDRESS = '0x6b175474e89094c44da98b954eedeac495271d0f'

const DAI_TOKEN = {
Expand Down

0 comments on commit 011eb82

Please sign in to comment.