@bluefin-exchange/pro-sdk 0.1.33 → 0.1.34
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/dist/src/api.d.ts +6 -0
- package/package.json +1 -1
- package/src/api.ts +6 -0
package/dist/src/api.d.ts
CHANGED
|
@@ -875,6 +875,12 @@ export interface ActiveOrderUpdate {
|
|
|
875
875
|
* @memberof ActiveOrderUpdate
|
|
876
876
|
*/
|
|
877
877
|
'signedAtMillis': number;
|
|
878
|
+
/**
|
|
879
|
+
* The address of the signer of the order request.
|
|
880
|
+
* @type {string}
|
|
881
|
+
* @memberof ActiveOrderUpdate
|
|
882
|
+
*/
|
|
883
|
+
'signerAddress': string;
|
|
878
884
|
/**
|
|
879
885
|
*
|
|
880
886
|
* @type {OrderType}
|
package/package.json
CHANGED
package/src/api.ts
CHANGED
|
@@ -911,6 +911,12 @@ export interface ActiveOrderUpdate {
|
|
|
911
911
|
* @memberof ActiveOrderUpdate
|
|
912
912
|
*/
|
|
913
913
|
'signedAtMillis': number;
|
|
914
|
+
/**
|
|
915
|
+
* The address of the signer of the order request.
|
|
916
|
+
* @type {string}
|
|
917
|
+
* @memberof ActiveOrderUpdate
|
|
918
|
+
*/
|
|
919
|
+
'signerAddress': string;
|
|
914
920
|
/**
|
|
915
921
|
*
|
|
916
922
|
* @type {OrderType}
|