@uniswap/client-data-api 0.0.65 → 0.0.66

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.
@@ -810,6 +810,10 @@ export declare class ChainBalance extends Message<ChainBalance> {
810
810
  * @generated from field: double value_usd = 5;
811
811
  */
812
812
  valueUsd: number;
813
+ /**
814
+ * @generated from field: bool is_hidden = 6;
815
+ */
816
+ isHidden: boolean;
813
817
  constructor(data?: PartialMessage<ChainBalance>);
814
818
  static readonly runtime: typeof proto3;
815
819
  static readonly typeName = "data.v1.ChainBalance";
@@ -1082,6 +1082,10 @@ export class ChainBalance extends Message {
1082
1082
  * @generated from field: double value_usd = 5;
1083
1083
  */
1084
1084
  this.valueUsd = 0;
1085
+ /**
1086
+ * @generated from field: bool is_hidden = 6;
1087
+ */
1088
+ this.isHidden = false;
1085
1089
  proto3.util.initPartial(data, this);
1086
1090
  }
1087
1091
  static fromBinary(bytes, options) {
@@ -1105,6 +1109,7 @@ ChainBalance.fields = proto3.util.newFieldList(() => [
1105
1109
  { no: 3, name: "decimals", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
1106
1110
  { no: 4, name: "amount", kind: "message", T: Amount },
1107
1111
  { no: 5, name: "value_usd", kind: "scalar", T: 1 /* ScalarType.DOUBLE */ },
1112
+ { no: 6, name: "is_hidden", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1108
1113
  ]);
1109
1114
  /**
1110
1115
  * A token aggregated across multiple chains
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.65",
3
+ "version": "0.0.66",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },