You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/restore_session.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,17 +33,17 @@ Mostro will respond with a message containing all non-finalized orders (e.g., st
33
33
"restore_data": {
34
34
"orders": [
35
35
{
36
-
"id": "<Order Id>",
36
+
"order_id": "<Order Id>",
37
37
"trade_index": 1,
38
38
"status": "pending"
39
39
},
40
40
{
41
-
"id": "<Order Id>",
41
+
"order_id": "<Order Id>",
42
42
"trade_index": 2,
43
43
"status": "active"
44
44
},
45
45
{
46
-
"id": "<Order Id>",
46
+
"order_id": "<Order Id>",
47
47
"trade_index": 3,
48
48
"status": "fiat-sent"
49
49
}
@@ -67,7 +67,7 @@ Mostro will respond with a message containing all non-finalized orders (e.g., st
67
67
### Fields
68
68
69
69
*`restore_data`: Wrapper object that contains the session recovery data.
70
-
*`restore_data.orders`: An array of active or ongoing orders with their `id`, `trade_index`, and current `status`.
70
+
*`restore_data.orders`: An array of active or ongoing orders with their `order_id`, `trade_index`, and current `status`.
71
71
*`restore_data.disputes`: An array of ongoing disputes with `dispute_id`, the associated `order_id`, and `trade_index` and current `status` of the dispute.
72
72
73
73
## Example Use Case
@@ -89,10 +89,10 @@ When switching to desktop, after restoring the mnemonic, the client sends `resto
0 commit comments