Skip to content

Commit 011eb82

Browse files
authored
Onboarding: use lowercased DAI addresses (#1444)
1 parent 163d87f commit 011eb82

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/templates/dandelion/components/TokenSelector/TokenSelector.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ function TokenSelector({
7676
return (
7777
<div
7878
css={`
79-
display: ${showCustomHorizontal ? 'flex' : 'block'};
80-
align-items: flex-end;
81-
width 100%;
82-
`}
79+
display: ${showCustomHorizontal ? 'flex' : 'block'};
80+
align-items: flex-end;
81+
width 100%;
82+
`}
8383
>
8484
<DropDown
8585
header="Token"

src/templates/dandelion/config/helpers/tokens.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { network } from '../../../../environment'
33
export const ETHER_TOKEN_FAKE_ADDRESS =
44
'0x0000000000000000000000000000000000000000'
55

6-
const DAI_RINKEBY_TOKEN_ADDRESS = '0x0527E400502d0CB4f214dd0D2F2a323fc88Ff924'
6+
const DAI_RINKEBY_TOKEN_ADDRESS = '0x0527e400502d0cb4f214dd0d2f2a323fc88ff924'
77
const DAI_MAINNET_TOKEN_ADDRESS = '0x6b175474e89094c44da98b954eedeac495271d0f'
88

99
const DAI_TOKEN = {

0 commit comments

Comments
 (0)