@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 CHANGED
@@ -80,7 +80,8 @@ declare enum BoxRewardTier {
80
80
  }
81
81
  interface BoxReward {
82
82
  tier: string;
83
- usdcAmount?: string;
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
- apiKey: string;
882
- signature: string;
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
- usdcAmount?: string;
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
- apiKey: string;
882
- signature: string;
882
+ apiKeyAddress: string;
883
+ apiKeyPublicKeyBs58: string;
884
+ signatureBs58: string;
883
885
  }
884
886
  interface OpenBoxesResponse {
885
887
  txHash: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nightlylabs/dex-sdk",
3
- "version": "0.1.64",
3
+ "version": "0.1.65",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {