@uniswap/client-liquidity 1.2.2 → 1.3.0

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/x verification happen async post-launch.
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
- * Tweet id proving X-handle ownership; uint256 carried as a decimal string ("0" when absent).
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 x_proof_tweet_id = 4;
601
+ * @generated from field: string x_verification_token = 5;
600
602
  */
601
- xProofTweetId: string;
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/x verification happen async post-launch.
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
- * Tweet id proving X-handle ownership; uint256 carried as a decimal string ("0" when absent).
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 x_proof_tweet_id = 4;
811
+ * @generated from field: string x_verification_token = 5;
810
812
  */
811
- this.xProofTweetId = "";
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: 4, name: "x_proof_tweet_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-liquidity",
3
- "version": "1.2.2",
3
+ "version": "1.3.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },