-
-
Notifications
You must be signed in to change notification settings - Fork 135
/
Copy pathETradeOfferState.js
25 lines (24 loc) · 1.1 KB
/
ETradeOfferState.js
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
module.exports = {
"Invalid": 1,
"Active": 2, // This trade offer has been sent, neither party has acted on it yet.
"Accepted": 3, // The trade offer was accepted by the recipient and items were exchanged.
"Countered": 4, // The recipient made a counter offer
"Expired": 5, // The trade offer was not accepted before the expiration date
"Canceled": 6, // The sender cancelled the offer
"Declined": 7, // The recipient declined the offer
"InvalidItems": 8, // Some of the items in the offer are no longer available (indicated by the missing flag in the output)
"CreatedNeedsConfirmation": 9, // The offer hasn't been sent yet and is awaiting further confirmation
"CanceledBySecondFactor": 10, // Either party canceled the offer via email/mobile confirmation
"InEscrow": 11, // The trade has been placed on hold
"1": "Invalid",
"2": "Active",
"3": "Accepted",
"4": "Countered",
"5": "Expired",
"6": "Canceled",
"7": "Declined",
"8": "InvalidItems",
"9": "CreatedNeedsConfirmation",
"10": "CanceledBySecondFactor",
"11": "InEscrow",
};