@nightlylabs/dex-sdk 0.1.62 → 0.1.63

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
@@ -78,6 +78,13 @@ declare enum BoxRewardTier {
78
78
  Legendary = "Legendary",
79
79
  Mystic = "Mystic"
80
80
  }
81
+ interface BoxReward {
82
+ tier: string;
83
+ tokenAddress?: string;
84
+ tokenAmount?: string;
85
+ pointsAmount?: string;
86
+ badgeType?: BoxRewardTier;
87
+ }
81
88
  interface BoxOpeningEvent {
82
89
  txHash: string;
83
90
  userId: string;
@@ -88,19 +95,6 @@ interface BoxOpeningEvent {
88
95
  pointsCost: string;
89
96
  timestamp: string;
90
97
  }
91
- interface BoxReward {
92
- tier: string;
93
- usdcAmount?: string;
94
- pointsAmount?: string;
95
- badgeType?: BoxRewardTier;
96
- }
97
- interface BoxReward {
98
- tier: string;
99
- tokenAddress?: string;
100
- tokenAmount?: string;
101
- pointsAmount?: string;
102
- badgeType?: BoxRewardTier;
103
- }
104
98
  interface CanceledPerpOrders {
105
99
  market: string;
106
100
  userId: string;
@@ -747,6 +741,7 @@ interface GetUserTransferHistoryRequest {
747
741
  paginationCursor?: PaginationCursor;
748
742
  }
749
743
  interface HistoricalUserTransfer {
744
+ senderId: string;
750
745
  receiverId: string;
751
746
  tokenAddress: string;
752
747
  amount: string;
package/dist/index.d.ts CHANGED
@@ -78,6 +78,13 @@ declare enum BoxRewardTier {
78
78
  Legendary = "Legendary",
79
79
  Mystic = "Mystic"
80
80
  }
81
+ interface BoxReward {
82
+ tier: string;
83
+ tokenAddress?: string;
84
+ tokenAmount?: string;
85
+ pointsAmount?: string;
86
+ badgeType?: BoxRewardTier;
87
+ }
81
88
  interface BoxOpeningEvent {
82
89
  txHash: string;
83
90
  userId: string;
@@ -88,19 +95,6 @@ interface BoxOpeningEvent {
88
95
  pointsCost: string;
89
96
  timestamp: string;
90
97
  }
91
- interface BoxReward {
92
- tier: string;
93
- usdcAmount?: string;
94
- pointsAmount?: string;
95
- badgeType?: BoxRewardTier;
96
- }
97
- interface BoxReward {
98
- tier: string;
99
- tokenAddress?: string;
100
- tokenAmount?: string;
101
- pointsAmount?: string;
102
- badgeType?: BoxRewardTier;
103
- }
104
98
  interface CanceledPerpOrders {
105
99
  market: string;
106
100
  userId: string;
@@ -747,6 +741,7 @@ interface GetUserTransferHistoryRequest {
747
741
  paginationCursor?: PaginationCursor;
748
742
  }
749
743
  interface HistoricalUserTransfer {
744
+ senderId: string;
750
745
  receiverId: string;
751
746
  tokenAddress: string;
752
747
  amount: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nightlylabs/dex-sdk",
3
- "version": "0.1.62",
3
+ "version": "0.1.63",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {