@loafmarkets/shared-types 1.0.107 → 1.0.118
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/proto/trading.proto +4 -2
package/package.json
CHANGED
package/proto/trading.proto
CHANGED
|
@@ -53,8 +53,8 @@ message TradeExecution {
|
|
|
53
53
|
uint32 price_multiplier = 7; // 1, 100, 1000
|
|
54
54
|
uint64 quantity = 8;
|
|
55
55
|
uint32 quantity_multiplier = 9; // 1, 100, 1000
|
|
56
|
-
|
|
57
|
-
|
|
56
|
+
uint64 buyer_fee = 10;
|
|
57
|
+
uint64 seller_fee = 11;
|
|
58
58
|
string buyer_wallet = 12;
|
|
59
59
|
string seller_wallet = 13;
|
|
60
60
|
OrderSide side = 14;
|
|
@@ -81,6 +81,8 @@ message TradeExecution {
|
|
|
81
81
|
uint32 settlement_error_code = 35;
|
|
82
82
|
uint64 settlement_block_number = 36;
|
|
83
83
|
string settlement_settled_at = 37;
|
|
84
|
+
string settlement_tx_hash = 38;
|
|
85
|
+
uint64 payment_amount = 39;
|
|
84
86
|
}
|
|
85
87
|
|
|
86
88
|
message OrderData {
|