65 lines
1.5 KiB
TypeScript
65 lines
1.5 KiB
TypeScript
interface Transaction {
|
|
userId: number | string;
|
|
date: string;
|
|
method: string;
|
|
amount: number | string;
|
|
status: string;
|
|
}
|
|
|
|
export const deposits: Transaction[] = [
|
|
{ userId: 17, date: "2025-08-01 10:10", method: "CC", amount: 120, status: "approved" },
|
|
{
|
|
userId: 17,
|
|
date: "2025-07-28 14:35",
|
|
method: "Bank Transfer",
|
|
amount: 250,
|
|
status: "approved",
|
|
},
|
|
{
|
|
userId: 17,
|
|
date: "2025-07-20 09:05",
|
|
method: "PayPal",
|
|
amount: 75,
|
|
status: "pending",
|
|
},
|
|
{ userId: 17,
|
|
date: "2025-07-11 17:12", method: "CC", amount: 300, status: "rejected" },
|
|
{ userId: 17,
|
|
date: "2025-07-01 12:42", method: "CC", amount: 180, status: "approved" },
|
|
];
|
|
|
|
export const withdrawals: Transaction[] = [
|
|
{
|
|
userId: 17,
|
|
date: "2025-08-02 11:20",
|
|
method: "Crypto",
|
|
amount: 95,
|
|
status: "processing",
|
|
},
|
|
{
|
|
userId: 17,
|
|
date: "2025-07-29 16:45",
|
|
method: "Bank Transfer",
|
|
amount: 220,
|
|
status: "approved",
|
|
},
|
|
{
|
|
userId: 17,
|
|
date: "2025-07-21 15:10",
|
|
method: "eWallet",
|
|
amount: 60,
|
|
status: "pending",
|
|
},
|
|
{ userId: 17,
|
|
date: "2025-07-12 13:33",
|
|
method: "Crypto",
|
|
amount: 120,
|
|
status: "approved",
|
|
},
|
|
{ userId: 17,
|
|
date: "2025-07-03 08:50",
|
|
method: "Bank Transfer",
|
|
amount: 150,
|
|
status: "rejected",
|
|
},
|
|
]; |