@uniswap/client-liquidity 1.4.16 → 1.4.18
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.
|
@@ -479,6 +479,34 @@ export declare class CreateAuctionRequest extends Message<CreateAuctionRequest>
|
|
|
479
479
|
* @generated from field: optional bool simulate_transaction = 7;
|
|
480
480
|
*/
|
|
481
481
|
simulateTransaction?: boolean;
|
|
482
|
+
/**
|
|
483
|
+
* Explicit creator-fee toggle for the post-graduation LP position. During
|
|
484
|
+
* rollout an absent field is treated as false — identical to today's
|
|
485
|
+
* behavior, so a client that predates the field keeps launching exactly as
|
|
486
|
+
* it does now (a silent flip could only occur if absent meant true). The
|
|
487
|
+
* field is intended to become required once apps/web and the crowd-launch
|
|
488
|
+
* client send it explicitly; it is declared optional so presence stays
|
|
489
|
+
* detectable on the wire for that flip.
|
|
490
|
+
*
|
|
491
|
+
* Unlike CreateDirectLaunch there is NO beneficiary parameter: attribution is
|
|
492
|
+
* the beneficiary vault's graffiti claim. The wallet that sends createToken is
|
|
493
|
+
* written into the token's graffiti, and post-graduation that wallet claims
|
|
494
|
+
* against the vault — the first claim mints the transferable beneficiary NFT.
|
|
495
|
+
*
|
|
496
|
+
* When true, the migrated LP position is routed to the chain's fees-ON
|
|
497
|
+
* FeeSplitter instead of a liquidity lock or pool-owner custody. Because the
|
|
498
|
+
* graffiti claim is the only attribution path, fees ON requires a new-token
|
|
499
|
+
* launch (an existing token carries no launcher graffiti, so the creator
|
|
500
|
+
* share could never be claimed), a native-ETH raise currency, and no
|
|
501
|
+
* liquidity_lock (the FeeSplitter replaces the lock; setting both is
|
|
502
|
+
* rejected). This is distinct from LiquidityLockConfig.fees_forwarder, which
|
|
503
|
+
* deploys a per-launch forwarder with a fixed fee_recipient and no vault
|
|
504
|
+
* attribution. When false, behavior is unchanged: the position goes to the
|
|
505
|
+
* pool owner or the configured liquidity_lock recipient.
|
|
506
|
+
*
|
|
507
|
+
* @generated from field: optional bool creator_fees_enabled = 8;
|
|
508
|
+
*/
|
|
509
|
+
creatorFeesEnabled?: boolean;
|
|
482
510
|
constructor(data?: PartialMessage<CreateAuctionRequest>);
|
|
483
511
|
static readonly runtime: typeof proto3;
|
|
484
512
|
static readonly typeName = "uniswap.liquidity.v1.CreateAuctionRequest";
|
|
@@ -676,6 +676,7 @@ CreateAuctionRequest.fields = proto3.util.newFieldList(() => [
|
|
|
676
676
|
{ no: 5, name: "pool", kind: "message", T: PoolConfig },
|
|
677
677
|
{ no: 6, name: "salt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
678
678
|
{ no: 7, name: "simulate_transaction", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
679
|
+
{ no: 8, name: "creator_fees_enabled", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
679
680
|
]);
|
|
680
681
|
/**
|
|
681
682
|
* @generated from message uniswap.liquidity.v1.TokenInfo
|