@uniswap/client-liquidity 1.4.32 → 1.4.33
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.
|
@@ -1264,6 +1264,10 @@ export declare class GetWalletPositionsBalanceResponse extends Message<GetWallet
|
|
|
1264
1264
|
* @generated from field: double total_rewards_usd = 3;
|
|
1265
1265
|
*/
|
|
1266
1266
|
totalRewardsUsd: number;
|
|
1267
|
+
/**
|
|
1268
|
+
* @generated from field: uint32 open_positions_count = 4;
|
|
1269
|
+
*/
|
|
1270
|
+
openPositionsCount: number;
|
|
1267
1271
|
constructor(data?: PartialMessage<GetWalletPositionsBalanceResponse>);
|
|
1268
1272
|
static readonly runtime: typeof proto3;
|
|
1269
1273
|
static readonly typeName = "uniswap.liquidity.v2.GetWalletPositionsBalanceResponse";
|
|
@@ -1326,6 +1326,10 @@ export class GetWalletPositionsBalanceResponse extends Message {
|
|
|
1326
1326
|
* @generated from field: double total_rewards_usd = 3;
|
|
1327
1327
|
*/
|
|
1328
1328
|
this.totalRewardsUsd = 0;
|
|
1329
|
+
/**
|
|
1330
|
+
* @generated from field: uint32 open_positions_count = 4;
|
|
1331
|
+
*/
|
|
1332
|
+
this.openPositionsCount = 0;
|
|
1329
1333
|
proto3.util.initPartial(data, this);
|
|
1330
1334
|
}
|
|
1331
1335
|
static fromBinary(bytes, options) {
|
|
@@ -1347,4 +1351,5 @@ GetWalletPositionsBalanceResponse.fields = proto3.util.newFieldList(() => [
|
|
|
1347
1351
|
{ no: 1, name: "total_liquidity_usd", kind: "scalar", T: 1 /* ScalarType.DOUBLE */ },
|
|
1348
1352
|
{ no: 2, name: "total_fees_usd", kind: "scalar", T: 1 /* ScalarType.DOUBLE */ },
|
|
1349
1353
|
{ no: 3, name: "total_rewards_usd", kind: "scalar", T: 1 /* ScalarType.DOUBLE */ },
|
|
1354
|
+
{ no: 4, name: "open_positions_count", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
1350
1355
|
]);
|