@uniswap/client-data-api 0.0.221 → 0.0.223

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.
@@ -1039,6 +1039,48 @@ TokenMultichain.fields = proto3.util.newFieldList(() => [
1039
1039
  { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1040
1040
  { no: 2, name: "addresses", kind: "map", K: 9 /* ScalarType.STRING */, V: { kind: "scalar", T: 9 /* ScalarType.STRING */ } },
1041
1041
  ]);
1042
+ /**
1043
+ * Issuer of a tokenized real-world asset; absent = not an RWA or issuer unknown.
1044
+ *
1045
+ * @generated from message data.v2.TokenIssuerInfo
1046
+ */
1047
+ export class TokenIssuerInfo extends Message {
1048
+ constructor(data) {
1049
+ super();
1050
+ /**
1051
+ * @generated from field: string id = 1;
1052
+ */
1053
+ this.id = "";
1054
+ /**
1055
+ * @generated from field: string display_name = 2;
1056
+ */
1057
+ this.displayName = "";
1058
+ /**
1059
+ * @generated from field: string logo_url = 3;
1060
+ */
1061
+ this.logoUrl = "";
1062
+ proto3.util.initPartial(data, this);
1063
+ }
1064
+ static fromBinary(bytes, options) {
1065
+ return new TokenIssuerInfo().fromBinary(bytes, options);
1066
+ }
1067
+ static fromJson(jsonValue, options) {
1068
+ return new TokenIssuerInfo().fromJson(jsonValue, options);
1069
+ }
1070
+ static fromJsonString(jsonString, options) {
1071
+ return new TokenIssuerInfo().fromJsonString(jsonString, options);
1072
+ }
1073
+ static equals(a, b) {
1074
+ return proto3.util.equals(TokenIssuerInfo, a, b);
1075
+ }
1076
+ }
1077
+ TokenIssuerInfo.runtime = proto3;
1078
+ TokenIssuerInfo.typeName = "data.v2.TokenIssuerInfo";
1079
+ TokenIssuerInfo.fields = proto3.util.newFieldList(() => [
1080
+ { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1081
+ { no: 2, name: "display_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1082
+ { no: 3, name: "logo_url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1083
+ ]);
1042
1084
  /**
1043
1085
  * @generated from message data.v2.MultichainToken
1044
1086
  */
@@ -1103,6 +1145,7 @@ MultichainToken.fields = proto3.util.newFieldList(() => [
1103
1145
  { no: 10, name: "project", kind: "message", T: TokenProject },
1104
1146
  { no: 11, name: "fdv", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
1105
1147
  { no: 12, name: "category_ids", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
1148
+ { no: 13, name: "issuer", kind: "message", T: TokenIssuerInfo, opt: true },
1106
1149
  ]);
1107
1150
  /**
1108
1151
  * @generated from message data.v2.PoolsSort
@@ -1580,6 +1623,7 @@ Token.fields = proto3.util.newFieldList(() => [
1580
1623
  { no: 11, name: "multichain", kind: "message", T: TokenMultichain, opt: true },
1581
1624
  { no: 12, name: "fdv", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
1582
1625
  { no: 13, name: "category_ids", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
1626
+ { no: 14, name: "issuer", kind: "message", T: TokenIssuerInfo, opt: true },
1583
1627
  ]);
1584
1628
  /**
1585
1629
  * A token launchpad known to the Launches surface (see the data-api
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.221",
3
+ "version": "0.0.223",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },