@uniswap/client-data-api 0.0.97 → 0.0.98

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.
@@ -1917,6 +1917,12 @@ export declare class Rwa extends Message<Rwa> {
1917
1917
  * @generated from field: string name = 4;
1918
1918
  */
1919
1919
  name: string;
1920
+ /**
1921
+ * @generated from field: map<string, data.v1.IssuerData> issuer_data = 5;
1922
+ */
1923
+ issuerData: {
1924
+ [key: string]: IssuerData;
1925
+ };
1920
1926
  constructor(data?: PartialMessage<Rwa>);
1921
1927
  static readonly runtime: typeof proto3;
1922
1928
  static readonly typeName = "data.v1.Rwa";
@@ -1951,6 +1957,31 @@ export declare class IssuerToken extends Message<IssuerToken> {
1951
1957
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): IssuerToken;
1952
1958
  static equals(a: IssuerToken | PlainMessage<IssuerToken> | undefined, b: IssuerToken | PlainMessage<IssuerToken> | undefined): boolean;
1953
1959
  }
1960
+ /**
1961
+ * @generated from message data.v1.IssuerData
1962
+ */
1963
+ export declare class IssuerData extends Message<IssuerData> {
1964
+ /**
1965
+ * @generated from field: string name = 1;
1966
+ */
1967
+ name: string;
1968
+ /**
1969
+ * @generated from field: string symbol = 2;
1970
+ */
1971
+ symbol: string;
1972
+ /**
1973
+ * @generated from field: string logo_url = 3;
1974
+ */
1975
+ logoUrl: string;
1976
+ constructor(data?: PartialMessage<IssuerData>);
1977
+ static readonly runtime: typeof proto3;
1978
+ static readonly typeName = "data.v1.IssuerData";
1979
+ static readonly fields: FieldList;
1980
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): IssuerData;
1981
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): IssuerData;
1982
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): IssuerData;
1983
+ static equals(a: IssuerData | PlainMessage<IssuerData> | undefined, b: IssuerData | PlainMessage<IssuerData> | undefined): boolean;
1984
+ }
1954
1985
  /**
1955
1986
  * @generated from message data.v1.ListRankedRwasRequest
1956
1987
  */
@@ -2565,6 +2565,10 @@ export class Rwa extends Message {
2565
2565
  * @generated from field: string name = 4;
2566
2566
  */
2567
2567
  this.name = "";
2568
+ /**
2569
+ * @generated from field: map<string, data.v1.IssuerData> issuer_data = 5;
2570
+ */
2571
+ this.issuerData = {};
2568
2572
  proto3.util.initPartial(data, this);
2569
2573
  }
2570
2574
  static fromBinary(bytes, options) {
@@ -2587,6 +2591,7 @@ Rwa.fields = proto3.util.newFieldList(() => [
2587
2591
  { no: 2, name: "logo_url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2588
2592
  { no: 3, name: "issuer_tokens", kind: "message", T: IssuerToken, repeated: true },
2589
2593
  { no: 4, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2594
+ { no: 5, name: "issuer_data", kind: "map", K: 9 /* ScalarType.STRING */, V: { kind: "message", T: IssuerData } },
2590
2595
  ]);
2591
2596
  /**
2592
2597
  * @generated from message data.v1.IssuerToken
@@ -2628,6 +2633,46 @@ IssuerToken.fields = proto3.util.newFieldList(() => [
2628
2633
  { no: 2, name: "address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2629
2634
  { no: 3, name: "issuer", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2630
2635
  ]);
2636
+ /**
2637
+ * @generated from message data.v1.IssuerData
2638
+ */
2639
+ export class IssuerData extends Message {
2640
+ constructor(data) {
2641
+ super();
2642
+ /**
2643
+ * @generated from field: string name = 1;
2644
+ */
2645
+ this.name = "";
2646
+ /**
2647
+ * @generated from field: string symbol = 2;
2648
+ */
2649
+ this.symbol = "";
2650
+ /**
2651
+ * @generated from field: string logo_url = 3;
2652
+ */
2653
+ this.logoUrl = "";
2654
+ proto3.util.initPartial(data, this);
2655
+ }
2656
+ static fromBinary(bytes, options) {
2657
+ return new IssuerData().fromBinary(bytes, options);
2658
+ }
2659
+ static fromJson(jsonValue, options) {
2660
+ return new IssuerData().fromJson(jsonValue, options);
2661
+ }
2662
+ static fromJsonString(jsonString, options) {
2663
+ return new IssuerData().fromJsonString(jsonString, options);
2664
+ }
2665
+ static equals(a, b) {
2666
+ return proto3.util.equals(IssuerData, a, b);
2667
+ }
2668
+ }
2669
+ IssuerData.runtime = proto3;
2670
+ IssuerData.typeName = "data.v1.IssuerData";
2671
+ IssuerData.fields = proto3.util.newFieldList(() => [
2672
+ { no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2673
+ { no: 2, name: "symbol", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2674
+ { no: 3, name: "logo_url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2675
+ ]);
2631
2676
  /**
2632
2677
  * @generated from message data.v1.ListRankedRwasRequest
2633
2678
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.97",
3
+ "version": "0.0.98",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },