@taphubhq/sdk-core 0.25.0 → 0.25.1
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/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -656,6 +656,8 @@ interface MqttWireAcceptedBid {
|
|
|
656
656
|
gameUuid: string;
|
|
657
657
|
/** Pair id, e.g. "grid-ETH-USD". */
|
|
658
658
|
pairId?: string;
|
|
659
|
+
/** Display pair, e.g. "ETH/USD"; frozen at placement. */
|
|
660
|
+
pairName?: string;
|
|
659
661
|
currency: string;
|
|
660
662
|
amount: string;
|
|
661
663
|
coefficient: number;
|
|
@@ -821,6 +823,8 @@ interface MqttAcceptedBid {
|
|
|
821
823
|
gameUuid: string;
|
|
822
824
|
/** Pair id, e.g. "grid-ETH-USD". */
|
|
823
825
|
pairId?: string;
|
|
826
|
+
/** Display pair, e.g. "ETH/USD". Frozen at placement; used to label live trades. */
|
|
827
|
+
pairName?: string;
|
|
824
828
|
currency: string;
|
|
825
829
|
amount: string;
|
|
826
830
|
coefficient: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -656,6 +656,8 @@ interface MqttWireAcceptedBid {
|
|
|
656
656
|
gameUuid: string;
|
|
657
657
|
/** Pair id, e.g. "grid-ETH-USD". */
|
|
658
658
|
pairId?: string;
|
|
659
|
+
/** Display pair, e.g. "ETH/USD"; frozen at placement. */
|
|
660
|
+
pairName?: string;
|
|
659
661
|
currency: string;
|
|
660
662
|
amount: string;
|
|
661
663
|
coefficient: number;
|
|
@@ -821,6 +823,8 @@ interface MqttAcceptedBid {
|
|
|
821
823
|
gameUuid: string;
|
|
822
824
|
/** Pair id, e.g. "grid-ETH-USD". */
|
|
823
825
|
pairId?: string;
|
|
826
|
+
/** Display pair, e.g. "ETH/USD". Frozen at placement; used to label live trades. */
|
|
827
|
+
pairName?: string;
|
|
824
828
|
currency: string;
|
|
825
829
|
amount: string;
|
|
826
830
|
coefficient: number;
|