@uniswap/client-data-api 0.0.100 → 0.0.101

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.
@@ -378,9 +378,9 @@ export declare class GetPortfolioRequest extends Message<GetPortfolioRequest> {
378
378
  */
379
379
  multichain?: boolean;
380
380
  /**
381
- * When true, token metadata (name, symbol, logo, project, protection info, fees,
382
- * safety level, spam code) is overridden with Substream-fed Aurora canonical_tokens data.
383
- * is_bridged is not overridden (no Aurora equivalent). Defaults to false.
381
+ * When true, token metadata Aurora carries directly (name, symbol, logo, project,
382
+ * protection info, fees) is overridden with Substream-fed Aurora canonical_tokens data.
383
+ * safetyLevel and spamCode are NOT overridden. Defaults to false.
384
384
  *
385
385
  * @generated from field: optional bool use_substream_data = 5;
386
386
  */
@@ -1931,6 +1931,10 @@ export declare class Rwa extends Message<Rwa> {
1931
1931
  issuerData: {
1932
1932
  [key: string]: IssuerData;
1933
1933
  };
1934
+ /**
1935
+ * @generated from field: repeated data.v1.RwaCategory categories = 6;
1936
+ */
1937
+ categories: RwaCategory[];
1934
1938
  constructor(data?: PartialMessage<Rwa>);
1935
1939
  static readonly runtime: typeof proto3;
1936
1940
  static readonly typeName = "data.v1.Rwa";
@@ -2579,6 +2579,10 @@ export class Rwa extends Message {
2579
2579
  * @generated from field: map<string, data.v1.IssuerData> issuer_data = 5;
2580
2580
  */
2581
2581
  this.issuerData = {};
2582
+ /**
2583
+ * @generated from field: repeated data.v1.RwaCategory categories = 6;
2584
+ */
2585
+ this.categories = [];
2582
2586
  proto3.util.initPartial(data, this);
2583
2587
  }
2584
2588
  static fromBinary(bytes, options) {
@@ -2602,6 +2606,7 @@ Rwa.fields = proto3.util.newFieldList(() => [
2602
2606
  { no: 3, name: "issuer_tokens", kind: "message", T: IssuerToken, repeated: true },
2603
2607
  { no: 4, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2604
2608
  { no: 5, name: "issuer_data", kind: "map", K: 9 /* ScalarType.STRING */, V: { kind: "message", T: IssuerData } },
2609
+ { no: 6, name: "categories", kind: "enum", T: proto3.getEnumType(RwaCategory), repeated: true },
2605
2610
  ]);
2606
2611
  /**
2607
2612
  * @generated from message data.v1.IssuerToken
@@ -33,6 +33,13 @@ export declare class SearchTokensRequest extends Message<SearchTokensRequest> {
33
33
  * @generated from field: bool multichain = 7;
34
34
  */
35
35
  multichain: boolean;
36
+ /**
37
+ * When true, display metadata (name, symbol, logo, project) is overridden with
38
+ * Substream-fed Aurora canonical_tokens data. Defaults to false.
39
+ *
40
+ * @generated from field: bool use_substream_data = 8;
41
+ */
42
+ useSubstreamData: boolean;
36
43
  constructor(data?: PartialMessage<SearchTokensRequest>);
37
44
  static readonly runtime: typeof proto3;
38
45
  static readonly typeName = "data.v1.SearchTokensRequest";
@@ -38,6 +38,13 @@ export class SearchTokensRequest extends Message {
38
38
  * @generated from field: bool multichain = 7;
39
39
  */
40
40
  this.multichain = false;
41
+ /**
42
+ * When true, display metadata (name, symbol, logo, project) is overridden with
43
+ * Substream-fed Aurora canonical_tokens data. Defaults to false.
44
+ *
45
+ * @generated from field: bool use_substream_data = 8;
46
+ */
47
+ this.useSubstreamData = false;
41
48
  proto3.util.initPartial(data, this);
42
49
  }
43
50
  static fromBinary(bytes, options) {
@@ -63,6 +70,7 @@ SearchTokensRequest.fields = proto3.util.newFieldList(() => [
63
70
  { no: 5, name: "size", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
64
71
  { no: 6, name: "prioritize_svm", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
65
72
  { no: 7, name: "multichain", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
73
+ { no: 8, name: "use_substream_data", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
66
74
  ]);
67
75
  /**
68
76
  * @generated from message data.v1.SearchTokensResponse
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.100",
3
+ "version": "0.0.101",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },