Skip to content

Commit bd6535b

Browse files
authored
Update DAO dashboard statistics and treasury values
Updated voting power and participation rate values. Modified treasury data with new values for BTC, ETH, USDC, and Other. Signed-off-by: Aitor Alien <[email protected]>
1 parent 67f3f22 commit bd6535b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/components/DAODashboard.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ const DAODashboard: React.FC = () => {
2020
const [stats] = useState({
2121
activeVoters: 12847,
2222
totalProposals: 156,
23-
votingPower: '2.4M',
24-
participationRate: 68
23+
votingPower: '3.14M',
24+
participationRate: 69
2525
});
2626

2727
const [treasury] = useState([
28-
{ name: 'BTC', value: 145.7, change: 3.2, color: '#F7931A' },
29-
{ name: 'ETH', value: 2890.5, change: -1.5, color: '#627EEA' },
30-
{ name: 'USDC', value: 450000, change: 0, color: '#2775CA' },
31-
{ name: 'Other', value: 89000, change: 2.1, color: '#22C55E' }
28+
{ name: 'BTC', value: 123456789, change: 3.3, color: '#F7931A' },
29+
{ name: 'ETH', value: 333456789, change: -1.2, color: '#627EEA' },
30+
{ name: 'USDC', value: 850000, change: 0, color: '#2775CA' },
31+
{ name: 'Other', value: 95000, change: 2.3, color: '#22C55E' }
3232
]);
3333

3434
const [proposals] = useState<Proposal[]>([

0 commit comments

Comments
 (0)