@nightlylabs/dex-sdk 0.1.64 → 0.1.65
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.cts +5 -3
- package/dist/index.d.ts +5 -3
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -80,7 +80,8 @@ declare enum BoxRewardTier {
|
|
|
80
80
|
}
|
|
81
81
|
interface BoxReward {
|
|
82
82
|
tier: string;
|
|
83
|
-
|
|
83
|
+
tokenAddress?: string;
|
|
84
|
+
tokenAmount?: string;
|
|
84
85
|
pointsAmount?: string;
|
|
85
86
|
badgeType?: BoxRewardTier;
|
|
86
87
|
}
|
|
@@ -878,8 +879,9 @@ interface OpenBoxesRequest {
|
|
|
878
879
|
userId: string;
|
|
879
880
|
boxId: string;
|
|
880
881
|
amount: string;
|
|
881
|
-
|
|
882
|
-
|
|
882
|
+
apiKeyAddress: string;
|
|
883
|
+
apiKeyPublicKeyBs58: string;
|
|
884
|
+
signatureBs58: string;
|
|
883
885
|
}
|
|
884
886
|
interface OpenBoxesResponse {
|
|
885
887
|
txHash: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -80,7 +80,8 @@ declare enum BoxRewardTier {
|
|
|
80
80
|
}
|
|
81
81
|
interface BoxReward {
|
|
82
82
|
tier: string;
|
|
83
|
-
|
|
83
|
+
tokenAddress?: string;
|
|
84
|
+
tokenAmount?: string;
|
|
84
85
|
pointsAmount?: string;
|
|
85
86
|
badgeType?: BoxRewardTier;
|
|
86
87
|
}
|
|
@@ -878,8 +879,9 @@ interface OpenBoxesRequest {
|
|
|
878
879
|
userId: string;
|
|
879
880
|
boxId: string;
|
|
880
881
|
amount: string;
|
|
881
|
-
|
|
882
|
-
|
|
882
|
+
apiKeyAddress: string;
|
|
883
|
+
apiKeyPublicKeyBs58: string;
|
|
884
|
+
signatureBs58: string;
|
|
883
885
|
}
|
|
884
886
|
interface OpenBoxesResponse {
|
|
885
887
|
txHash: string;
|