@uniswap/client-liquidity 1.4.22 → 1.4.23
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.
|
@@ -512,6 +512,21 @@ export declare class CreateAuctionRequest extends Message<CreateAuctionRequest>
|
|
|
512
512
|
* @generated from field: optional bool creator_fees_enabled = 8;
|
|
513
513
|
*/
|
|
514
514
|
creatorFeesEnabled?: boolean;
|
|
515
|
+
/**
|
|
516
|
+
* Opt-in: when true the migrator's `recipient` and the auction's
|
|
517
|
+
* `tokensRecipient` are set to the burn address instead of the pool owner, so
|
|
518
|
+
* a non-graduated auction does not return the token supply to the creator.
|
|
519
|
+
* Absent/false leaves that routing unchanged. `positionRecipient` and
|
|
520
|
+
* `fundsRecipient` are unaffected.
|
|
521
|
+
*
|
|
522
|
+
* Not failure-only: `recipient` is also paid on a SUCCESSFUL migration, where
|
|
523
|
+
* it receives the unconsumed part of reserved_supply_for_lp and any raised
|
|
524
|
+
* currency the LP position did not take. Opting in burns that value on
|
|
525
|
+
* graduation too, so only set it when the product terms cover both outcomes.
|
|
526
|
+
*
|
|
527
|
+
* @generated from field: optional bool burn_unsold_on_failure = 9;
|
|
528
|
+
*/
|
|
529
|
+
burnUnsoldOnFailure?: boolean;
|
|
515
530
|
constructor(data?: PartialMessage<CreateAuctionRequest>);
|
|
516
531
|
static readonly runtime: typeof proto3;
|
|
517
532
|
static readonly typeName = "uniswap.liquidity.v1.CreateAuctionRequest";
|
|
@@ -677,6 +677,7 @@ CreateAuctionRequest.fields = proto3.util.newFieldList(() => [
|
|
|
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
679
|
{ no: 8, name: "creator_fees_enabled", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
680
|
+
{ no: 9, name: "burn_unsold_on_failure", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
680
681
|
]);
|
|
681
682
|
/**
|
|
682
683
|
* @generated from message uniswap.liquidity.v1.TokenInfo
|