@uniswap/client-data-api 0.0.92 → 0.0.94

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.
@@ -352,6 +352,14 @@ export declare class GetPortfolioRequest extends Message<GetPortfolioRequest> {
352
352
  * @generated from field: optional bool multichain = 4;
353
353
  */
354
354
  multichain?: boolean;
355
+ /**
356
+ * When true, token metadata (name, symbol, logo, project, protection info, fees,
357
+ * safety level, spam code) is overridden with Substream-fed Aurora canonical_tokens data.
358
+ * is_bridged is not overridden (no Aurora equivalent). Defaults to false.
359
+ *
360
+ * @generated from field: optional bool use_substream_data = 5;
361
+ */
362
+ useSubstreamData?: boolean;
355
363
  constructor(data?: PartialMessage<GetPortfolioRequest>);
356
364
  static readonly runtime: typeof proto3;
357
365
  static readonly typeName = "data.v1.GetPortfolioRequest";
@@ -1869,6 +1877,10 @@ export declare class Rwa extends Message<Rwa> {
1869
1877
  * @generated from field: repeated data.v1.IssuerToken issuer_tokens = 3;
1870
1878
  */
1871
1879
  issuerTokens: IssuerToken[];
1880
+ /**
1881
+ * @generated from field: string name = 4;
1882
+ */
1883
+ name: string;
1872
1884
  constructor(data?: PartialMessage<Rwa>);
1873
1885
  static readonly runtime: typeof proto3;
1874
1886
  static readonly typeName = "data.v1.Rwa";
@@ -520,6 +520,7 @@ GetPortfolioRequest.fields = proto3.util.newFieldList(() => [
520
520
  { no: 2, name: "chain_ids", kind: "scalar", T: 13 /* ScalarType.UINT32 */, repeated: true },
521
521
  { no: 3, name: "modifier", kind: "message", T: PortfolioValueModifier, opt: true },
522
522
  { no: 4, name: "multichain", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
523
+ { no: 5, name: "use_substream_data", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
523
524
  ]);
524
525
  /**
525
526
  * @generated from message data.v1.GetPortfolioResponse
@@ -2524,6 +2525,10 @@ export class Rwa extends Message {
2524
2525
  * @generated from field: repeated data.v1.IssuerToken issuer_tokens = 3;
2525
2526
  */
2526
2527
  this.issuerTokens = [];
2528
+ /**
2529
+ * @generated from field: string name = 4;
2530
+ */
2531
+ this.name = "";
2527
2532
  proto3.util.initPartial(data, this);
2528
2533
  }
2529
2534
  static fromBinary(bytes, options) {
@@ -2545,6 +2550,7 @@ Rwa.fields = proto3.util.newFieldList(() => [
2545
2550
  { no: 1, name: "symbol", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2546
2551
  { no: 2, name: "logo_url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2547
2552
  { no: 3, name: "issuer_tokens", kind: "message", T: IssuerToken, repeated: true },
2553
+ { no: 4, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2548
2554
  ]);
2549
2555
  /**
2550
2556
  * @generated from message data.v1.IssuerToken
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.92",
3
+ "version": "0.0.94",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },