Skip to content

Commit 9ac5d3a

Browse files
committed
Updated address
1 parent 1ada640 commit 9ac5d3a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/constants/donation-token-config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ export const donationTokens: DonationToken[] = [
1111
{
1212
name: 'BTC (Bitcoin)',
1313
symbol: 'BTC',
14-
address: '0x00',
14+
address: 'bc1qzqwnvcmxd7n3fpa7mqcvlnprrtcp5hrt649ut7',
1515
iconName: Icons.Bitcoin,
1616
},
1717
{
1818
name: 'ETH (Ethereum)',
1919
symbol: 'ETH',
20-
address: '0x01',
20+
address: '0x9Dc54bB3Ea2EBdACA4c6f86647FBE09FFaE3BCee',
2121
iconName: Icons.Ethereum,
2222
},
2323
{
2424
name: 'USDC (ERC-20)',
2525
symbol: 'USDC',
26-
address: '0x02',
26+
address: '0x9Dc54bB3Ea2EBdACA4c6f86647FBE09FFaE3BCee',
2727
iconName: Icons.Usdc,
2828
},
2929
]

src/pages/Home/components/DonateModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default function DonateModal({ open, onClose }: DialogProps) {
4242
return (
4343
<Dialog open={open} onClose={onClose}>
4444
<UiDialogTitle onClose={onClose}>{t('donate-modal.title')}</UiDialogTitle>
45-
<UiDialogContent>
45+
<UiDialogContent sx={{ minWidth: { xs: 'unset', md: 500 } }}>
4646
<UiTabs
4747
slots={{
4848
tabsProps: {

0 commit comments

Comments
 (0)