@whetstone-research/doppler-sdk 1.0.8 → 1.0.10

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.
@@ -19,6 +19,8 @@ interface ChainAddresses {
19
19
  tokenFactory: Address;
20
20
  derc20V2Factory?: Address;
21
21
  derc20V2Implementation?: Address;
22
+ dopplerERC20V1Factory?: Address;
23
+ dopplerERC20V1Implementation?: Address;
22
24
  v3Initializer: Address;
23
25
  v3Quoter: Address;
24
26
  lockableV3Initializer?: Address;
@@ -39,7 +41,9 @@ interface ChainAddresses {
39
41
  poolManager: Address;
40
42
  doppler404Factory?: Address;
41
43
  v2Migrator: Address;
44
+ v2MigratorSplit?: Address;
42
45
  v4Migrator: Address;
46
+ v4MigratorSplit?: Address;
43
47
  dopplerHookMigrator?: Address;
44
48
  rehypeDopplerHookMigrator?: Address;
45
49
  v4MigratorHook?: Address;
@@ -48,6 +52,7 @@ interface ChainAddresses {
48
52
  noOpGovernanceFactory?: Address;
49
53
  launchpadGovernanceFactory?: Address;
50
54
  streamableFeesLocker?: Address;
55
+ topUpDistributor?: Address;
51
56
  universalRouter: Address;
52
57
  univ2Router02?: Address;
53
58
  permit2: Address;
@@ -80,6 +85,15 @@ interface StandardTokenConfig {
80
85
  tokenURI: string;
81
86
  yearlyMintRate?: bigint;
82
87
  }
88
+ type DopplerERC20V1OnlyTokenConfigFields = {
89
+ maxBalanceLimit?: bigint;
90
+ balanceLimitEnd?: number;
91
+ controller?: Address;
92
+ excludedFromBalanceLimit?: Address[];
93
+ };
94
+ type RequireAtLeastOne<T> = {
95
+ [K in keyof T]-?: Required<Pick<T, K>> & Partial<Omit<T, K>>;
96
+ }[keyof T];
83
97
  interface Doppler404TokenConfig {
84
98
  type: 'doppler404';
85
99
  name: string;
@@ -87,7 +101,19 @@ interface Doppler404TokenConfig {
87
101
  baseURI: string;
88
102
  unit?: bigint;
89
103
  }
90
- type TokenConfig = StandardTokenConfig | Doppler404TokenConfig;
104
+ type DopplerERC20V1TokenConfig = {
105
+ type: 'dopplerERC20V1';
106
+ name: string;
107
+ symbol: string;
108
+ tokenURI: string;
109
+ } & DopplerERC20V1OnlyTokenConfigFields;
110
+ type InferredDopplerERC20V1TokenConfig = {
111
+ type?: never;
112
+ name: string;
113
+ symbol: string;
114
+ tokenURI: string;
115
+ } & RequireAtLeastOne<DopplerERC20V1OnlyTokenConfigFields>;
116
+ type TokenConfig = StandardTokenConfig | Doppler404TokenConfig | DopplerERC20V1TokenConfig | InferredDopplerERC20V1TokenConfig;
91
117
  interface SaleConfig {
92
118
  initialSupply: bigint;
93
119
  numTokensToSell: bigint;
@@ -163,7 +189,7 @@ type NoOpEnabledChainId = (typeof NO_OP_ENABLED_CHAIN_IDS)[number];
163
189
  * Check if a chain supports no-op governance
164
190
  */
165
191
  declare function isNoOpEnabledChain(chainId: number): chainId is NoOpEnabledChainId;
166
- declare const LAUNCHPAD_ENABLED_CHAIN_IDS: readonly [8453, 143];
192
+ declare const LAUNCHPAD_ENABLED_CHAIN_IDS: readonly [1, 8453, 84532, 143];
167
193
  type LaunchpadEnabledChainId = (typeof LAUNCHPAD_ENABLED_CHAIN_IDS)[number];
168
194
  /**
169
195
  * Check if a chain supports launchpad governance
@@ -267,17 +293,35 @@ interface DopplerHookMigrationConfig {
267
293
  share: bigint;
268
294
  };
269
295
  }
270
- type MigrationConfig = {
296
+ interface ProceedsSplitConfig {
297
+ recipient: Address;
298
+ share: bigint;
299
+ }
300
+ interface StreamableFeesConfig {
301
+ lockDuration: number;
302
+ beneficiaries: BeneficiaryData[];
303
+ }
304
+ interface UniswapV2MigrationConfig {
271
305
  type: 'uniswapV2';
272
- } | {
306
+ }
307
+ interface UniswapV2SplitMigrationConfig {
308
+ type: 'uniswapV2Split';
309
+ proceedsSplit?: ProceedsSplitConfig;
310
+ }
311
+ interface UniswapV4MigrationConfig {
273
312
  type: 'uniswapV4';
274
313
  fee: number;
275
314
  tickSpacing: number;
276
- streamableFees?: {
277
- lockDuration: number;
278
- beneficiaries: BeneficiaryData[];
279
- };
280
- } | DopplerHookMigrationConfig | {
315
+ streamableFees?: StreamableFeesConfig;
316
+ }
317
+ interface UniswapV4SplitMigrationConfig {
318
+ type: 'uniswapV4Split';
319
+ fee: number;
320
+ tickSpacing: number;
321
+ streamableFees: StreamableFeesConfig;
322
+ proceedsSplit?: ProceedsSplitConfig;
323
+ }
324
+ type MigrationConfig = UniswapV2MigrationConfig | UniswapV2SplitMigrationConfig | UniswapV4MigrationConfig | UniswapV4SplitMigrationConfig | DopplerHookMigrationConfig | {
281
325
  type: 'noOp';
282
326
  };
283
327
  interface CreateStaticAuctionParams<C extends SupportedChainId = SupportedChainId> {
@@ -748,6 +792,7 @@ interface CreateParams {
748
792
  interface ModuleAddressOverrides {
749
793
  airlock?: Address;
750
794
  tokenFactory?: Address;
795
+ dopplerERC20V1Factory?: Address;
751
796
  v3Initializer?: Address;
752
797
  lockableV3Initializer?: Address;
753
798
  v4Initializer?: Address;
@@ -766,7 +811,9 @@ interface ModuleAddressOverrides {
766
811
  poolManager?: Address;
767
812
  dopplerDeployer?: Address;
768
813
  v2Migrator?: Address;
814
+ v2MigratorSplit?: Address;
769
815
  v4Migrator?: Address;
816
+ v4MigratorSplit?: Address;
770
817
  dopplerHookMigrator?: Address;
771
818
  rehypeDopplerHookMigrator?: Address;
772
819
  noOpMigrator?: Address;
@@ -783,12 +830,27 @@ declare class DopplerFactory<C extends SupportedChainId = SupportedChainId> {
783
830
  private hasCustomV2Schedules;
784
831
  private usesDerc20V2Vesting;
785
832
  private resolveVestingAllocations;
833
+ private validateDopplerERC20V1TokenFactoryData;
786
834
  private validateUint64LikeNumber;
835
+ private validateUint48LikeNumber;
836
+ private resolveDopplerERC20V1TokenFactoryData;
837
+ private isDopplerERC20V1BalanceLimitActive;
838
+ private usesDefaultDopplerERC20V1Integration;
839
+ private resolveGovernanceBalanceLimitExclusions;
840
+ private withDopplerERC20V1BalanceLimitExclusions;
841
+ private deriveCreate2Address;
842
+ private predictDopplerERC20V1TokenAddress;
843
+ private computeUniswapV2PairAddress;
844
+ private computeUniswapV3PoolAddress;
845
+ private resolveStaticV3PoolExclusion;
846
+ private resolveUniswapV2MigrationPairExclusion;
847
+ private mergeDopplerERC20V1BalanceLimitExclusions;
787
848
  private resolveV2VestingSchedules;
788
849
  private resolveStandardTokenFactoryMode;
789
850
  private assertStandardTokenFactoryCompatibility;
790
851
  private buildStandardTokenFactoryData;
791
852
  private encodeStandardTokenFactoryData;
853
+ private encodeDopplerERC20V1TokenFactoryData;
792
854
  private computeSoladyCloneInitCodeHash;
793
855
  private computeStandardTokenInitHash;
794
856
  /**
@@ -948,6 +1010,7 @@ declare class DopplerFactory<C extends SupportedChainId = SupportedChainId> {
948
1010
  private mineOpeningAuctionHookAddress;
949
1011
  private resolveCreateGasEstimate;
950
1012
  private isDoppler404Token;
1013
+ private isDopplerERC20V1Token;
951
1014
  /**
952
1015
  * Encode migration data based on the MigrationConfig
953
1016
  * This replaces the manual encoding methods from the old SDKs
@@ -961,6 +1024,8 @@ declare class DopplerFactory<C extends SupportedChainId = SupportedChainId> {
961
1024
  private normalizeRehypeFeeRoutingMode;
962
1025
  private resolveRehypeFeeDistributionInfo;
963
1026
  private validateRehypeFeeDistributionInfo;
1027
+ private validateV4StreamableFeesConfig;
1028
+ private validateProceedsSplitConfig;
964
1029
  private normalizeRehypeHookConfig;
965
1030
  private resolveMulticurveInitializerMode;
966
1031
  encodeCreateMulticurveParams(params: CreateMulticurveParams<C>): CreateParams;
@@ -2325,6 +2390,130 @@ declare class Derc20V2 extends Derc20 {
2325
2390
  }): Promise<`0x${string}`>;
2326
2391
  }
2327
2392
 
2393
+ declare class DopplerERC20V1 {
2394
+ protected publicClient: SupportedPublicClient;
2395
+ protected walletClient?: WalletClient;
2396
+ protected address: Address;
2397
+ protected get rpc(): PublicClient;
2398
+ protected static splitSignature(signature: Hex): {
2399
+ v: number;
2400
+ r: Hex;
2401
+ s: Hex;
2402
+ };
2403
+ constructor(publicClient: SupportedPublicClient, walletClient: WalletClient | undefined, address: Address);
2404
+ getName(): Promise<string>;
2405
+ getSymbol(): Promise<string>;
2406
+ getDecimals(): Promise<number>;
2407
+ getTokenURI(): Promise<string>;
2408
+ getBalanceOf(account: Address): Promise<bigint>;
2409
+ getTotalSupply(): Promise<bigint>;
2410
+ getAllowance(owner: Address, spender: Address): Promise<bigint>;
2411
+ getNonce(owner: Address): Promise<bigint>;
2412
+ getDomainSeparator(): Promise<Hex>;
2413
+ getDelegates(account: Address): Promise<Address>;
2414
+ getVotes(account: Address): Promise<bigint>;
2415
+ getPastVotes(account: Address, timepoint: bigint): Promise<bigint>;
2416
+ getVotesTotalSupply(): Promise<bigint>;
2417
+ getPastVotesTotalSupply(timepoint: bigint): Promise<bigint>;
2418
+ getClock(): Promise<number>;
2419
+ getClockMode(): Promise<string>;
2420
+ getCheckpointCount(account: Address): Promise<bigint>;
2421
+ getCheckpointAt(account: Address, index: bigint): Promise<{
2422
+ checkpointClock: number;
2423
+ checkpointValue: bigint;
2424
+ }>;
2425
+ getOwner(): Promise<Address>;
2426
+ getOwnershipHandoverExpiresAt(pendingOwner: Address): Promise<bigint>;
2427
+ getPool(): Promise<Address>;
2428
+ isPoolLocked(): Promise<boolean>;
2429
+ getVestingStart(): Promise<bigint>;
2430
+ getVestedTotalAmount(): Promise<bigint>;
2431
+ getVestingScheduleCount(): Promise<bigint>;
2432
+ getVestingSchedule(scheduleId: bigint): Promise<{
2433
+ cliffDuration: bigint;
2434
+ duration: bigint;
2435
+ }>;
2436
+ getScheduleIdsOf(beneficiary: Address): Promise<bigint[]>;
2437
+ getTotalAllocatedOf(beneficiary: Address): Promise<bigint>;
2438
+ getAvailableVestedAmountForSchedule(beneficiary: Address, scheduleId: bigint): Promise<bigint>;
2439
+ getAvailableVestedAmount(beneficiary: Address): Promise<bigint>;
2440
+ getVestingDataForSchedule(beneficiary: Address, scheduleId: bigint): Promise<{
2441
+ totalAmount: bigint;
2442
+ releasedAmount: bigint;
2443
+ }>;
2444
+ getMaxBalanceLimit(): Promise<bigint>;
2445
+ getBalanceLimitEnd(): Promise<number>;
2446
+ isBalanceLimitActive(): Promise<boolean>;
2447
+ getController(): Promise<Address>;
2448
+ isExcludedFromBalanceLimit(account: Address): Promise<boolean>;
2449
+ approve(spender: Address, value: bigint, options?: {
2450
+ gas?: bigint;
2451
+ }): Promise<`0x${string}`>;
2452
+ permit(owner: Address, spender: Address, value: bigint, deadline: bigint, signature: Hex, options?: {
2453
+ gas?: bigint;
2454
+ }): Promise<`0x${string}`>;
2455
+ permit(owner: Address, spender: Address, value: bigint, deadline: bigint, v: number, r: Hex, s: Hex, options?: {
2456
+ gas?: bigint;
2457
+ }): Promise<`0x${string}`>;
2458
+ transfer(to: Address, value: bigint, options?: {
2459
+ gas?: bigint;
2460
+ }): Promise<`0x${string}`>;
2461
+ transferFrom(from: Address, to: Address, value: bigint, options?: {
2462
+ gas?: bigint;
2463
+ }): Promise<`0x${string}`>;
2464
+ delegate(delegatee: Address, options?: {
2465
+ gas?: bigint;
2466
+ }): Promise<`0x${string}`>;
2467
+ delegateBySig(delegatee: Address, expiry: bigint, options?: {
2468
+ gas?: bigint;
2469
+ }): Promise<`0x${string}`>;
2470
+ transferOwnership(newOwner: Address, options?: {
2471
+ gas?: bigint;
2472
+ }): Promise<`0x${string}`>;
2473
+ renounceOwnership(options?: {
2474
+ gas?: bigint;
2475
+ }): Promise<`0x${string}`>;
2476
+ requestOwnershipHandover(options?: {
2477
+ gas?: bigint;
2478
+ }): Promise<`0x${string}`>;
2479
+ cancelOwnershipHandover(options?: {
2480
+ gas?: bigint;
2481
+ }): Promise<`0x${string}`>;
2482
+ completeOwnershipHandover(pendingOwner: Address, options?: {
2483
+ gas?: bigint;
2484
+ }): Promise<`0x${string}`>;
2485
+ lockPool(pool: Address, options?: {
2486
+ gas?: bigint;
2487
+ }): Promise<`0x${string}`>;
2488
+ unlockPool(options?: {
2489
+ gas?: bigint;
2490
+ }): Promise<`0x${string}`>;
2491
+ burn(amount: bigint, options?: {
2492
+ gas?: bigint;
2493
+ }): Promise<`0x${string}`>;
2494
+ release(amount: bigint, options?: {
2495
+ gas?: bigint;
2496
+ }): Promise<`0x${string}`>;
2497
+ releaseSchedule(scheduleId: bigint, amount: bigint, options?: {
2498
+ gas?: bigint;
2499
+ }): Promise<`0x${string}`>;
2500
+ releaseFor(beneficiary: Address, amount: bigint, options?: {
2501
+ gas?: bigint;
2502
+ }): Promise<`0x${string}`>;
2503
+ releaseFor(beneficiary: Address, scheduleId: bigint, amount: bigint, options?: {
2504
+ gas?: bigint;
2505
+ }): Promise<`0x${string}`>;
2506
+ disableBalanceLimit(options?: {
2507
+ gas?: bigint;
2508
+ }): Promise<`0x${string}`>;
2509
+ updateTokenURI(tokenURI: string, options?: {
2510
+ gas?: bigint;
2511
+ }): Promise<`0x${string}`>;
2512
+ private getWalletAccountAddress;
2513
+ private signTypedData;
2514
+ private write;
2515
+ }
2516
+
2328
2517
  /**
2329
2518
  * A class providing read-only access to Ethereum (ETH) token information and balances.
2330
2519
  *
@@ -2373,6 +2562,33 @@ declare class Eth {
2373
2562
  getBalanceOf(account: Address): Promise<bigint>;
2374
2563
  }
2375
2564
 
2565
+ interface TopUpParams {
2566
+ asset: Address;
2567
+ numeraire: Address;
2568
+ amount: bigint;
2569
+ }
2570
+ interface TopUpTransaction {
2571
+ to: Address;
2572
+ data: Hex;
2573
+ value?: bigint;
2574
+ }
2575
+ interface TopUpSimulationResult {
2576
+ request: Parameters<WalletClient['writeContract']>[0];
2577
+ }
2578
+ declare class TopUpDistributor {
2579
+ private publicClient;
2580
+ private walletClient?;
2581
+ private topUpDistributorAddress;
2582
+ private get rpc();
2583
+ constructor(publicClient: SupportedPublicClient, walletClient: WalletClient | undefined, topUpDistributorAddress: Address);
2584
+ getAddress(): Address;
2585
+ buildTopUpTransaction(params: TopUpParams): TopUpTransaction;
2586
+ simulateTopUp(params: TopUpParams, account?: Address | Account): Promise<TopUpSimulationResult>;
2587
+ topUp(params: TopUpParams, options?: {
2588
+ gas?: bigint;
2589
+ }): Promise<Hash>;
2590
+ }
2591
+
2376
2592
  type BuilderVestingScheduleInput = {
2377
2593
  duration?: bigint;
2378
2594
  cliffDuration?: number;
@@ -2408,21 +2624,9 @@ interface BaseAuctionBuilder<C extends SupportedChainId> {
2408
2624
  readonly chainId: C;
2409
2625
  /**
2410
2626
  * Configure the token to be created.
2411
- * Supports standard ERC20 or Doppler404 token types.
2412
- */
2413
- tokenConfig(params: {
2414
- type?: 'standard';
2415
- name: string;
2416
- symbol: string;
2417
- tokenURI: string;
2418
- yearlyMintRate?: bigint;
2419
- } | {
2420
- type: 'doppler404';
2421
- name: string;
2422
- symbol: string;
2423
- baseURI: string;
2424
- unit?: bigint;
2425
- }): this;
2627
+ * Supports standard ERC20, DopplerERC20V1, or Doppler404 token types.
2628
+ */
2629
+ tokenConfig(params: TokenConfig): this;
2426
2630
  /**
2427
2631
  * Configure the token sale parameters.
2428
2632
  * @param params.initialSupply - Total token supply to mint
@@ -2467,7 +2671,9 @@ interface BaseAuctionBuilder<C extends SupportedChainId> {
2467
2671
  withAirlock(address: Address): this;
2468
2672
  withGovernanceFactory(address: Address): this;
2469
2673
  withV2Migrator(address: Address): this;
2674
+ withV2MigratorSplit(address: Address): this;
2470
2675
  withV4Migrator(address: Address): this;
2676
+ withV4MigratorSplit(address: Address): this;
2471
2677
  withNoOpMigrator(address: Address): this;
2472
2678
  }
2473
2679
  type MarketCapPresetOverrides = Partial<Record<MulticurveMarketCapPreset, {
@@ -2493,19 +2699,7 @@ declare class StaticAuctionBuilder<C extends SupportedChainId> implements BaseAu
2493
2699
  chainId: C;
2494
2700
  constructor(chainId: C);
2495
2701
  static forChain<C extends SupportedChainId>(chainId: C): StaticAuctionBuilder<C>;
2496
- tokenConfig(params: {
2497
- type?: 'standard';
2498
- name: string;
2499
- symbol: string;
2500
- tokenURI: string;
2501
- yearlyMintRate?: bigint;
2502
- } | {
2503
- type: 'doppler404';
2504
- name: string;
2505
- symbol: string;
2506
- baseURI: string;
2507
- unit?: bigint;
2508
- }): this;
2702
+ tokenConfig(params: TokenConfig): this;
2509
2703
  saleConfig(params: {
2510
2704
  initialSupply: bigint;
2511
2705
  numTokensToSell: bigint;
@@ -2591,7 +2785,9 @@ declare class StaticAuctionBuilder<C extends SupportedChainId> implements BaseAu
2591
2785
  withV3Initializer(address: Address): this;
2592
2786
  withGovernanceFactory(address: Address): this;
2593
2787
  withV2Migrator(address: Address): this;
2788
+ withV2MigratorSplit(address: Address): this;
2594
2789
  withV4Migrator(address: Address): this;
2790
+ withV4MigratorSplit(address: Address): this;
2595
2791
  withNoOpMigrator(address: Address): this;
2596
2792
  build(): CreateStaticAuctionParams<C>;
2597
2793
  }
@@ -2614,19 +2810,7 @@ declare class DynamicAuctionBuilder<C extends SupportedChainId> implements BaseA
2614
2810
  chainId: C;
2615
2811
  constructor(chainId: C);
2616
2812
  static forChain<C extends SupportedChainId>(chainId: C): DynamicAuctionBuilder<C>;
2617
- tokenConfig(params: {
2618
- type?: 'standard';
2619
- name: string;
2620
- symbol: string;
2621
- tokenURI: string;
2622
- yearlyMintRate?: bigint;
2623
- } | {
2624
- type: 'doppler404';
2625
- name: string;
2626
- symbol: string;
2627
- baseURI: string;
2628
- unit?: bigint;
2629
- }): this;
2813
+ tokenConfig(params: TokenConfig): this;
2630
2814
  saleConfig(params: {
2631
2815
  initialSupply: bigint;
2632
2816
  numTokensToSell: bigint;
@@ -2715,7 +2899,9 @@ declare class DynamicAuctionBuilder<C extends SupportedChainId> implements BaseA
2715
2899
  withDopplerDeployer(address: Address): this;
2716
2900
  withGovernanceFactory(address: Address): this;
2717
2901
  withV2Migrator(address: Address): this;
2902
+ withV2MigratorSplit(address: Address): this;
2718
2903
  withV4Migrator(address: Address): this;
2904
+ withV4MigratorSplit(address: Address): this;
2719
2905
  withDopplerHookMigrator(address: Address): this;
2720
2906
  withRehypeDopplerHookMigrator(address: Address): this;
2721
2907
  withNoOpMigrator(address: Address): this;
@@ -2743,19 +2929,7 @@ declare class MulticurveBuilder<C extends SupportedChainId> implements BaseAucti
2743
2929
  chainId: C;
2744
2930
  constructor(chainId: C);
2745
2931
  static forChain<C extends SupportedChainId>(chainId: C): MulticurveBuilder<C>;
2746
- tokenConfig(params: {
2747
- type?: 'standard';
2748
- name: string;
2749
- symbol: string;
2750
- tokenURI: string;
2751
- yearlyMintRate?: bigint;
2752
- } | {
2753
- type: 'doppler404';
2754
- name: string;
2755
- symbol: string;
2756
- baseURI: string;
2757
- unit?: bigint;
2758
- }): this;
2932
+ tokenConfig(params: TokenConfig): this;
2759
2933
  saleConfig(params: {
2760
2934
  initialSupply: bigint;
2761
2935
  numTokensToSell: bigint;
@@ -2900,7 +3074,9 @@ declare class MulticurveBuilder<C extends SupportedChainId> implements BaseAucti
2900
3074
  withV4DecayMulticurveInitializer(address: Address): this;
2901
3075
  withGovernanceFactory(address: Address): this;
2902
3076
  withV2Migrator(address: Address): this;
3077
+ withV2MigratorSplit(address: Address): this;
2903
3078
  withV4Migrator(address: Address): this;
3079
+ withV4MigratorSplit(address: Address): this;
2904
3080
  withNoOpMigrator(address: Address): this;
2905
3081
  withDopplerHookInitializer(address: Address): this;
2906
3082
  build(): CreateMulticurveParams<C>;
@@ -2982,19 +3158,7 @@ declare class OpeningAuctionBuilder<C extends SupportedChainId> implements BaseA
2982
3158
  chainId: C;
2983
3159
  constructor(chainId: C);
2984
3160
  static forChain<C extends SupportedChainId>(chainId: C): OpeningAuctionBuilder<C>;
2985
- tokenConfig(params: {
2986
- type?: 'standard';
2987
- name: string;
2988
- symbol: string;
2989
- tokenURI: string;
2990
- yearlyMintRate?: bigint;
2991
- } | {
2992
- type: 'doppler404';
2993
- name: string;
2994
- symbol: string;
2995
- baseURI: string;
2996
- unit?: bigint;
2997
- }): this;
3161
+ tokenConfig(params: TokenConfig): this;
2998
3162
  saleConfig(params: {
2999
3163
  initialSupply: bigint;
3000
3164
  numTokensToSell: bigint;
@@ -3021,7 +3185,9 @@ declare class OpeningAuctionBuilder<C extends SupportedChainId> implements BaseA
3021
3185
  withDopplerDeployer(address: Address): this;
3022
3186
  withGovernanceFactory(address: Address): this;
3023
3187
  withV2Migrator(address: Address): this;
3188
+ withV2MigratorSplit(address: Address): this;
3024
3189
  withV4Migrator(address: Address): this;
3190
+ withV4MigratorSplit(address: Address): this;
3025
3191
  withNoOpMigrator(address: Address): this;
3026
3192
  withOpeningAuctionInitializer(address: Address): this;
3027
3193
  withOpeningAuctionPositionManager(address: Address): this;
@@ -3035,6 +3201,7 @@ declare class DopplerSDK<C extends SupportedChainId = SupportedChainId> {
3035
3201
  chainId: C;
3036
3202
  private _factory?;
3037
3203
  private _quoter?;
3204
+ private _topUpDistributor?;
3038
3205
  constructor(config: DopplerSDKConfig);
3039
3206
  /**
3040
3207
  * Get the factory instance for creating auctions
@@ -3044,6 +3211,14 @@ declare class DopplerSDK<C extends SupportedChainId = SupportedChainId> {
3044
3211
  * Get the quoter instance for price queries
3045
3212
  */
3046
3213
  get quoter(): Quoter;
3214
+ /**
3215
+ * Get the configured TopUpDistributor instance for split-migrator top-ups.
3216
+ */
3217
+ get topUpDistributor(): TopUpDistributor;
3218
+ /**
3219
+ * Get a TopUpDistributor instance using the chain default or an explicit override.
3220
+ */
3221
+ getTopUpDistributor(topUpDistributorAddress?: Address): TopUpDistributor;
3047
3222
  /**
3048
3223
  * Get a StaticAuction instance for interacting with a static auction pool
3049
3224
  * @param poolAddress The address of the Uniswap V3 pool
@@ -3105,6 +3280,11 @@ declare class DopplerSDK<C extends SupportedChainId = SupportedChainId> {
3105
3280
  * @param tokenAddress The address of the DERC20 V2 token
3106
3281
  */
3107
3282
  getDerc20V2(tokenAddress: Address): Derc20V2;
3283
+ /**
3284
+ * Get a DopplerERC20V1 token instance for schedule vesting and balance-limit controls.
3285
+ * @param tokenAddress The address of the DopplerERC20V1 token
3286
+ */
3287
+ getDopplerERC20V1(tokenAddress: Address): DopplerERC20V1;
3108
3288
  /**
3109
3289
  * Get information about a static auction pool
3110
3290
  * @param poolAddress The address of the pool
@@ -3409,7 +3589,7 @@ declare function calculateFDV(totalSupply: bigint, pricePerToken: number, ethPri
3409
3589
  */
3410
3590
  declare function estimateSlippage(amountIn: bigint, liquidity: bigint, currentTick: number, fee: number): number;
3411
3591
 
3412
- type TokenVariant = 'standard' | 'standard-v2' | 'doppler404';
3592
+ type TokenVariant = 'standard' | 'standard-v2' | 'dopplerERC20V1' | 'doppler404';
3413
3593
  interface TokenAddressHookConfig {
3414
3594
  deployer: Address;
3415
3595
  initCodeHash: Hash;
@@ -3431,6 +3611,10 @@ interface TokenAddressMiningParams {
3431
3611
  tokenData: Hex;
3432
3612
  tokenVariant?: TokenVariant;
3433
3613
  customBytecode?: Hex;
3614
+ /**
3615
+ * Implementation address for token templates deployed as Solady clones.
3616
+ * Used by `standard-v2` and `dopplerERC20V1`.
3617
+ */
3434
3618
  v2Implementation?: Address;
3435
3619
  maxIterations?: number;
3436
3620
  startSalt?: bigint;
@@ -3802,6 +3986,25 @@ declare const _default$1: "0x6101c0604052346100ab5761002761001561023e565b9897909
3802
3986
 
3803
3987
  declare const _default: "0x60a03460b257601f610b8338819003918201601f19168301916001600160401b0383118484101760b65780849260209460405283398101031260b257516001600160a01b038116810360b257608052604051610ab890816100cb823960805181818160e1015281816101b701528181610217015281816102ba0152818161034a015281816103f50152818161045b015281816104a2015281816104e90152818161054c0152818161060701526107170152f35b5f80fd5b634e487b7160e01b5f52604160045260245ffdfe60806040526004361015610011575f80fd5b5f3560e01c80631c7ccb4c146106a357806353e9c1fb146105de5780637c40f1fe1461050d5780638a2bb9e6146104c657806397fd7b421461048b5780639ec538c814610440578063c815641c146103d5578063caedab5414610309578063dacf1d2f14610246578063dc4c90d314610202578063f0928f29146101835763fa6793d51461009d575f80fd5b34610158576020366003190112610158576100b9600435610a1c565b6003810180911161016f57604051631e2eaeaf60e01b815260048101919091526020816024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa8015610164575f9061012d575b6040516001600160801b039091168152602090f35b506020813d60201161015c575b81610147602093836107c2565b810103126101585760209051610118565b5f80fd5b3d915061013a565b6040513d5f823e3d90fd5b634e487b7160e01b5f52601160045260245ffd5b346101585761019a610194366107ac565b90610a78565b604051631e2eaeaf60e01b815260048101919091526020816024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa8015610164575f9061012d576040516001600160801b039091168152602090f35b34610158575f366003190112610158576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b346101585760a0366003190112610158576024356001600160a01b03811681036101585761027261079c565b6064358060020b810361015857610305926102de926040519260843560268501526006840152600383015281525f603a600c83012091816040820152816020820152526004357f00000000000000000000000000000000000000000000000000000000000000006108fb565b604080516001600160801b0390941684526020840192909252908201529081906060820190565b0390f35b346101585760403660031901126101585761032d61032561078c565b600435610a42565b604051631e2eaeaf60e01b815260048101919091526020816024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa8015610164575f906103a2575b604080516001600160801b038316815260809290921d600f0b602083015290f35b506020813d6020116103cd575b816103bc602093836107c2565b810103126101585760409051610381565b3d91506103af565b3461015857602036600319011261015857608062ffffff806104196004357f000000000000000000000000000000000000000000000000000000000000000061097d565b9294916040519560018060a01b0316865260020b6020860152166040840152166060820152f35b3461015857602036600319011261015857604061047f6004357f0000000000000000000000000000000000000000000000000000000000000000610972565b82519182526020820152f35b34610158576103056102de61049f366107ac565b907f00000000000000000000000000000000000000000000000000000000000000006108fb565b3461015857604036600319011261015857604061047f6104e461078c565b6004357f000000000000000000000000000000000000000000000000000000000000000061087c565b346101585760403660031901126101585761052961032561078c565b604051631afeb18d60e11b81526004810191909152600360248201525f816044817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa8015610164576080915f916105bc575b50602081015190606060408201519101519060405192600180861b0381168452841d600f0b602084015260408301526060820152f35b6105d891503d805f833e6105d081836107c2565b8101906107f9565b82610586565b346101585760603660031901126101585760406004356105fc61078c565b9061060561079c565b7f0000000000000000000000000000000000000000000000000000000000000000906106318383610972565b9061063d86868661087c565b96909361065661064e82898961087c565b98909761097d565b5050905060020b9160020b82125f1461067c575050505003910382519182526020820152f35b95969593949360020b1361069457505003910361047f565b9493929094030392030361047f565b34610158576040366003190112610158576024358060010b809103610158576106cd600435610a1c565b6005810180911161016f5760405190602082019283526040820152604081526106f76060826107c2565b519020604051631e2eaeaf60e01b815260048101919091526020816024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa8015610164575f90610759575b602090604051908152f35b506020813d602011610784575b81610773602093836107c2565b81010312610158576020905161074e565b3d9150610766565b602435908160020b820361015857565b604435908160020b820361015857565b6040906003190112610158576004359060243590565b601f909101601f19168101906001600160401b038211908210176107e557604052565b634e487b7160e01b5f52604160045260245ffd5b602081830312610158578051906001600160401b03821161015857019080601f83011215610158578151916001600160401b0383116107e5578260051b906040519361084860208401866107c2565b845260208085019282010192831161015857602001905b82821061086c5750505090565b815181526020918201910161085f565b929161088791610a42565b6001810180911161016f57604051631afeb18d60e11b8152600481019190915260026024820152915f90839060449082906001600160a01b03165afa918215610164575f926108df575b506040602083015192015190565b6108f49192503d805f833e6105d081836107c2565b905f6108d1565b91610907905f92610a78565b604051631afeb18d60e11b815260048101919091526003602482015291829060449082906001600160a01b03165afa908115610164575f91610958575b506020810151916060604083015192015190565b61096c91503d805f833e6105d081836107c2565b5f610944565b919061088790610a1c565b919061098a602091610a1c565b604051631e2eaeaf60e01b8152600481019190915292839060249082906001600160a01b03165afa918215610164575f926109e8575b506001600160a01b0382169160a081901c60020b9162ffffff60b883901c81169260d01c1690565b9091506020813d602011610a14575b81610a04602093836107c2565b810103126101585751905f6109c0565b3d91506109f7565b604051602081019182526006604082015260408152610a3c6060826107c2565b51902090565b610a4b90610a1c565b6004810180911161016f5760405190602082019260020b8352604082015260408152610a3c6060826107c2565b610a8190610a1c565b6006810180911161016f576040519060208201928352604082015260408152610a3c6060826107c256fea164736f6c634300081a000a";
3804
3988
 
3989
+ declare const topUpDistributorAbi: readonly [{
3990
+ readonly type: "function";
3991
+ readonly name: "topUp";
3992
+ readonly inputs: readonly [{
3993
+ readonly name: "asset";
3994
+ readonly type: "address";
3995
+ readonly internalType: "address";
3996
+ }, {
3997
+ readonly name: "numeraire";
3998
+ readonly type: "address";
3999
+ readonly internalType: "address";
4000
+ }, {
4001
+ readonly name: "amount";
4002
+ readonly type: "uint256";
4003
+ readonly internalType: "uint256";
4004
+ }];
4005
+ readonly outputs: readonly [];
4006
+ readonly stateMutability: "payable";
4007
+ }];
3805
4008
  declare const airlockAbi: readonly [{
3806
4009
  readonly type: "constructor";
3807
4010
  readonly inputs: readonly [{
@@ -5367,6 +5570,20 @@ declare const derc20V2Abi: readonly [{
5367
5570
  readonly type: "uint256";
5368
5571
  readonly internalType: "uint256";
5369
5572
  }];
5573
+ }, {
5574
+ readonly type: "function";
5575
+ readonly name: "computeAvailableVestedAmount";
5576
+ readonly inputs: readonly [{
5577
+ readonly name: "beneficiary";
5578
+ readonly type: "address";
5579
+ readonly internalType: "address";
5580
+ }];
5581
+ readonly outputs: readonly [{
5582
+ readonly name: "";
5583
+ readonly type: "uint256";
5584
+ readonly internalType: "uint256";
5585
+ }];
5586
+ readonly stateMutability: "view";
5370
5587
  }, {
5371
5588
  readonly type: "function";
5372
5589
  readonly name: "computeAvailableVestedAmount";
@@ -5498,6 +5715,1223 @@ declare const derc20V2Abi: readonly [{
5498
5715
  }];
5499
5716
  readonly stateMutability: "view";
5500
5717
  }];
5718
+ declare const dopplerERC20V1Abi: readonly [{
5719
+ readonly type: "constructor";
5720
+ readonly inputs: readonly [];
5721
+ readonly stateMutability: "nonpayable";
5722
+ }, {
5723
+ readonly type: "function";
5724
+ readonly name: "CLOCK_MODE";
5725
+ readonly inputs: readonly [];
5726
+ readonly outputs: readonly [{
5727
+ readonly name: "";
5728
+ readonly type: "string";
5729
+ readonly internalType: "string";
5730
+ }];
5731
+ readonly stateMutability: "view";
5732
+ }, {
5733
+ readonly type: "function";
5734
+ readonly name: "DOMAIN_SEPARATOR";
5735
+ readonly inputs: readonly [];
5736
+ readonly outputs: readonly [{
5737
+ readonly name: "result";
5738
+ readonly type: "bytes32";
5739
+ readonly internalType: "bytes32";
5740
+ }];
5741
+ readonly stateMutability: "view";
5742
+ }, {
5743
+ readonly type: "function";
5744
+ readonly name: "allowance";
5745
+ readonly inputs: readonly [{
5746
+ readonly name: "owner";
5747
+ readonly type: "address";
5748
+ readonly internalType: "address";
5749
+ }, {
5750
+ readonly name: "spender";
5751
+ readonly type: "address";
5752
+ readonly internalType: "address";
5753
+ }];
5754
+ readonly outputs: readonly [{
5755
+ readonly name: "result";
5756
+ readonly type: "uint256";
5757
+ readonly internalType: "uint256";
5758
+ }];
5759
+ readonly stateMutability: "view";
5760
+ }, {
5761
+ readonly type: "function";
5762
+ readonly name: "approve";
5763
+ readonly inputs: readonly [{
5764
+ readonly name: "spender";
5765
+ readonly type: "address";
5766
+ readonly internalType: "address";
5767
+ }, {
5768
+ readonly name: "amount";
5769
+ readonly type: "uint256";
5770
+ readonly internalType: "uint256";
5771
+ }];
5772
+ readonly outputs: readonly [{
5773
+ readonly name: "";
5774
+ readonly type: "bool";
5775
+ readonly internalType: "bool";
5776
+ }];
5777
+ readonly stateMutability: "nonpayable";
5778
+ }, {
5779
+ readonly type: "function";
5780
+ readonly name: "balanceLimitEnd";
5781
+ readonly inputs: readonly [];
5782
+ readonly outputs: readonly [{
5783
+ readonly name: "";
5784
+ readonly type: "uint48";
5785
+ readonly internalType: "uint48";
5786
+ }];
5787
+ readonly stateMutability: "view";
5788
+ }, {
5789
+ readonly type: "function";
5790
+ readonly name: "balanceOf";
5791
+ readonly inputs: readonly [{
5792
+ readonly name: "owner";
5793
+ readonly type: "address";
5794
+ readonly internalType: "address";
5795
+ }];
5796
+ readonly outputs: readonly [{
5797
+ readonly name: "result";
5798
+ readonly type: "uint256";
5799
+ readonly internalType: "uint256";
5800
+ }];
5801
+ readonly stateMutability: "view";
5802
+ }, {
5803
+ readonly type: "function";
5804
+ readonly name: "burn";
5805
+ readonly inputs: readonly [{
5806
+ readonly name: "amount";
5807
+ readonly type: "uint256";
5808
+ readonly internalType: "uint256";
5809
+ }];
5810
+ readonly outputs: readonly [];
5811
+ readonly stateMutability: "nonpayable";
5812
+ }, {
5813
+ readonly type: "function";
5814
+ readonly name: "cancelOwnershipHandover";
5815
+ readonly inputs: readonly [];
5816
+ readonly outputs: readonly [];
5817
+ readonly stateMutability: "payable";
5818
+ }, {
5819
+ readonly type: "function";
5820
+ readonly name: "checkpointAt";
5821
+ readonly inputs: readonly [{
5822
+ readonly name: "account";
5823
+ readonly type: "address";
5824
+ readonly internalType: "address";
5825
+ }, {
5826
+ readonly name: "i";
5827
+ readonly type: "uint256";
5828
+ readonly internalType: "uint256";
5829
+ }];
5830
+ readonly outputs: readonly [{
5831
+ readonly name: "checkpointClock";
5832
+ readonly type: "uint48";
5833
+ readonly internalType: "uint48";
5834
+ }, {
5835
+ readonly name: "checkpointValue";
5836
+ readonly type: "uint256";
5837
+ readonly internalType: "uint256";
5838
+ }];
5839
+ readonly stateMutability: "view";
5840
+ }, {
5841
+ readonly type: "function";
5842
+ readonly name: "checkpointCount";
5843
+ readonly inputs: readonly [{
5844
+ readonly name: "account";
5845
+ readonly type: "address";
5846
+ readonly internalType: "address";
5847
+ }];
5848
+ readonly outputs: readonly [{
5849
+ readonly name: "result";
5850
+ readonly type: "uint256";
5851
+ readonly internalType: "uint256";
5852
+ }];
5853
+ readonly stateMutability: "view";
5854
+ }, {
5855
+ readonly type: "function";
5856
+ readonly name: "clock";
5857
+ readonly inputs: readonly [];
5858
+ readonly outputs: readonly [{
5859
+ readonly name: "result";
5860
+ readonly type: "uint48";
5861
+ readonly internalType: "uint48";
5862
+ }];
5863
+ readonly stateMutability: "view";
5864
+ }, {
5865
+ readonly type: "function";
5866
+ readonly name: "completeOwnershipHandover";
5867
+ readonly inputs: readonly [{
5868
+ readonly name: "pendingOwner";
5869
+ readonly type: "address";
5870
+ readonly internalType: "address";
5871
+ }];
5872
+ readonly outputs: readonly [];
5873
+ readonly stateMutability: "payable";
5874
+ }, {
5875
+ readonly type: "function";
5876
+ readonly name: "computeAvailableVestedAmount";
5877
+ readonly inputs: readonly [{
5878
+ readonly name: "beneficiary";
5879
+ readonly type: "address";
5880
+ readonly internalType: "address";
5881
+ }, {
5882
+ readonly name: "scheduleId";
5883
+ readonly type: "uint256";
5884
+ readonly internalType: "uint256";
5885
+ }];
5886
+ readonly outputs: readonly [{
5887
+ readonly name: "";
5888
+ readonly type: "uint256";
5889
+ readonly internalType: "uint256";
5890
+ }];
5891
+ readonly stateMutability: "view";
5892
+ }, {
5893
+ readonly type: "function";
5894
+ readonly name: "computeAvailableVestedAmount";
5895
+ readonly inputs: readonly [{
5896
+ readonly name: "beneficiary";
5897
+ readonly type: "address";
5898
+ readonly internalType: "address";
5899
+ }];
5900
+ readonly outputs: readonly [{
5901
+ readonly name: "total";
5902
+ readonly type: "uint256";
5903
+ readonly internalType: "uint256";
5904
+ }];
5905
+ readonly stateMutability: "view";
5906
+ }, {
5907
+ readonly type: "function";
5908
+ readonly name: "controller";
5909
+ readonly inputs: readonly [];
5910
+ readonly outputs: readonly [{
5911
+ readonly name: "";
5912
+ readonly type: "address";
5913
+ readonly internalType: "address";
5914
+ }];
5915
+ readonly stateMutability: "view";
5916
+ }, {
5917
+ readonly type: "function";
5918
+ readonly name: "decimals";
5919
+ readonly inputs: readonly [];
5920
+ readonly outputs: readonly [{
5921
+ readonly name: "";
5922
+ readonly type: "uint8";
5923
+ readonly internalType: "uint8";
5924
+ }];
5925
+ readonly stateMutability: "view";
5926
+ }, {
5927
+ readonly type: "function";
5928
+ readonly name: "delegate";
5929
+ readonly inputs: readonly [{
5930
+ readonly name: "delegatee";
5931
+ readonly type: "address";
5932
+ readonly internalType: "address";
5933
+ }];
5934
+ readonly outputs: readonly [];
5935
+ readonly stateMutability: "nonpayable";
5936
+ }, {
5937
+ readonly type: "function";
5938
+ readonly name: "delegateBySig";
5939
+ readonly inputs: readonly [{
5940
+ readonly name: "delegatee";
5941
+ readonly type: "address";
5942
+ readonly internalType: "address";
5943
+ }, {
5944
+ readonly name: "nonce";
5945
+ readonly type: "uint256";
5946
+ readonly internalType: "uint256";
5947
+ }, {
5948
+ readonly name: "expiry";
5949
+ readonly type: "uint256";
5950
+ readonly internalType: "uint256";
5951
+ }, {
5952
+ readonly name: "v";
5953
+ readonly type: "uint8";
5954
+ readonly internalType: "uint8";
5955
+ }, {
5956
+ readonly name: "r";
5957
+ readonly type: "bytes32";
5958
+ readonly internalType: "bytes32";
5959
+ }, {
5960
+ readonly name: "s";
5961
+ readonly type: "bytes32";
5962
+ readonly internalType: "bytes32";
5963
+ }];
5964
+ readonly outputs: readonly [];
5965
+ readonly stateMutability: "nonpayable";
5966
+ }, {
5967
+ readonly type: "function";
5968
+ readonly name: "delegates";
5969
+ readonly inputs: readonly [{
5970
+ readonly name: "delegator";
5971
+ readonly type: "address";
5972
+ readonly internalType: "address";
5973
+ }];
5974
+ readonly outputs: readonly [{
5975
+ readonly name: "result";
5976
+ readonly type: "address";
5977
+ readonly internalType: "address";
5978
+ }];
5979
+ readonly stateMutability: "view";
5980
+ }, {
5981
+ readonly type: "function";
5982
+ readonly name: "disableBalanceLimit";
5983
+ readonly inputs: readonly [];
5984
+ readonly outputs: readonly [];
5985
+ readonly stateMutability: "nonpayable";
5986
+ }, {
5987
+ readonly type: "function";
5988
+ readonly name: "getPastVotes";
5989
+ readonly inputs: readonly [{
5990
+ readonly name: "account";
5991
+ readonly type: "address";
5992
+ readonly internalType: "address";
5993
+ }, {
5994
+ readonly name: "timepoint";
5995
+ readonly type: "uint256";
5996
+ readonly internalType: "uint256";
5997
+ }];
5998
+ readonly outputs: readonly [{
5999
+ readonly name: "";
6000
+ readonly type: "uint256";
6001
+ readonly internalType: "uint256";
6002
+ }];
6003
+ readonly stateMutability: "view";
6004
+ }, {
6005
+ readonly type: "function";
6006
+ readonly name: "getPastVotesTotalSupply";
6007
+ readonly inputs: readonly [{
6008
+ readonly name: "timepoint";
6009
+ readonly type: "uint256";
6010
+ readonly internalType: "uint256";
6011
+ }];
6012
+ readonly outputs: readonly [{
6013
+ readonly name: "";
6014
+ readonly type: "uint256";
6015
+ readonly internalType: "uint256";
6016
+ }];
6017
+ readonly stateMutability: "view";
6018
+ }, {
6019
+ readonly type: "function";
6020
+ readonly name: "getScheduleIdsOf";
6021
+ readonly inputs: readonly [{
6022
+ readonly name: "beneficiary";
6023
+ readonly type: "address";
6024
+ readonly internalType: "address";
6025
+ }];
6026
+ readonly outputs: readonly [{
6027
+ readonly name: "";
6028
+ readonly type: "uint256[]";
6029
+ readonly internalType: "uint256[]";
6030
+ }];
6031
+ readonly stateMutability: "view";
6032
+ }, {
6033
+ readonly type: "function";
6034
+ readonly name: "getVotes";
6035
+ readonly inputs: readonly [{
6036
+ readonly name: "account";
6037
+ readonly type: "address";
6038
+ readonly internalType: "address";
6039
+ }];
6040
+ readonly outputs: readonly [{
6041
+ readonly name: "";
6042
+ readonly type: "uint256";
6043
+ readonly internalType: "uint256";
6044
+ }];
6045
+ readonly stateMutability: "view";
6046
+ }, {
6047
+ readonly type: "function";
6048
+ readonly name: "getVotesTotalSupply";
6049
+ readonly inputs: readonly [];
6050
+ readonly outputs: readonly [{
6051
+ readonly name: "";
6052
+ readonly type: "uint256";
6053
+ readonly internalType: "uint256";
6054
+ }];
6055
+ readonly stateMutability: "view";
6056
+ }, {
6057
+ readonly type: "function";
6058
+ readonly name: "initialize";
6059
+ readonly inputs: readonly [{
6060
+ readonly name: "name_";
6061
+ readonly type: "string";
6062
+ readonly internalType: "string";
6063
+ }, {
6064
+ readonly name: "symbol_";
6065
+ readonly type: "string";
6066
+ readonly internalType: "string";
6067
+ }, {
6068
+ readonly name: "initialSupply";
6069
+ readonly type: "uint256";
6070
+ readonly internalType: "uint256";
6071
+ }, {
6072
+ readonly name: "recipient";
6073
+ readonly type: "address";
6074
+ readonly internalType: "address";
6075
+ }, {
6076
+ readonly name: "owner_";
6077
+ readonly type: "address";
6078
+ readonly internalType: "address";
6079
+ }, {
6080
+ readonly name: "schedules";
6081
+ readonly type: "tuple[]";
6082
+ readonly internalType: "struct VestingSchedule[]";
6083
+ readonly components: readonly [{
6084
+ readonly name: "cliff";
6085
+ readonly type: "uint64";
6086
+ readonly internalType: "uint64";
6087
+ }, {
6088
+ readonly name: "duration";
6089
+ readonly type: "uint64";
6090
+ readonly internalType: "uint64";
6091
+ }];
6092
+ }, {
6093
+ readonly name: "beneficiaries";
6094
+ readonly type: "address[]";
6095
+ readonly internalType: "address[]";
6096
+ }, {
6097
+ readonly name: "scheduleIds";
6098
+ readonly type: "uint256[]";
6099
+ readonly internalType: "uint256[]";
6100
+ }, {
6101
+ readonly name: "amounts";
6102
+ readonly type: "uint256[]";
6103
+ readonly internalType: "uint256[]";
6104
+ }, {
6105
+ readonly name: "tokenURI_";
6106
+ readonly type: "string";
6107
+ readonly internalType: "string";
6108
+ }, {
6109
+ readonly name: "maxBalanceLimit_";
6110
+ readonly type: "uint256";
6111
+ readonly internalType: "uint256";
6112
+ }, {
6113
+ readonly name: "balanceLimitEnd_";
6114
+ readonly type: "uint48";
6115
+ readonly internalType: "uint48";
6116
+ }, {
6117
+ readonly name: "controller_";
6118
+ readonly type: "address";
6119
+ readonly internalType: "address";
6120
+ }, {
6121
+ readonly name: "excludedFromBalanceLimit";
6122
+ readonly type: "address[]";
6123
+ readonly internalType: "address[]";
6124
+ }];
6125
+ readonly outputs: readonly [];
6126
+ readonly stateMutability: "nonpayable";
6127
+ }, {
6128
+ readonly type: "function";
6129
+ readonly name: "isBalanceLimitActive";
6130
+ readonly inputs: readonly [];
6131
+ readonly outputs: readonly [{
6132
+ readonly name: "";
6133
+ readonly type: "bool";
6134
+ readonly internalType: "bool";
6135
+ }];
6136
+ readonly stateMutability: "view";
6137
+ }, {
6138
+ readonly type: "function";
6139
+ readonly name: "isExcludedFromBalanceLimit";
6140
+ readonly inputs: readonly [{
6141
+ readonly name: "account";
6142
+ readonly type: "address";
6143
+ readonly internalType: "address";
6144
+ }];
6145
+ readonly outputs: readonly [{
6146
+ readonly name: "excluded";
6147
+ readonly type: "bool";
6148
+ readonly internalType: "bool";
6149
+ }];
6150
+ readonly stateMutability: "view";
6151
+ }, {
6152
+ readonly type: "function";
6153
+ readonly name: "isPoolLocked";
6154
+ readonly inputs: readonly [];
6155
+ readonly outputs: readonly [{
6156
+ readonly name: "";
6157
+ readonly type: "bool";
6158
+ readonly internalType: "bool";
6159
+ }];
6160
+ readonly stateMutability: "view";
6161
+ }, {
6162
+ readonly type: "function";
6163
+ readonly name: "lockPool";
6164
+ readonly inputs: readonly [{
6165
+ readonly name: "pool_";
6166
+ readonly type: "address";
6167
+ readonly internalType: "address";
6168
+ }];
6169
+ readonly outputs: readonly [];
6170
+ readonly stateMutability: "nonpayable";
6171
+ }, {
6172
+ readonly type: "function";
6173
+ readonly name: "maxBalanceLimit";
6174
+ readonly inputs: readonly [];
6175
+ readonly outputs: readonly [{
6176
+ readonly name: "";
6177
+ readonly type: "uint256";
6178
+ readonly internalType: "uint256";
6179
+ }];
6180
+ readonly stateMutability: "view";
6181
+ }, {
6182
+ readonly type: "function";
6183
+ readonly name: "name";
6184
+ readonly inputs: readonly [];
6185
+ readonly outputs: readonly [{
6186
+ readonly name: "";
6187
+ readonly type: "string";
6188
+ readonly internalType: "string";
6189
+ }];
6190
+ readonly stateMutability: "view";
6191
+ }, {
6192
+ readonly type: "function";
6193
+ readonly name: "nonces";
6194
+ readonly inputs: readonly [{
6195
+ readonly name: "owner";
6196
+ readonly type: "address";
6197
+ readonly internalType: "address";
6198
+ }];
6199
+ readonly outputs: readonly [{
6200
+ readonly name: "result";
6201
+ readonly type: "uint256";
6202
+ readonly internalType: "uint256";
6203
+ }];
6204
+ readonly stateMutability: "view";
6205
+ }, {
6206
+ readonly type: "function";
6207
+ readonly name: "owner";
6208
+ readonly inputs: readonly [];
6209
+ readonly outputs: readonly [{
6210
+ readonly name: "result";
6211
+ readonly type: "address";
6212
+ readonly internalType: "address";
6213
+ }];
6214
+ readonly stateMutability: "view";
6215
+ }, {
6216
+ readonly type: "function";
6217
+ readonly name: "ownershipHandoverExpiresAt";
6218
+ readonly inputs: readonly [{
6219
+ readonly name: "pendingOwner";
6220
+ readonly type: "address";
6221
+ readonly internalType: "address";
6222
+ }];
6223
+ readonly outputs: readonly [{
6224
+ readonly name: "result";
6225
+ readonly type: "uint256";
6226
+ readonly internalType: "uint256";
6227
+ }];
6228
+ readonly stateMutability: "view";
6229
+ }, {
6230
+ readonly type: "function";
6231
+ readonly name: "permit";
6232
+ readonly inputs: readonly [{
6233
+ readonly name: "owner";
6234
+ readonly type: "address";
6235
+ readonly internalType: "address";
6236
+ }, {
6237
+ readonly name: "spender";
6238
+ readonly type: "address";
6239
+ readonly internalType: "address";
6240
+ }, {
6241
+ readonly name: "value";
6242
+ readonly type: "uint256";
6243
+ readonly internalType: "uint256";
6244
+ }, {
6245
+ readonly name: "deadline";
6246
+ readonly type: "uint256";
6247
+ readonly internalType: "uint256";
6248
+ }, {
6249
+ readonly name: "v";
6250
+ readonly type: "uint8";
6251
+ readonly internalType: "uint8";
6252
+ }, {
6253
+ readonly name: "r";
6254
+ readonly type: "bytes32";
6255
+ readonly internalType: "bytes32";
6256
+ }, {
6257
+ readonly name: "s";
6258
+ readonly type: "bytes32";
6259
+ readonly internalType: "bytes32";
6260
+ }];
6261
+ readonly outputs: readonly [];
6262
+ readonly stateMutability: "nonpayable";
6263
+ }, {
6264
+ readonly type: "function";
6265
+ readonly name: "pool";
6266
+ readonly inputs: readonly [];
6267
+ readonly outputs: readonly [{
6268
+ readonly name: "";
6269
+ readonly type: "address";
6270
+ readonly internalType: "address";
6271
+ }];
6272
+ readonly stateMutability: "view";
6273
+ }, {
6274
+ readonly type: "function";
6275
+ readonly name: "release";
6276
+ readonly inputs: readonly [{
6277
+ readonly name: "scheduleId";
6278
+ readonly type: "uint256";
6279
+ readonly internalType: "uint256";
6280
+ }, {
6281
+ readonly name: "amount";
6282
+ readonly type: "uint256";
6283
+ readonly internalType: "uint256";
6284
+ }];
6285
+ readonly outputs: readonly [];
6286
+ readonly stateMutability: "nonpayable";
6287
+ }, {
6288
+ readonly type: "function";
6289
+ readonly name: "release";
6290
+ readonly inputs: readonly [{
6291
+ readonly name: "amount";
6292
+ readonly type: "uint256";
6293
+ readonly internalType: "uint256";
6294
+ }];
6295
+ readonly outputs: readonly [];
6296
+ readonly stateMutability: "nonpayable";
6297
+ }, {
6298
+ readonly type: "function";
6299
+ readonly name: "releaseFor";
6300
+ readonly inputs: readonly [{
6301
+ readonly name: "beneficiary";
6302
+ readonly type: "address";
6303
+ readonly internalType: "address";
6304
+ }, {
6305
+ readonly name: "amount";
6306
+ readonly type: "uint256";
6307
+ readonly internalType: "uint256";
6308
+ }];
6309
+ readonly outputs: readonly [];
6310
+ readonly stateMutability: "nonpayable";
6311
+ }, {
6312
+ readonly type: "function";
6313
+ readonly name: "releaseFor";
6314
+ readonly inputs: readonly [{
6315
+ readonly name: "beneficiary";
6316
+ readonly type: "address";
6317
+ readonly internalType: "address";
6318
+ }, {
6319
+ readonly name: "scheduleId";
6320
+ readonly type: "uint256";
6321
+ readonly internalType: "uint256";
6322
+ }, {
6323
+ readonly name: "amount";
6324
+ readonly type: "uint256";
6325
+ readonly internalType: "uint256";
6326
+ }];
6327
+ readonly outputs: readonly [];
6328
+ readonly stateMutability: "nonpayable";
6329
+ }, {
6330
+ readonly type: "function";
6331
+ readonly name: "renounceOwnership";
6332
+ readonly inputs: readonly [];
6333
+ readonly outputs: readonly [];
6334
+ readonly stateMutability: "payable";
6335
+ }, {
6336
+ readonly type: "function";
6337
+ readonly name: "requestOwnershipHandover";
6338
+ readonly inputs: readonly [];
6339
+ readonly outputs: readonly [];
6340
+ readonly stateMutability: "payable";
6341
+ }, {
6342
+ readonly type: "function";
6343
+ readonly name: "symbol";
6344
+ readonly inputs: readonly [];
6345
+ readonly outputs: readonly [{
6346
+ readonly name: "";
6347
+ readonly type: "string";
6348
+ readonly internalType: "string";
6349
+ }];
6350
+ readonly stateMutability: "view";
6351
+ }, {
6352
+ readonly type: "function";
6353
+ readonly name: "tokenURI";
6354
+ readonly inputs: readonly [];
6355
+ readonly outputs: readonly [{
6356
+ readonly name: "";
6357
+ readonly type: "string";
6358
+ readonly internalType: "string";
6359
+ }];
6360
+ readonly stateMutability: "view";
6361
+ }, {
6362
+ readonly type: "function";
6363
+ readonly name: "totalAllocatedOf";
6364
+ readonly inputs: readonly [{
6365
+ readonly name: "beneficiary";
6366
+ readonly type: "address";
6367
+ readonly internalType: "address";
6368
+ }];
6369
+ readonly outputs: readonly [{
6370
+ readonly name: "";
6371
+ readonly type: "uint256";
6372
+ readonly internalType: "uint256";
6373
+ }];
6374
+ readonly stateMutability: "view";
6375
+ }, {
6376
+ readonly type: "function";
6377
+ readonly name: "totalSupply";
6378
+ readonly inputs: readonly [];
6379
+ readonly outputs: readonly [{
6380
+ readonly name: "result";
6381
+ readonly type: "uint256";
6382
+ readonly internalType: "uint256";
6383
+ }];
6384
+ readonly stateMutability: "view";
6385
+ }, {
6386
+ readonly type: "function";
6387
+ readonly name: "transfer";
6388
+ readonly inputs: readonly [{
6389
+ readonly name: "to";
6390
+ readonly type: "address";
6391
+ readonly internalType: "address";
6392
+ }, {
6393
+ readonly name: "amount";
6394
+ readonly type: "uint256";
6395
+ readonly internalType: "uint256";
6396
+ }];
6397
+ readonly outputs: readonly [{
6398
+ readonly name: "";
6399
+ readonly type: "bool";
6400
+ readonly internalType: "bool";
6401
+ }];
6402
+ readonly stateMutability: "nonpayable";
6403
+ }, {
6404
+ readonly type: "function";
6405
+ readonly name: "transferFrom";
6406
+ readonly inputs: readonly [{
6407
+ readonly name: "from";
6408
+ readonly type: "address";
6409
+ readonly internalType: "address";
6410
+ }, {
6411
+ readonly name: "to";
6412
+ readonly type: "address";
6413
+ readonly internalType: "address";
6414
+ }, {
6415
+ readonly name: "amount";
6416
+ readonly type: "uint256";
6417
+ readonly internalType: "uint256";
6418
+ }];
6419
+ readonly outputs: readonly [{
6420
+ readonly name: "";
6421
+ readonly type: "bool";
6422
+ readonly internalType: "bool";
6423
+ }];
6424
+ readonly stateMutability: "nonpayable";
6425
+ }, {
6426
+ readonly type: "function";
6427
+ readonly name: "transferOwnership";
6428
+ readonly inputs: readonly [{
6429
+ readonly name: "newOwner";
6430
+ readonly type: "address";
6431
+ readonly internalType: "address";
6432
+ }];
6433
+ readonly outputs: readonly [];
6434
+ readonly stateMutability: "payable";
6435
+ }, {
6436
+ readonly type: "function";
6437
+ readonly name: "unlockPool";
6438
+ readonly inputs: readonly [];
6439
+ readonly outputs: readonly [];
6440
+ readonly stateMutability: "nonpayable";
6441
+ }, {
6442
+ readonly type: "function";
6443
+ readonly name: "updateTokenURI";
6444
+ readonly inputs: readonly [{
6445
+ readonly name: "tokenURI_";
6446
+ readonly type: "string";
6447
+ readonly internalType: "string";
6448
+ }];
6449
+ readonly outputs: readonly [];
6450
+ readonly stateMutability: "nonpayable";
6451
+ }, {
6452
+ readonly type: "function";
6453
+ readonly name: "vestedTotalAmount";
6454
+ readonly inputs: readonly [];
6455
+ readonly outputs: readonly [{
6456
+ readonly name: "";
6457
+ readonly type: "uint256";
6458
+ readonly internalType: "uint256";
6459
+ }];
6460
+ readonly stateMutability: "view";
6461
+ }, {
6462
+ readonly type: "function";
6463
+ readonly name: "vestingOf";
6464
+ readonly inputs: readonly [{
6465
+ readonly name: "beneficiary";
6466
+ readonly type: "address";
6467
+ readonly internalType: "address";
6468
+ }, {
6469
+ readonly name: "scheduleId";
6470
+ readonly type: "uint256";
6471
+ readonly internalType: "uint256";
6472
+ }];
6473
+ readonly outputs: readonly [{
6474
+ readonly name: "totalAmount";
6475
+ readonly type: "uint256";
6476
+ readonly internalType: "uint256";
6477
+ }, {
6478
+ readonly name: "releasedAmount";
6479
+ readonly type: "uint256";
6480
+ readonly internalType: "uint256";
6481
+ }];
6482
+ readonly stateMutability: "view";
6483
+ }, {
6484
+ readonly type: "function";
6485
+ readonly name: "vestingScheduleCount";
6486
+ readonly inputs: readonly [];
6487
+ readonly outputs: readonly [{
6488
+ readonly name: "";
6489
+ readonly type: "uint256";
6490
+ readonly internalType: "uint256";
6491
+ }];
6492
+ readonly stateMutability: "view";
6493
+ }, {
6494
+ readonly type: "function";
6495
+ readonly name: "vestingSchedules";
6496
+ readonly inputs: readonly [{
6497
+ readonly name: "";
6498
+ readonly type: "uint256";
6499
+ readonly internalType: "uint256";
6500
+ }];
6501
+ readonly outputs: readonly [{
6502
+ readonly name: "cliff";
6503
+ readonly type: "uint64";
6504
+ readonly internalType: "uint64";
6505
+ }, {
6506
+ readonly name: "duration";
6507
+ readonly type: "uint64";
6508
+ readonly internalType: "uint64";
6509
+ }];
6510
+ readonly stateMutability: "view";
6511
+ }, {
6512
+ readonly type: "function";
6513
+ readonly name: "vestingStart";
6514
+ readonly inputs: readonly [];
6515
+ readonly outputs: readonly [{
6516
+ readonly name: "";
6517
+ readonly type: "uint256";
6518
+ readonly internalType: "uint256";
6519
+ }];
6520
+ readonly stateMutability: "view";
6521
+ }, {
6522
+ readonly type: "event";
6523
+ readonly name: "Approval";
6524
+ readonly inputs: readonly [{
6525
+ readonly name: "owner";
6526
+ readonly type: "address";
6527
+ readonly indexed: true;
6528
+ readonly internalType: "address";
6529
+ }, {
6530
+ readonly name: "spender";
6531
+ readonly type: "address";
6532
+ readonly indexed: true;
6533
+ readonly internalType: "address";
6534
+ }, {
6535
+ readonly name: "amount";
6536
+ readonly type: "uint256";
6537
+ readonly indexed: false;
6538
+ readonly internalType: "uint256";
6539
+ }];
6540
+ readonly anonymous: false;
6541
+ }, {
6542
+ readonly type: "event";
6543
+ readonly name: "BalanceLimitDisabled";
6544
+ readonly inputs: readonly [{
6545
+ readonly name: "expired";
6546
+ readonly type: "bool";
6547
+ readonly indexed: false;
6548
+ readonly internalType: "bool";
6549
+ }];
6550
+ readonly anonymous: false;
6551
+ }, {
6552
+ readonly type: "event";
6553
+ readonly name: "DelegateChanged";
6554
+ readonly inputs: readonly [{
6555
+ readonly name: "delegator";
6556
+ readonly type: "address";
6557
+ readonly indexed: true;
6558
+ readonly internalType: "address";
6559
+ }, {
6560
+ readonly name: "from";
6561
+ readonly type: "address";
6562
+ readonly indexed: true;
6563
+ readonly internalType: "address";
6564
+ }, {
6565
+ readonly name: "to";
6566
+ readonly type: "address";
6567
+ readonly indexed: true;
6568
+ readonly internalType: "address";
6569
+ }];
6570
+ readonly anonymous: false;
6571
+ }, {
6572
+ readonly type: "event";
6573
+ readonly name: "DelegateVotesChanged";
6574
+ readonly inputs: readonly [{
6575
+ readonly name: "delegate";
6576
+ readonly type: "address";
6577
+ readonly indexed: true;
6578
+ readonly internalType: "address";
6579
+ }, {
6580
+ readonly name: "oldValue";
6581
+ readonly type: "uint256";
6582
+ readonly indexed: false;
6583
+ readonly internalType: "uint256";
6584
+ }, {
6585
+ readonly name: "newValue";
6586
+ readonly type: "uint256";
6587
+ readonly indexed: false;
6588
+ readonly internalType: "uint256";
6589
+ }];
6590
+ readonly anonymous: false;
6591
+ }, {
6592
+ readonly type: "event";
6593
+ readonly name: "Initialized";
6594
+ readonly inputs: readonly [{
6595
+ readonly name: "version";
6596
+ readonly type: "uint64";
6597
+ readonly indexed: false;
6598
+ readonly internalType: "uint64";
6599
+ }];
6600
+ readonly anonymous: false;
6601
+ }, {
6602
+ readonly type: "event";
6603
+ readonly name: "OwnershipHandoverCanceled";
6604
+ readonly inputs: readonly [{
6605
+ readonly name: "pendingOwner";
6606
+ readonly type: "address";
6607
+ readonly indexed: true;
6608
+ readonly internalType: "address";
6609
+ }];
6610
+ readonly anonymous: false;
6611
+ }, {
6612
+ readonly type: "event";
6613
+ readonly name: "OwnershipHandoverRequested";
6614
+ readonly inputs: readonly [{
6615
+ readonly name: "pendingOwner";
6616
+ readonly type: "address";
6617
+ readonly indexed: true;
6618
+ readonly internalType: "address";
6619
+ }];
6620
+ readonly anonymous: false;
6621
+ }, {
6622
+ readonly type: "event";
6623
+ readonly name: "OwnershipTransferred";
6624
+ readonly inputs: readonly [{
6625
+ readonly name: "oldOwner";
6626
+ readonly type: "address";
6627
+ readonly indexed: true;
6628
+ readonly internalType: "address";
6629
+ }, {
6630
+ readonly name: "newOwner";
6631
+ readonly type: "address";
6632
+ readonly indexed: true;
6633
+ readonly internalType: "address";
6634
+ }];
6635
+ readonly anonymous: false;
6636
+ }, {
6637
+ readonly type: "event";
6638
+ readonly name: "TokensReleased";
6639
+ readonly inputs: readonly [{
6640
+ readonly name: "beneficiary";
6641
+ readonly type: "address";
6642
+ readonly indexed: true;
6643
+ readonly internalType: "address";
6644
+ }, {
6645
+ readonly name: "scheduleId";
6646
+ readonly type: "uint256";
6647
+ readonly indexed: true;
6648
+ readonly internalType: "uint256";
6649
+ }, {
6650
+ readonly name: "amount";
6651
+ readonly type: "uint256";
6652
+ readonly indexed: false;
6653
+ readonly internalType: "uint256";
6654
+ }];
6655
+ readonly anonymous: false;
6656
+ }, {
6657
+ readonly type: "event";
6658
+ readonly name: "Transfer";
6659
+ readonly inputs: readonly [{
6660
+ readonly name: "from";
6661
+ readonly type: "address";
6662
+ readonly indexed: true;
6663
+ readonly internalType: "address";
6664
+ }, {
6665
+ readonly name: "to";
6666
+ readonly type: "address";
6667
+ readonly indexed: true;
6668
+ readonly internalType: "address";
6669
+ }, {
6670
+ readonly name: "amount";
6671
+ readonly type: "uint256";
6672
+ readonly indexed: false;
6673
+ readonly internalType: "uint256";
6674
+ }];
6675
+ readonly anonymous: false;
6676
+ }, {
6677
+ readonly type: "event";
6678
+ readonly name: "UpdateTokenURI";
6679
+ readonly inputs: readonly [{
6680
+ readonly name: "tokenURI";
6681
+ readonly type: "string";
6682
+ readonly indexed: false;
6683
+ readonly internalType: "string";
6684
+ }];
6685
+ readonly anonymous: false;
6686
+ }, {
6687
+ readonly type: "event";
6688
+ readonly name: "VestingAllocated";
6689
+ readonly inputs: readonly [{
6690
+ readonly name: "beneficiary";
6691
+ readonly type: "address";
6692
+ readonly indexed: true;
6693
+ readonly internalType: "address";
6694
+ }, {
6695
+ readonly name: "scheduleId";
6696
+ readonly type: "uint256";
6697
+ readonly indexed: true;
6698
+ readonly internalType: "uint256";
6699
+ }, {
6700
+ readonly name: "amount";
6701
+ readonly type: "uint256";
6702
+ readonly indexed: false;
6703
+ readonly internalType: "uint256";
6704
+ }];
6705
+ readonly anonymous: false;
6706
+ }, {
6707
+ readonly type: "event";
6708
+ readonly name: "VestingScheduleCreated";
6709
+ readonly inputs: readonly [{
6710
+ readonly name: "scheduleId";
6711
+ readonly type: "uint256";
6712
+ readonly indexed: true;
6713
+ readonly internalType: "uint256";
6714
+ }, {
6715
+ readonly name: "cliff";
6716
+ readonly type: "uint64";
6717
+ readonly indexed: false;
6718
+ readonly internalType: "uint64";
6719
+ }, {
6720
+ readonly name: "duration";
6721
+ readonly type: "uint64";
6722
+ readonly indexed: false;
6723
+ readonly internalType: "uint64";
6724
+ }];
6725
+ readonly anonymous: false;
6726
+ }, {
6727
+ readonly type: "error";
6728
+ readonly name: "AllowanceOverflow";
6729
+ readonly inputs: readonly [];
6730
+ }, {
6731
+ readonly type: "error";
6732
+ readonly name: "AllowanceUnderflow";
6733
+ readonly inputs: readonly [];
6734
+ }, {
6735
+ readonly type: "error";
6736
+ readonly name: "AlreadyInitialized";
6737
+ readonly inputs: readonly [];
6738
+ }, {
6739
+ readonly type: "error";
6740
+ readonly name: "ArrayLengthsMismatch";
6741
+ readonly inputs: readonly [];
6742
+ }, {
6743
+ readonly type: "error";
6744
+ readonly name: "BalanceLimitExceeded";
6745
+ readonly inputs: readonly [{
6746
+ readonly name: "balance";
6747
+ readonly type: "uint256";
6748
+ readonly internalType: "uint256";
6749
+ }, {
6750
+ readonly name: "limit";
6751
+ readonly type: "uint256";
6752
+ readonly internalType: "uint256";
6753
+ }];
6754
+ }, {
6755
+ readonly type: "error";
6756
+ readonly name: "BalanceLimitNotActive";
6757
+ readonly inputs: readonly [];
6758
+ }, {
6759
+ readonly type: "error";
6760
+ readonly name: "ERC5805CheckpointIndexOutOfBounds";
6761
+ readonly inputs: readonly [];
6762
+ }, {
6763
+ readonly type: "error";
6764
+ readonly name: "ERC5805CheckpointValueOverflow";
6765
+ readonly inputs: readonly [];
6766
+ }, {
6767
+ readonly type: "error";
6768
+ readonly name: "ERC5805CheckpointValueUnderflow";
6769
+ readonly inputs: readonly [];
6770
+ }, {
6771
+ readonly type: "error";
6772
+ readonly name: "ERC5805DelegateInvalidSignature";
6773
+ readonly inputs: readonly [];
6774
+ }, {
6775
+ readonly type: "error";
6776
+ readonly name: "ERC5805DelegateSignatureExpired";
6777
+ readonly inputs: readonly [];
6778
+ }, {
6779
+ readonly type: "error";
6780
+ readonly name: "ERC5805FutureLookup";
6781
+ readonly inputs: readonly [];
6782
+ }, {
6783
+ readonly type: "error";
6784
+ readonly name: "InsufficientAllowance";
6785
+ readonly inputs: readonly [];
6786
+ }, {
6787
+ readonly type: "error";
6788
+ readonly name: "InsufficientBalance";
6789
+ readonly inputs: readonly [];
6790
+ }, {
6791
+ readonly type: "error";
6792
+ readonly name: "InsufficientReleasableAmount";
6793
+ readonly inputs: readonly [{
6794
+ readonly name: "available";
6795
+ readonly type: "uint256";
6796
+ readonly internalType: "uint256";
6797
+ }, {
6798
+ readonly name: "requested";
6799
+ readonly type: "uint256";
6800
+ readonly internalType: "uint256";
6801
+ }];
6802
+ }, {
6803
+ readonly type: "error";
6804
+ readonly name: "InvalidAllocation";
6805
+ readonly inputs: readonly [{
6806
+ readonly name: "index";
6807
+ readonly type: "uint256";
6808
+ readonly internalType: "uint256";
6809
+ }];
6810
+ }, {
6811
+ readonly type: "error";
6812
+ readonly name: "InvalidBalanceLimit";
6813
+ readonly inputs: readonly [{
6814
+ readonly name: "limit";
6815
+ readonly type: "uint256";
6816
+ readonly internalType: "uint256";
6817
+ }];
6818
+ }, {
6819
+ readonly type: "error";
6820
+ readonly name: "InvalidBalanceLimitTimestamp";
6821
+ readonly inputs: readonly [{
6822
+ readonly name: "specified";
6823
+ readonly type: "uint256";
6824
+ readonly internalType: "uint256";
6825
+ }, {
6826
+ readonly name: "current";
6827
+ readonly type: "uint256";
6828
+ readonly internalType: "uint256";
6829
+ }];
6830
+ }, {
6831
+ readonly type: "error";
6832
+ readonly name: "InvalidInitialization";
6833
+ readonly inputs: readonly [];
6834
+ }, {
6835
+ readonly type: "error";
6836
+ readonly name: "InvalidPermit";
6837
+ readonly inputs: readonly [];
6838
+ }, {
6839
+ readonly type: "error";
6840
+ readonly name: "InvalidSchedule";
6841
+ readonly inputs: readonly [{
6842
+ readonly name: "scheduleId";
6843
+ readonly type: "uint256";
6844
+ readonly internalType: "uint256";
6845
+ }];
6846
+ }, {
6847
+ readonly type: "error";
6848
+ readonly name: "MaxPreMintPerAddressExceeded";
6849
+ readonly inputs: readonly [{
6850
+ readonly name: "amount";
6851
+ readonly type: "uint256";
6852
+ readonly internalType: "uint256";
6853
+ }, {
6854
+ readonly name: "limit";
6855
+ readonly type: "uint256";
6856
+ readonly internalType: "uint256";
6857
+ }];
6858
+ }, {
6859
+ readonly type: "error";
6860
+ readonly name: "MaxTotalPreMintExceeded";
6861
+ readonly inputs: readonly [{
6862
+ readonly name: "amount";
6863
+ readonly type: "uint256";
6864
+ readonly internalType: "uint256";
6865
+ }, {
6866
+ readonly name: "limit";
6867
+ readonly type: "uint256";
6868
+ readonly internalType: "uint256";
6869
+ }];
6870
+ }, {
6871
+ readonly type: "error";
6872
+ readonly name: "MaxTotalVestedExceeded";
6873
+ readonly inputs: readonly [{
6874
+ readonly name: "amount";
6875
+ readonly type: "uint256";
6876
+ readonly internalType: "uint256";
6877
+ }, {
6878
+ readonly name: "limit";
6879
+ readonly type: "uint256";
6880
+ readonly internalType: "uint256";
6881
+ }];
6882
+ }, {
6883
+ readonly type: "error";
6884
+ readonly name: "NewOwnerIsZeroAddress";
6885
+ readonly inputs: readonly [];
6886
+ }, {
6887
+ readonly type: "error";
6888
+ readonly name: "NoHandoverRequest";
6889
+ readonly inputs: readonly [];
6890
+ }, {
6891
+ readonly type: "error";
6892
+ readonly name: "NoReleasableAmount";
6893
+ readonly inputs: readonly [];
6894
+ }, {
6895
+ readonly type: "error";
6896
+ readonly name: "NotInitializing";
6897
+ readonly inputs: readonly [];
6898
+ }, {
6899
+ readonly type: "error";
6900
+ readonly name: "Permit2AllowanceIsFixedAtInfinity";
6901
+ readonly inputs: readonly [];
6902
+ }, {
6903
+ readonly type: "error";
6904
+ readonly name: "PermitExpired";
6905
+ readonly inputs: readonly [];
6906
+ }, {
6907
+ readonly type: "error";
6908
+ readonly name: "PoolAlreadyLocked";
6909
+ readonly inputs: readonly [];
6910
+ }, {
6911
+ readonly type: "error";
6912
+ readonly name: "PoolAlreadyUnlocked";
6913
+ readonly inputs: readonly [];
6914
+ }, {
6915
+ readonly type: "error";
6916
+ readonly name: "PoolLocked";
6917
+ readonly inputs: readonly [];
6918
+ }, {
6919
+ readonly type: "error";
6920
+ readonly name: "TotalSupplyOverflow";
6921
+ readonly inputs: readonly [];
6922
+ }, {
6923
+ readonly type: "error";
6924
+ readonly name: "Unauthorized";
6925
+ readonly inputs: readonly [];
6926
+ }, {
6927
+ readonly type: "error";
6928
+ readonly name: "UnknownScheduleId";
6929
+ readonly inputs: readonly [{
6930
+ readonly name: "scheduleId";
6931
+ readonly type: "uint256";
6932
+ readonly internalType: "uint256";
6933
+ }];
6934
+ }];
5501
6935
  declare const uniswapV4InitializerAbi: readonly [{
5502
6936
  readonly type: "function";
5503
6937
  readonly name: "encodePoolInitializerData";
@@ -9177,4 +10611,4 @@ declare const rehypeDopplerHookMigratorAbi: readonly [{
9177
10611
 
9178
10612
  declare const VERSION = "1.0.0";
9179
10613
 
9180
- export { ADDRESSES, BASIS_POINTS, type BaseAuctionBuilder, type BeneficiaryData, CHAIN_IDS, type ChainAddresses, type CreateDynamicAuctionParams, type CreateMulticurveParams, type CreateOpeningAuctionParams, type CreateParams, type CreateStaticAuctionParams, DAY_SECONDS, DEAD_ADDRESS, DECAY_MAX_START_FEE, DEFAULT_AIRLOCK_BENEFICIARY_SHARES, DEFAULT_AUCTION_DURATION, DEFAULT_EPOCH_LENGTH, DEFAULT_LOCK_DURATION, DEFAULT_MULTICURVE_LOWER_TICKS, DEFAULT_MULTICURVE_MAX_SUPPLY_SHARES, DEFAULT_MULTICURVE_NUM_POSITIONS, DEFAULT_MULTICURVE_UPPER_TICKS, DEFAULT_OPENING_AUCTION_DURATION, DEFAULT_OPENING_AUCTION_FEE, DEFAULT_OPENING_AUCTION_INCENTIVE_SHARE_BPS, DEFAULT_OPENING_AUCTION_MIN_ACCEPTABLE_TICK_TOKEN0, DEFAULT_OPENING_AUCTION_MIN_ACCEPTABLE_TICK_TOKEN1, DEFAULT_OPENING_AUCTION_MIN_LIQUIDITY, DEFAULT_OPENING_AUCTION_SHARE_TO_AUCTION_BPS, DEFAULT_OPENING_DOPPLER_DURATION, DEFAULT_OPENING_DOPPLER_EPOCH_LENGTH, DEFAULT_OPENING_DOPPLER_FEE, DEFAULT_OPENING_DOPPLER_NUM_PD_SLUGS, DEFAULT_OPENING_DOPPLER_TICK_SPACING, DEFAULT_PD_SLUGS, DEFAULT_V3_END_TICK, DEFAULT_V3_FEE, DEFAULT_V3_INITIAL_PROPOSAL_THRESHOLD, DEFAULT_V3_INITIAL_SUPPLY, DEFAULT_V3_INITIAL_VOTING_DELAY, DEFAULT_V3_INITIAL_VOTING_PERIOD, DEFAULT_V3_MAX_SHARE_TO_BE_SOLD, DEFAULT_V3_NUM_POSITIONS, DEFAULT_V3_NUM_TOKENS_TO_SELL, DEFAULT_V3_PRE_MINT, DEFAULT_V3_START_TICK, DEFAULT_V3_VESTING_DURATION, DEFAULT_V3_YEARLY_MINT_RATE, DEFAULT_V4_INITIAL_PROPOSAL_THRESHOLD, DEFAULT_V4_INITIAL_VOTING_DELAY, DEFAULT_V4_INITIAL_VOTING_PERIOD, DEFAULT_V4_YEARLY_MINT_RATE, _default$1 as DERC2080Bytecode, _default$2 as DERC20Bytecode, DOPPLER_FLAGS, DOPPLER_MAX_TICK_SPACING, DYNAMIC_FEE_FLAG, Derc20, Derc20V2, _default$5 as DopplerBytecode, _default$4 as DopplerDN404Bytecode, DopplerFactory, type DopplerHookMigrationConfig, DopplerSDK, type DopplerSDKConfig, DynamicAuction, DynamicAuctionBuilder, type DynamicAuctionConfig, type DynamicAuctionMarketCapConfig, type DynamicMarketCapRange, Eth, FEE_AMOUNT_MASK, FEE_TIERS, FLAG_MASK, type FeeTier, type GovernanceLaunchpad, type GovernanceOption, type HookInfo, INT24_MAX, INT24_MIN, LAUNCHPAD_ENABLED_CHAIN_IDS, type LaunchpadEnabledChainId, type LockablePoolState, LockablePoolStatus, type LockableV3InitializerParams, MAX_SQRT_RATIO, MAX_TICK, MIN_SQRT_RATIO, MIN_TICK, type MarketCapConfig, type MarketCapRange, type MarketCapValidationResult, type MigrationConfig, type MigrationEncoder, type ModuleAddressOverrides, MulticurveBuilder, type MulticurveBundleExactInResult, type MulticurveBundleExactOutResult, type MulticurveDecayFeeSchedule, type MulticurveInitializerConfig, type MulticurveMarketCapCurvesConfig, type MulticurveMarketCapPreset, type MulticurveMarketCapRangeCurve, MulticurvePool, type MulticurvePoolState, NO_OP_ENABLED_CHAIN_IDS, type NoOpEnabledChainId, OPENING_AUCTION_FLAGS, OPENING_AUCTION_PHASE_ACTIVE, OPENING_AUCTION_PHASE_CLOSED, OPENING_AUCTION_PHASE_NOT_STARTED, OPENING_AUCTION_PHASE_SETTLED, OPENING_AUCTION_STATUS_ACTIVE, OPENING_AUCTION_STATUS_DOPPLER_ACTIVE, OPENING_AUCTION_STATUS_EXITED, OPENING_AUCTION_STATUS_UNINITIALIZED, OpeningAuction, type OpeningAuctionAuctionSettledEvent, type OpeningAuctionBidArgs, type OpeningAuctionBidConstraints, type OpeningAuctionBidLookupArgs, OpeningAuctionBidManager, type OpeningAuctionBidManagerConfig, type OpeningAuctionBidPlacedEvent, type OpeningAuctionBidPositionInfo, type OpeningAuctionBidQuote, type OpeningAuctionBidSimulationResult, type OpeningAuctionBidStatus, type OpeningAuctionBidValidationResult, type OpeningAuctionBidWithdrawnEvent, OpeningAuctionBuilder, _default$3 as OpeningAuctionBytecode, type OpeningAuctionClaimAllIncentivesPreview, type OpeningAuctionClaimAllIncentivesResult, type OpeningAuctionClaimIncentivesSimulationResult, type OpeningAuctionCompleteResult, type OpeningAuctionConfig, type OpeningAuctionCreateResult, type OpeningAuctionDopplerConfig, type OpeningAuctionEstimatedClearingTickUpdatedEvent, type OpeningAuctionIncentiveData, type OpeningAuctionIncentivesClaimedEvent, OpeningAuctionLifecycle, type OpeningAuctionModifyLiquidityParams, type OpeningAuctionModifyLiquiditySimulationResult, type OpeningAuctionModuleAddressOverrides, type OpeningAuctionMoveBidArgs, type OpeningAuctionMoveBidResult, type OpeningAuctionMoveBidSimulationResult, type OpeningAuctionOwnerBidInfo, type OpeningAuctionOwnerBidStatus, OpeningAuctionPhase, type OpeningAuctionPhaseChangedEvent, type OpeningAuctionPosition, OpeningAuctionPositionManager, type OpeningAuctionQuoteFromTokenAmountArgs, type OpeningAuctionQuoteFromTokenAmountResult, type OpeningAuctionSettlementData, type OpeningAuctionState, OpeningAuctionStatus, type OpeningAuctionWatchBidPlacedOptions, type OpeningAuctionWatchBidStatusOptions, type OpeningAuctionWatchBidWithdrawnOptions, type OpeningAuctionWatchEstimatedClearingTickOptions, type OpeningAuctionWatchIncentivesClaimedOptions, type OpeningAuctionWatchPhaseChangeOptions, type OpeningAuctionWatchSettlementOptions, type OpeningAuctionWithdrawFullBidArgs, type OpeningAuctionWithdrawFullBidResult, type OpeningAuctionWithdrawFullBidSimulationResult, type PoolInfo, Q96, type QuoteResult, Quoter, RehypeDopplerHook, type RehypeDopplerHookConfig, RehypeDopplerHookMigrator, type RehypeDopplerHookMigratorConfig, type RehypeFeeDistributionInfo, RehypeFeeRoutingMode, type ResolvedOpeningAuctionDopplerConfig, SECONDS_PER_DAY, SECONDS_PER_YEAR, SUPPORTED_CHAIN_IDS, type SaleConfig, _default as StateViewBytecode, StaticAuction, StaticAuctionBuilder, type StaticAuctionMarketCapConfig, type StaticPoolConfig, type SupportedChain, type SupportedChainId, type SupportedChainKey, type SupportedPublicClient, TICK_SPACINGS, type TokenAddressHookConfig, type TokenAddressMiningParams, type TokenAddressMiningResult, type TokenConfig, type TokenVariant, V3_FEE_TIERS, type V4PoolKey, V4_MAX_FEE, VALID_FEE_TIERS, VERSION, type VestingAllocationConfig, type VestingConfig, type VestingScheduleConfig, WAD, ZERO_ADDRESS, airlockAbi, applyTickOffsets, bundlerAbi, calculateFDV, calculateGamma, calculateMarketCap, calculateTickRange, calculateTokensToSell, computeOptimalGamma, computePoolId, createAirlockBeneficiary, decayMulticurveInitializerHookAbi, decodeBalanceDelta, derc20Abi, derc20V2Abi, dopplerHookAbi, dopplerHookInitializerAbi, dopplerLensAbi, encodeRehypeDopplerHookMigratorCalldata, estimatePriceAtEpoch, estimateSlippage, formatTickAsPrice, getAddresses, getAirlockBeneficiary, getAirlockOwner, getAmount0ForLiquidity, getAmount1ForLiquidity, getLiquidityForAmount0, getLiquidityForAmount1, getMaxTickRounded, getNearestUsableTick, getSqrtRatioAtTick, getTickAtSqrtRatio, isLaunchpadEnabledChain, isNoOpEnabledChain, isSupportedChainId, isToken0Expected, isToken1, lockableUniswapV3InitializerAbi, marketCapToTickForMulticurve, marketCapToTicksForDynamicAuction, marketCapToTicksForMulticurve, marketCapToTicksForStaticAuction, marketCapToTokenPrice, mineTokenAddress, normalizePoolKey, openingAuctionAbi, openingAuctionInitializerAbi, openingAuctionPositionManagerAbi, poolManagerAbi, priceToSqrtPriceX96, priceToTick, quoterV2Abi, ratioToTick, rehypeDopplerHookAbi, rehypeDopplerHookMigratorAbi, resolveGasEstimate, sqrtPriceX96ToPrice, streamableFeesLockerAbi, tickToMarketCap, tickToPrice, tokenPriceToRatio, uniswapV2Router02Abi, uniswapV3InitializerAbi, uniswapV3PoolAbi, uniswapV4InitializerAbi, v2MigratorAbi, v3MigratorAbi, v4MigratorAbi, v4MulticurveInitializerAbi, v4MulticurveMigratorAbi, v4QuoterAbi, validateMarketCapParameters, weth9Abi };
10614
+ export { ADDRESSES, BASIS_POINTS, type BaseAuctionBuilder, type BeneficiaryData, CHAIN_IDS, type ChainAddresses, type CreateDynamicAuctionParams, type CreateMulticurveParams, type CreateOpeningAuctionParams, type CreateParams, type CreateStaticAuctionParams, DAY_SECONDS, DEAD_ADDRESS, DECAY_MAX_START_FEE, DEFAULT_AIRLOCK_BENEFICIARY_SHARES, DEFAULT_AUCTION_DURATION, DEFAULT_EPOCH_LENGTH, DEFAULT_LOCK_DURATION, DEFAULT_MULTICURVE_LOWER_TICKS, DEFAULT_MULTICURVE_MAX_SUPPLY_SHARES, DEFAULT_MULTICURVE_NUM_POSITIONS, DEFAULT_MULTICURVE_UPPER_TICKS, DEFAULT_OPENING_AUCTION_DURATION, DEFAULT_OPENING_AUCTION_FEE, DEFAULT_OPENING_AUCTION_INCENTIVE_SHARE_BPS, DEFAULT_OPENING_AUCTION_MIN_ACCEPTABLE_TICK_TOKEN0, DEFAULT_OPENING_AUCTION_MIN_ACCEPTABLE_TICK_TOKEN1, DEFAULT_OPENING_AUCTION_MIN_LIQUIDITY, DEFAULT_OPENING_AUCTION_SHARE_TO_AUCTION_BPS, DEFAULT_OPENING_DOPPLER_DURATION, DEFAULT_OPENING_DOPPLER_EPOCH_LENGTH, DEFAULT_OPENING_DOPPLER_FEE, DEFAULT_OPENING_DOPPLER_NUM_PD_SLUGS, DEFAULT_OPENING_DOPPLER_TICK_SPACING, DEFAULT_PD_SLUGS, DEFAULT_V3_END_TICK, DEFAULT_V3_FEE, DEFAULT_V3_INITIAL_PROPOSAL_THRESHOLD, DEFAULT_V3_INITIAL_SUPPLY, DEFAULT_V3_INITIAL_VOTING_DELAY, DEFAULT_V3_INITIAL_VOTING_PERIOD, DEFAULT_V3_MAX_SHARE_TO_BE_SOLD, DEFAULT_V3_NUM_POSITIONS, DEFAULT_V3_NUM_TOKENS_TO_SELL, DEFAULT_V3_PRE_MINT, DEFAULT_V3_START_TICK, DEFAULT_V3_VESTING_DURATION, DEFAULT_V3_YEARLY_MINT_RATE, DEFAULT_V4_INITIAL_PROPOSAL_THRESHOLD, DEFAULT_V4_INITIAL_VOTING_DELAY, DEFAULT_V4_INITIAL_VOTING_PERIOD, DEFAULT_V4_YEARLY_MINT_RATE, _default$1 as DERC2080Bytecode, _default$2 as DERC20Bytecode, DOPPLER_FLAGS, DOPPLER_MAX_TICK_SPACING, DYNAMIC_FEE_FLAG, Derc20, Derc20V2, _default$5 as DopplerBytecode, _default$4 as DopplerDN404Bytecode, DopplerERC20V1, type DopplerERC20V1TokenConfig, DopplerFactory, type DopplerHookMigrationConfig, DopplerSDK, type DopplerSDKConfig, DynamicAuction, DynamicAuctionBuilder, type DynamicAuctionConfig, type DynamicAuctionMarketCapConfig, type DynamicMarketCapRange, Eth, FEE_AMOUNT_MASK, FEE_TIERS, FLAG_MASK, type FeeTier, type GovernanceLaunchpad, type GovernanceOption, type HookInfo, INT24_MAX, INT24_MIN, LAUNCHPAD_ENABLED_CHAIN_IDS, type LaunchpadEnabledChainId, type LockablePoolState, LockablePoolStatus, type LockableV3InitializerParams, MAX_SQRT_RATIO, MAX_TICK, MIN_SQRT_RATIO, MIN_TICK, type MarketCapConfig, type MarketCapRange, type MarketCapValidationResult, type MigrationConfig, type MigrationEncoder, type ModuleAddressOverrides, MulticurveBuilder, type MulticurveBundleExactInResult, type MulticurveBundleExactOutResult, type MulticurveDecayFeeSchedule, type MulticurveInitializerConfig, type MulticurveMarketCapCurvesConfig, type MulticurveMarketCapPreset, type MulticurveMarketCapRangeCurve, MulticurvePool, type MulticurvePoolState, NO_OP_ENABLED_CHAIN_IDS, type NoOpEnabledChainId, OPENING_AUCTION_FLAGS, OPENING_AUCTION_PHASE_ACTIVE, OPENING_AUCTION_PHASE_CLOSED, OPENING_AUCTION_PHASE_NOT_STARTED, OPENING_AUCTION_PHASE_SETTLED, OPENING_AUCTION_STATUS_ACTIVE, OPENING_AUCTION_STATUS_DOPPLER_ACTIVE, OPENING_AUCTION_STATUS_EXITED, OPENING_AUCTION_STATUS_UNINITIALIZED, OpeningAuction, type OpeningAuctionAuctionSettledEvent, type OpeningAuctionBidArgs, type OpeningAuctionBidConstraints, type OpeningAuctionBidLookupArgs, OpeningAuctionBidManager, type OpeningAuctionBidManagerConfig, type OpeningAuctionBidPlacedEvent, type OpeningAuctionBidPositionInfo, type OpeningAuctionBidQuote, type OpeningAuctionBidSimulationResult, type OpeningAuctionBidStatus, type OpeningAuctionBidValidationResult, type OpeningAuctionBidWithdrawnEvent, OpeningAuctionBuilder, _default$3 as OpeningAuctionBytecode, type OpeningAuctionClaimAllIncentivesPreview, type OpeningAuctionClaimAllIncentivesResult, type OpeningAuctionClaimIncentivesSimulationResult, type OpeningAuctionCompleteResult, type OpeningAuctionConfig, type OpeningAuctionCreateResult, type OpeningAuctionDopplerConfig, type OpeningAuctionEstimatedClearingTickUpdatedEvent, type OpeningAuctionIncentiveData, type OpeningAuctionIncentivesClaimedEvent, OpeningAuctionLifecycle, type OpeningAuctionModifyLiquidityParams, type OpeningAuctionModifyLiquiditySimulationResult, type OpeningAuctionModuleAddressOverrides, type OpeningAuctionMoveBidArgs, type OpeningAuctionMoveBidResult, type OpeningAuctionMoveBidSimulationResult, type OpeningAuctionOwnerBidInfo, type OpeningAuctionOwnerBidStatus, OpeningAuctionPhase, type OpeningAuctionPhaseChangedEvent, type OpeningAuctionPosition, OpeningAuctionPositionManager, type OpeningAuctionQuoteFromTokenAmountArgs, type OpeningAuctionQuoteFromTokenAmountResult, type OpeningAuctionSettlementData, type OpeningAuctionState, OpeningAuctionStatus, type OpeningAuctionWatchBidPlacedOptions, type OpeningAuctionWatchBidStatusOptions, type OpeningAuctionWatchBidWithdrawnOptions, type OpeningAuctionWatchEstimatedClearingTickOptions, type OpeningAuctionWatchIncentivesClaimedOptions, type OpeningAuctionWatchPhaseChangeOptions, type OpeningAuctionWatchSettlementOptions, type OpeningAuctionWithdrawFullBidArgs, type OpeningAuctionWithdrawFullBidResult, type OpeningAuctionWithdrawFullBidSimulationResult, type PoolInfo, type ProceedsSplitConfig, Q96, type QuoteResult, Quoter, RehypeDopplerHook, type RehypeDopplerHookConfig, RehypeDopplerHookMigrator, type RehypeDopplerHookMigratorConfig, type RehypeFeeDistributionInfo, RehypeFeeRoutingMode, type ResolvedOpeningAuctionDopplerConfig, SECONDS_PER_DAY, SECONDS_PER_YEAR, SUPPORTED_CHAIN_IDS, type SaleConfig, _default as StateViewBytecode, StaticAuction, StaticAuctionBuilder, type StaticAuctionMarketCapConfig, type StaticPoolConfig, type StreamableFeesConfig, type SupportedChain, type SupportedChainId, type SupportedChainKey, type SupportedPublicClient, TICK_SPACINGS, type TokenAddressHookConfig, type TokenAddressMiningParams, type TokenAddressMiningResult, type TokenConfig, type TokenVariant, TopUpDistributor, type TopUpParams, type TopUpSimulationResult, type TopUpTransaction, type UniswapV2MigrationConfig, type UniswapV2SplitMigrationConfig, type UniswapV4MigrationConfig, type UniswapV4SplitMigrationConfig, V3_FEE_TIERS, type V4PoolKey, V4_MAX_FEE, VALID_FEE_TIERS, VERSION, type VestingAllocationConfig, type VestingConfig, type VestingScheduleConfig, WAD, ZERO_ADDRESS, airlockAbi, applyTickOffsets, bundlerAbi, calculateFDV, calculateGamma, calculateMarketCap, calculateTickRange, calculateTokensToSell, computeOptimalGamma, computePoolId, createAirlockBeneficiary, decayMulticurveInitializerHookAbi, decodeBalanceDelta, derc20Abi, derc20V2Abi, dopplerERC20V1Abi, dopplerHookAbi, dopplerHookInitializerAbi, dopplerLensAbi, encodeRehypeDopplerHookMigratorCalldata, estimatePriceAtEpoch, estimateSlippage, formatTickAsPrice, getAddresses, getAirlockBeneficiary, getAirlockOwner, getAmount0ForLiquidity, getAmount1ForLiquidity, getLiquidityForAmount0, getLiquidityForAmount1, getMaxTickRounded, getNearestUsableTick, getSqrtRatioAtTick, getTickAtSqrtRatio, isLaunchpadEnabledChain, isNoOpEnabledChain, isSupportedChainId, isToken0Expected, isToken1, lockableUniswapV3InitializerAbi, marketCapToTickForMulticurve, marketCapToTicksForDynamicAuction, marketCapToTicksForMulticurve, marketCapToTicksForStaticAuction, marketCapToTokenPrice, mineTokenAddress, normalizePoolKey, openingAuctionAbi, openingAuctionInitializerAbi, openingAuctionPositionManagerAbi, poolManagerAbi, priceToSqrtPriceX96, priceToTick, quoterV2Abi, ratioToTick, rehypeDopplerHookAbi, rehypeDopplerHookMigratorAbi, resolveGasEstimate, sqrtPriceX96ToPrice, streamableFeesLockerAbi, tickToMarketCap, tickToPrice, tokenPriceToRatio, topUpDistributorAbi, uniswapV2Router02Abi, uniswapV3InitializerAbi, uniswapV3PoolAbi, uniswapV4InitializerAbi, v2MigratorAbi, v3MigratorAbi, v4MigratorAbi, v4MulticurveInitializerAbi, v4MulticurveMigratorAbi, v4QuoterAbi, validateMarketCapParameters, weth9Abi };