@uniswap/client-data-api 0.0.208 → 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/v1/api_pb.d.ts
CHANGED
|
@@ -967,12 +967,11 @@ export declare class PoolProtocolFees extends Message<PoolProtocolFees> {
|
|
|
967
967
|
/**
|
|
968
968
|
* Protocol fee in pips (hundredths of a bip), same semantics as
|
|
969
969
|
* pools.v1.Pool.protocol_fee: v4 = ADDITIVE fee stacked on top of the LP
|
|
970
|
-
* fee
|
|
971
|
-
*
|
|
972
|
-
*
|
|
973
|
-
*
|
|
974
|
-
*
|
|
975
|
-
* pool the source cannot answer for.
|
|
970
|
+
* fee; v2/v3 = SUBTRACTIVE share carved out of the displayed fee tier.
|
|
971
|
+
* Every version serves the stored on-chain value ONLY (a set 0 means the
|
|
972
|
+
* fee is not turned on — v4: no protocol fee set on the pool; v2/v3: fee
|
|
973
|
+
* switch off). UNSET when undeterminable: a pool the ingestion pipeline
|
|
974
|
+
* has no row for, or a source read that failed.
|
|
976
975
|
*
|
|
977
976
|
* @generated from field: optional uint32 protocol_fee = 2;
|
|
978
977
|
*/
|
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
|
|
@@ -1255,8 +1255,9 @@ export declare class PoolListFilter extends Message<PoolListFilter> {
|
|
|
1255
1255
|
* volume must not exceed 10,000x the pool's TVL; fails open on missing
|
|
1256
1256
|
* values), valuation trust (both tokens priced with confidence >= 0.005,
|
|
1257
1257
|
* ListTokens' exact rule; fails closed on a missing price), and discovery
|
|
1258
|
-
* (each token native, on a token list, or
|
|
1259
|
-
* ListTokens'
|
|
1258
|
+
* (each token native, on a token list, or confidence >= 0.2 WITH 1D token
|
|
1259
|
+
* volume in ListTokens' discovery band [10K, 30M] — its exact
|
|
1260
|
+
* on-list-or-earned-trust rule).
|
|
1260
1261
|
*
|
|
1261
1262
|
* @generated from field: optional bool apply_top_level_filters = 8;
|
|
1262
1263
|
*/
|