feat: add CoinIcon component for displaying cryptocurrency icons
feat: implement TradeModal for buying and selling coins with validation and transaction handling feat: create server-side trade API for executing buy/sell transactions and updating user balances feat: add transactions API to fetch user transaction history feat: implement portfolio page to display user's holdings and recent transactions
This commit is contained in:
parent
0784e0f3d3
commit
a278d0c6a5
13 changed files with 1342 additions and 210 deletions
|
|
@ -10,6 +10,8 @@ export type User = {
|
|||
isBanned: boolean;
|
||||
banReason: string | null;
|
||||
avatarUrl: string | null;
|
||||
|
||||
baseCurrencyBalance: number;
|
||||
bio: string;
|
||||
} | null;
|
||||
|
||||
|
|
|
|||
Reference in a new issue