@uniswap/client-data-api 0.0.117 → 0.0.118
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
|
@@ -1912,6 +1912,10 @@ export declare class WalletBalance extends Message<WalletBalance> {
|
|
|
1912
1912
|
* @generated from field: data.v1.BalanceComponent earn = 5;
|
|
1913
1913
|
*/
|
|
1914
1914
|
earn?: BalanceComponent;
|
|
1915
|
+
/**
|
|
1916
|
+
* @generated from field: repeated uint32 failed_chain_ids = 6;
|
|
1917
|
+
*/
|
|
1918
|
+
failedChainIds: number[];
|
|
1915
1919
|
constructor(data?: PartialMessage<WalletBalance>);
|
|
1916
1920
|
static readonly runtime: typeof proto3;
|
|
1917
1921
|
static readonly typeName = "data.v1.WalletBalance";
|
package/dist/data/v1/api_pb.js
CHANGED
|
@@ -2559,6 +2559,10 @@ GetWalletsBalancesResponse.fields = proto3.util.newFieldList(() => [
|
|
|
2559
2559
|
export class WalletBalance extends Message {
|
|
2560
2560
|
constructor(data) {
|
|
2561
2561
|
super();
|
|
2562
|
+
/**
|
|
2563
|
+
* @generated from field: repeated uint32 failed_chain_ids = 6;
|
|
2564
|
+
*/
|
|
2565
|
+
this.failedChainIds = [];
|
|
2562
2566
|
proto3.util.initPartial(data, this);
|
|
2563
2567
|
}
|
|
2564
2568
|
static fromBinary(bytes, options) {
|
|
@@ -2582,6 +2586,7 @@ WalletBalance.fields = proto3.util.newFieldList(() => [
|
|
|
2582
2586
|
{ no: 3, name: "pools", kind: "message", T: BalanceComponent },
|
|
2583
2587
|
{ no: 4, name: "wallet_account", kind: "message", T: WalletAccount },
|
|
2584
2588
|
{ no: 5, name: "earn", kind: "message", T: BalanceComponent },
|
|
2589
|
+
{ no: 6, name: "failed_chain_ids", kind: "scalar", T: 13 /* ScalarType.UINT32 */, repeated: true },
|
|
2585
2590
|
]);
|
|
2586
2591
|
/**
|
|
2587
2592
|
* @generated from message data.v1.BalanceComponent
|