@uniswap/client-data-api 0.0.80 → 0.0.81

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.
@@ -119,6 +119,33 @@ export declare class EarnVault extends Message<EarnVault> {
119
119
  * @generated from field: repeated data.v1.Token exposure_tokens = 19;
120
120
  */
121
121
  exposureTokens: Token[];
122
+ /**
123
+ * On-chain curator account (EIP-55 checksummed). Sourced from
124
+ * VaultV2.curator.address.
125
+ *
126
+ * @generated from field: string curator_address = 20;
127
+ */
128
+ curatorAddress: string;
129
+ /**
130
+ * Display name from the curator's Morpho profile, e.g. "Gauntlet".
131
+ * Empty when Morpho has no profile for this vault's curator.
132
+ *
133
+ * @generated from field: string curator_name = 21;
134
+ */
135
+ curatorName: string;
136
+ /**
137
+ * Optional avatar URL for the curator profile.
138
+ *
139
+ * @generated from field: optional string curator_image_url = 22;
140
+ */
141
+ curatorImageUrl?: string;
142
+ /**
143
+ * Vault deployment time as unix seconds. Sourced from
144
+ * VaultV2.creationTimestamp.
145
+ *
146
+ * @generated from field: optional int64 deployment_timestamp = 23;
147
+ */
148
+ deploymentTimestamp?: bigint;
122
149
  constructor(data?: PartialMessage<EarnVault>);
123
150
  static readonly runtime: typeof proto3;
124
151
  static readonly typeName = "data.v2.EarnVault";
@@ -106,6 +106,20 @@ export class EarnVault extends Message {
106
106
  * @generated from field: repeated data.v1.Token exposure_tokens = 19;
107
107
  */
108
108
  this.exposureTokens = [];
109
+ /**
110
+ * On-chain curator account (EIP-55 checksummed). Sourced from
111
+ * VaultV2.curator.address.
112
+ *
113
+ * @generated from field: string curator_address = 20;
114
+ */
115
+ this.curatorAddress = "";
116
+ /**
117
+ * Display name from the curator's Morpho profile, e.g. "Gauntlet".
118
+ * Empty when Morpho has no profile for this vault's curator.
119
+ *
120
+ * @generated from field: string curator_name = 21;
121
+ */
122
+ this.curatorName = "";
109
123
  proto3.util.initPartial(data, this);
110
124
  }
111
125
  static fromBinary(bytes, options) {
@@ -143,6 +157,10 @@ EarnVault.fields = proto3.util.newFieldList(() => [
143
157
  { no: 17, name: "management_fee", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
144
158
  { no: 18, name: "warnings", kind: "message", T: EarnVaultWarning, repeated: true },
145
159
  { no: 19, name: "exposure_tokens", kind: "message", T: Token, repeated: true },
160
+ { no: 20, name: "curator_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
161
+ { no: 21, name: "curator_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
162
+ { no: 22, name: "curator_image_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
163
+ { no: 23, name: "deployment_timestamp", kind: "scalar", T: 3 /* ScalarType.INT64 */, opt: true },
146
164
  ]);
147
165
  /**
148
166
  * @generated from message data.v2.EarnVaultWarning
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.80",
3
+ "version": "0.0.81",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },