@sui-tracker/shared 1.1.5 → 1.1.7

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.
@@ -76,6 +76,7 @@ export interface IGetBubbleMapDataResponse extends BaseResponse {
76
76
  }
77
77
  export interface IGetTokenTransfersRequest {
78
78
  holders: string[];
79
+ tokenAddress: string;
79
80
  }
80
81
  export interface IGetTokenTransfersResponse extends BaseResponse {
81
82
  data: ILink[];
@@ -347,6 +347,7 @@ export interface TokenStatsData {
347
347
  totalTxSell: number;
348
348
  totalMakerBuy: number;
349
349
  totalMakerSell: number;
350
+ priceChange: number;
350
351
  }
351
352
  export interface TokenDetailData {
352
353
  token: TokenData;
@@ -144,6 +144,7 @@ message Link {
144
144
  // Request message for getting token transfers
145
145
  message GetTokenTransfersRequest {
146
146
  repeated string holders = 1;
147
+ string tokenAddress = 2;
147
148
  }
148
149
 
149
150
  // Response message for getting token transfers
@@ -149,6 +149,7 @@ message TokenStatsData {
149
149
  int32 totalTxSell = 7;
150
150
  int32 totalMakerBuy = 8;
151
151
  int32 totalMakerSell = 9;
152
+ double priceChange = 10;
152
153
  }
153
154
 
154
155
  // Token detail data structure