@uniswap/client-data-api 0.0.209 → 0.0.211
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/data/v2/api_pb.d.ts +11 -0
- package/dist/data/v2/api_pb.js +1 -0
- package/package.json +1 -1
package/dist/data/v2/api_pb.d.ts
CHANGED
|
@@ -1911,6 +1911,17 @@ export declare class GetTokenTopTradersRequest extends Message<GetTokenTopTrader
|
|
|
1911
1911
|
* @generated from field: optional int32 limit = 3;
|
|
1912
1912
|
*/
|
|
1913
1913
|
limit?: number;
|
|
1914
|
+
/**
|
|
1915
|
+
* Per-wallet lookup (LP-1558): serve only this wallet's row, covering ANY
|
|
1916
|
+
* wallet in the token's history — the full cached ranking first, and past
|
|
1917
|
+
* its cap the row comes from the same uncapped fold the ranking is cut
|
|
1918
|
+
* from (server-cached per wallet). Unset/empty serves the ranked
|
|
1919
|
+
* leaderboard as before. A wallet with no row (never traded or claimed
|
|
1920
|
+
* the token) serves an empty list, never an error.
|
|
1921
|
+
*
|
|
1922
|
+
* @generated from field: optional string wallet_address = 4;
|
|
1923
|
+
*/
|
|
1924
|
+
walletAddress?: string;
|
|
1914
1925
|
constructor(data?: PartialMessage<GetTokenTopTradersRequest>);
|
|
1915
1926
|
static readonly runtime: typeof proto3;
|
|
1916
1927
|
static readonly typeName = "data.v2.GetTokenTopTradersRequest";
|
package/dist/data/v2/api_pb.js
CHANGED
|
@@ -2174,6 +2174,7 @@ GetTokenTopTradersRequest.fields = proto3.util.newFieldList(() => [
|
|
|
2174
2174
|
{ no: 1, name: "chain_id", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
2175
2175
|
{ no: 2, name: "token_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
2176
2176
|
{ no: 3, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
2177
|
+
{ no: 4, name: "wallet_address", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
2177
2178
|
]);
|
|
2178
2179
|
/**
|
|
2179
2180
|
* One wallet's aggregate position on the token, derived from a
|