@triadxyz/triad-protocol 3.4.2-beta → 3.4.3-beta
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.
|
@@ -4548,7 +4548,7 @@
|
|
|
4548
4548
|
"type": "u64"
|
|
4549
4549
|
},
|
|
4550
4550
|
{
|
|
4551
|
-
"name": "
|
|
4551
|
+
"name": "shares",
|
|
4552
4552
|
"type": "u64"
|
|
4553
4553
|
},
|
|
4554
4554
|
{
|
|
@@ -4626,7 +4626,7 @@
|
|
|
4626
4626
|
"type": "u64"
|
|
4627
4627
|
},
|
|
4628
4628
|
{
|
|
4629
|
-
"name": "
|
|
4629
|
+
"name": "shares",
|
|
4630
4630
|
"type": "u64"
|
|
4631
4631
|
},
|
|
4632
4632
|
{
|
package/dist/types/index.d.ts
CHANGED
|
@@ -5639,7 +5639,7 @@ export type TriadProtocol = {
|
|
|
5639
5639
|
type: 'u64';
|
|
5640
5640
|
},
|
|
5641
5641
|
{
|
|
5642
|
-
name: '
|
|
5642
|
+
name: 'shares';
|
|
5643
5643
|
type: 'u64';
|
|
5644
5644
|
},
|
|
5645
5645
|
{
|
|
@@ -5717,7 +5717,7 @@ export type TriadProtocol = {
|
|
|
5717
5717
|
type: 'u64';
|
|
5718
5718
|
},
|
|
5719
5719
|
{
|
|
5720
|
-
name: '
|
|
5720
|
+
name: 'shares';
|
|
5721
5721
|
type: 'u64';
|
|
5722
5722
|
},
|
|
5723
5723
|
{
|
package/dist/utils/helpers.js
CHANGED
|
@@ -114,7 +114,7 @@ const formatOrder = (order) => {
|
|
|
114
114
|
orderDirection: (0, exports.getOrderDirection)(order.orderDirection),
|
|
115
115
|
orderSide: (0, exports.getOrderSide)(order.orderSide),
|
|
116
116
|
price: order.price.toString(),
|
|
117
|
-
|
|
117
|
+
shares: order.shares.toString()
|
|
118
118
|
};
|
|
119
119
|
};
|
|
120
120
|
exports.formatOrder = formatOrder;
|