@uniswap/client-liquidity 1.2.2 → 1.3.1
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.
|
@@ -576,7 +576,7 @@ export declare class NewTokenConfig extends Message<NewTokenConfig> {
|
|
|
576
576
|
}
|
|
577
577
|
/**
|
|
578
578
|
* Written on-chain into the token via the factory's tokenData. The backend only
|
|
579
|
-
* carries these values; image/website
|
|
579
|
+
* carries these values; image/website verification happens async post-launch.
|
|
580
580
|
*
|
|
581
581
|
* @generated from message uniswap.liquidity.v1.TokenMetadata
|
|
582
582
|
*/
|
|
@@ -594,11 +594,13 @@ export declare class TokenMetadata extends Message<TokenMetadata> {
|
|
|
594
594
|
*/
|
|
595
595
|
image: string;
|
|
596
596
|
/**
|
|
597
|
-
*
|
|
597
|
+
* Output of XVerificationService.VerifyXCallback proving X-handle ownership
|
|
598
|
+
* for the creator wallet. Optional. Verified server-side and embedded into
|
|
599
|
+
* the factory tokenData's extraData JSON envelope.
|
|
598
600
|
*
|
|
599
|
-
* @generated from field: string
|
|
601
|
+
* @generated from field: string x_verification_token = 5;
|
|
600
602
|
*/
|
|
601
|
-
|
|
603
|
+
xVerificationToken: string;
|
|
602
604
|
constructor(data?: PartialMessage<TokenMetadata>);
|
|
603
605
|
static readonly runtime: typeof proto3;
|
|
604
606
|
static readonly typeName = "uniswap.liquidity.v1.TokenMetadata";
|
|
@@ -784,7 +784,7 @@ NewTokenConfig.fields = proto3.util.newFieldList(() => [
|
|
|
784
784
|
]);
|
|
785
785
|
/**
|
|
786
786
|
* Written on-chain into the token via the factory's tokenData. The backend only
|
|
787
|
-
* carries these values; image/website
|
|
787
|
+
* carries these values; image/website verification happens async post-launch.
|
|
788
788
|
*
|
|
789
789
|
* @generated from message uniswap.liquidity.v1.TokenMetadata
|
|
790
790
|
*/
|
|
@@ -804,11 +804,13 @@ export class TokenMetadata extends Message {
|
|
|
804
804
|
*/
|
|
805
805
|
this.image = "";
|
|
806
806
|
/**
|
|
807
|
-
*
|
|
807
|
+
* Output of XVerificationService.VerifyXCallback proving X-handle ownership
|
|
808
|
+
* for the creator wallet. Optional. Verified server-side and embedded into
|
|
809
|
+
* the factory tokenData's extraData JSON envelope.
|
|
808
810
|
*
|
|
809
|
-
* @generated from field: string
|
|
811
|
+
* @generated from field: string x_verification_token = 5;
|
|
810
812
|
*/
|
|
811
|
-
this.
|
|
813
|
+
this.xVerificationToken = "";
|
|
812
814
|
proto3.util.initPartial(data, this);
|
|
813
815
|
}
|
|
814
816
|
static fromBinary(bytes, options) {
|
|
@@ -830,7 +832,7 @@ TokenMetadata.fields = proto3.util.newFieldList(() => [
|
|
|
830
832
|
{ no: 1, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
831
833
|
{ no: 2, name: "website", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
832
834
|
{ no: 3, name: "image", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
833
|
-
{ no:
|
|
835
|
+
{ no: 5, name: "x_verification_token", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
834
836
|
]);
|
|
835
837
|
/**
|
|
836
838
|
* @generated from message uniswap.liquidity.v1.ExistingTokenConfig
|
|
@@ -122,7 +122,11 @@ export declare enum ChainId {
|
|
|
122
122
|
/**
|
|
123
123
|
* @generated from enum value: ROBINHOOD = 4663;
|
|
124
124
|
*/
|
|
125
|
-
ROBINHOOD = 4663
|
|
125
|
+
ROBINHOOD = 4663,
|
|
126
|
+
/**
|
|
127
|
+
* @generated from enum value: ARC = 5042;
|
|
128
|
+
*/
|
|
129
|
+
ARC = 5042
|
|
126
130
|
}
|
|
127
131
|
/**
|
|
128
132
|
* @generated from enum uniswap.liquidity.v1.Distributor
|
|
@@ -134,6 +134,10 @@ export var ChainId;
|
|
|
134
134
|
* @generated from enum value: ROBINHOOD = 4663;
|
|
135
135
|
*/
|
|
136
136
|
ChainId[ChainId["ROBINHOOD"] = 4663] = "ROBINHOOD";
|
|
137
|
+
/**
|
|
138
|
+
* @generated from enum value: ARC = 5042;
|
|
139
|
+
*/
|
|
140
|
+
ChainId[ChainId["ARC"] = 5042] = "ARC";
|
|
137
141
|
})(ChainId || (ChainId = {}));
|
|
138
142
|
// Retrieve enum metadata with: proto3.getEnumType(ChainId)
|
|
139
143
|
proto3.util.setEnumType(ChainId, "uniswap.liquidity.v1.ChainId", [
|
|
@@ -162,6 +166,7 @@ proto3.util.setEnumType(ChainId, "uniswap.liquidity.v1.ChainId", [
|
|
|
162
166
|
{ no: 4326, name: "MEGAETH" },
|
|
163
167
|
{ no: 4217, name: "TEMPO" },
|
|
164
168
|
{ no: 4663, name: "ROBINHOOD" },
|
|
169
|
+
{ no: 5042, name: "ARC" },
|
|
165
170
|
]);
|
|
166
171
|
/**
|
|
167
172
|
* @generated from enum uniswap.liquidity.v1.Distributor
|