-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy path.mock-db.json
More file actions
71 lines (71 loc) · 1.6 KB
/
.mock-db.json
File metadata and controls
71 lines (71 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"commitments": [
{
"id": "CMT-ABC123",
"type": "Safe",
"status": "Active",
"asset": "XLM",
"amount": "50,000",
"currentValue": "52,600",
"changePercent": 5.2,
"durationProgress": 75,
"daysRemaining": 15,
"complianceScore": 95,
"maxLoss": "2%",
"currentDrawdown": "0.8%",
"createdDate": "Jan 10, 2026",
"expiryDate": "Feb 9, 2026"
},
{
"id": "CMT-XYZ789",
"type": "Balanced",
"status": "Active",
"asset": "USDC",
"amount": "100,000",
"currentValue": "112,500",
"changePercent": 12.5,
"durationProgress": 30,
"daysRemaining": 42,
"complianceScore": 88,
"maxLoss": "8%",
"currentDrawdown": "3.2%",
"createdDate": "Dec 15, 2025",
"expiryDate": "Feb 13, 2026"
}
],
"attestations": [
{
"id": "ATTR-001",
"commitmentId": "CMT-ABC123",
"provider": "Provider A",
"status": "Valid",
"timestamp": "2026-01-11T12:00:00Z"
}
],
"listings": [
{
"id": "001",
"type": "Safe",
"score": 95,
"amount": "$50,000",
"duration": "25 days",
"yield": "5.2%",
"maxLoss": "2%",
"owner": "0x742d35Cc6634C0532925a3b844Bc454e4438f44e",
"price": "$52,000",
"forSale": true
},
{
"id": "002",
"type": "Balanced",
"score": 88,
"amount": "$100,000",
"duration": "45 days",
"yield": "12.5%",
"maxLoss": "8%",
"owner": "0x8626f6940E2eb28930eFb4CeF49B2d1F2C9C1199",
"price": "$105,000",
"forSale": true
}
]
}