@zoralabs/protocol-deployments 0.6.0-creator-coins.1 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,130 @@
1
+ export declare const autoSwapperABI: readonly [{
2
+ readonly type: "constructor";
3
+ readonly inputs: readonly [{
4
+ readonly name: "_router";
5
+ readonly internalType: "contract ISwapRouter";
6
+ readonly type: "address";
7
+ }, {
8
+ readonly name: "_swapRecipient";
9
+ readonly internalType: "address";
10
+ readonly type: "address";
11
+ }, {
12
+ readonly name: "_swapper";
13
+ readonly internalType: "address";
14
+ readonly type: "address";
15
+ }];
16
+ readonly stateMutability: "nonpayable";
17
+ }, {
18
+ readonly type: "function";
19
+ readonly inputs: readonly [];
20
+ readonly name: "router";
21
+ readonly outputs: readonly [{
22
+ readonly name: "";
23
+ readonly internalType: "contract ISwapRouter";
24
+ readonly type: "address";
25
+ }];
26
+ readonly stateMutability: "view";
27
+ }, {
28
+ readonly type: "function";
29
+ readonly inputs: readonly [{
30
+ readonly name: "params";
31
+ readonly internalType: "struct AutoSwapper.ExactInputParams";
32
+ readonly type: "tuple";
33
+ readonly components: readonly [{
34
+ readonly name: "path";
35
+ readonly internalType: "bytes";
36
+ readonly type: "bytes";
37
+ }, {
38
+ readonly name: "amountIn";
39
+ readonly internalType: "uint256";
40
+ readonly type: "uint256";
41
+ }, {
42
+ readonly name: "amountOutMinimum";
43
+ readonly internalType: "uint256";
44
+ readonly type: "uint256";
45
+ }];
46
+ }];
47
+ readonly name: "swapExactInput";
48
+ readonly outputs: readonly [{
49
+ readonly name: "amountOut";
50
+ readonly internalType: "uint256";
51
+ readonly type: "uint256";
52
+ }];
53
+ readonly stateMutability: "nonpayable";
54
+ }, {
55
+ readonly type: "function";
56
+ readonly inputs: readonly [{
57
+ readonly name: "params";
58
+ readonly internalType: "struct AutoSwapper.ExactInputSingleParams";
59
+ readonly type: "tuple";
60
+ readonly components: readonly [{
61
+ readonly name: "tokenIn";
62
+ readonly internalType: "address";
63
+ readonly type: "address";
64
+ }, {
65
+ readonly name: "tokenOut";
66
+ readonly internalType: "address";
67
+ readonly type: "address";
68
+ }, {
69
+ readonly name: "fee";
70
+ readonly internalType: "uint24";
71
+ readonly type: "uint24";
72
+ }, {
73
+ readonly name: "amountIn";
74
+ readonly internalType: "uint256";
75
+ readonly type: "uint256";
76
+ }, {
77
+ readonly name: "amountOutMinimum";
78
+ readonly internalType: "uint256";
79
+ readonly type: "uint256";
80
+ }, {
81
+ readonly name: "sqrtPriceLimitX96";
82
+ readonly internalType: "uint160";
83
+ readonly type: "uint160";
84
+ }];
85
+ }];
86
+ readonly name: "swapExactInputSingle";
87
+ readonly outputs: readonly [{
88
+ readonly name: "amountOut";
89
+ readonly internalType: "uint256";
90
+ readonly type: "uint256";
91
+ }];
92
+ readonly stateMutability: "nonpayable";
93
+ }, {
94
+ readonly type: "function";
95
+ readonly inputs: readonly [];
96
+ readonly name: "swapRecipient";
97
+ readonly outputs: readonly [{
98
+ readonly name: "";
99
+ readonly internalType: "address";
100
+ readonly type: "address";
101
+ }];
102
+ readonly stateMutability: "view";
103
+ }, {
104
+ readonly type: "function";
105
+ readonly inputs: readonly [];
106
+ readonly name: "swapper";
107
+ readonly outputs: readonly [{
108
+ readonly name: "";
109
+ readonly internalType: "address";
110
+ readonly type: "address";
111
+ }];
112
+ readonly stateMutability: "view";
113
+ }, {
114
+ readonly type: "error";
115
+ readonly inputs: readonly [];
116
+ readonly name: "InvalidRecipient";
117
+ }, {
118
+ readonly type: "error";
119
+ readonly inputs: readonly [];
120
+ readonly name: "InvalidSelector";
121
+ }, {
122
+ readonly type: "error";
123
+ readonly inputs: readonly [];
124
+ readonly name: "NotSwapper";
125
+ }];
1
126
  /**
2
- * - [__View Contract on Base Basescan__](https://basescan.org/address/0xd77038a7f400E8242d2916f7EB5741e689d4aE25)
127
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0xc90e349360C43a0217CEF289f231C66D4748960F)
3
128
  * - [__View Contract on Base Sepolia Basescan__](https://sepolia.basescan.org/address/0xE4Ec8cE893Cd41965b1aE27F1ad9798F207427aE)
4
129
  */
5
130
  export declare const buySupplyWithSwapRouterHookABI: readonly [{
@@ -78,6 +203,22 @@ export declare const buySupplyWithSwapRouterHookABI: readonly [{
78
203
  readonly type: "bytes";
79
204
  }];
80
205
  readonly stateMutability: "nonpayable";
206
+ }, {
207
+ readonly type: "error";
208
+ readonly inputs: readonly [{
209
+ readonly name: "target";
210
+ readonly internalType: "address";
211
+ readonly type: "address";
212
+ }];
213
+ readonly name: "AddressEmptyCode";
214
+ }, {
215
+ readonly type: "error";
216
+ readonly inputs: readonly [{
217
+ readonly name: "account";
218
+ readonly internalType: "address";
219
+ readonly type: "address";
220
+ }];
221
+ readonly name: "AddressInsufficientBalance";
81
222
  }, {
82
223
  readonly type: "error";
83
224
  readonly inputs: readonly [];
@@ -102,6 +243,10 @@ export declare const buySupplyWithSwapRouterHookABI: readonly [{
102
243
  readonly type: "error";
103
244
  readonly inputs: readonly [];
104
245
  readonly name: "Erc20NotReceived";
246
+ }, {
247
+ readonly type: "error";
248
+ readonly inputs: readonly [];
249
+ readonly name: "FailedInnerCall";
105
250
  }, {
106
251
  readonly type: "error";
107
252
  readonly inputs: readonly [];
@@ -118,6 +263,14 @@ export declare const buySupplyWithSwapRouterHookABI: readonly [{
118
263
  readonly type: "error";
119
264
  readonly inputs: readonly [];
120
265
  readonly name: "OnlyPoolManager";
266
+ }, {
267
+ readonly type: "error";
268
+ readonly inputs: readonly [{
269
+ readonly name: "token";
270
+ readonly internalType: "address";
271
+ readonly type: "address";
272
+ }];
273
+ readonly name: "SafeERC20FailedOperation";
121
274
  }, {
122
275
  readonly type: "error";
123
276
  readonly inputs: readonly [{
@@ -128,20 +281,20 @@ export declare const buySupplyWithSwapRouterHookABI: readonly [{
128
281
  readonly name: "SwapReverted";
129
282
  }];
130
283
  /**
131
- * - [__View Contract on Base Basescan__](https://basescan.org/address/0xd77038a7f400E8242d2916f7EB5741e689d4aE25)
284
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0xc90e349360C43a0217CEF289f231C66D4748960F)
132
285
  * - [__View Contract on Base Sepolia Basescan__](https://sepolia.basescan.org/address/0xE4Ec8cE893Cd41965b1aE27F1ad9798F207427aE)
133
286
  */
134
287
  export declare const buySupplyWithSwapRouterHookAddress: {
135
- readonly 8453: "0xd77038a7f400E8242d2916f7EB5741e689d4aE25";
288
+ readonly 8453: "0xc90e349360C43a0217CEF289f231C66D4748960F";
136
289
  readonly 84532: "0xE4Ec8cE893Cd41965b1aE27F1ad9798F207427aE";
137
290
  };
138
291
  /**
139
- * - [__View Contract on Base Basescan__](https://basescan.org/address/0xd77038a7f400E8242d2916f7EB5741e689d4aE25)
292
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0xc90e349360C43a0217CEF289f231C66D4748960F)
140
293
  * - [__View Contract on Base Sepolia Basescan__](https://sepolia.basescan.org/address/0xE4Ec8cE893Cd41965b1aE27F1ad9798F207427aE)
141
294
  */
142
295
  export declare const buySupplyWithSwapRouterHookConfig: {
143
296
  readonly address: {
144
- readonly 8453: "0xd77038a7f400E8242d2916f7EB5741e689d4aE25";
297
+ readonly 8453: "0xc90e349360C43a0217CEF289f231C66D4748960F";
145
298
  readonly 84532: "0xE4Ec8cE893Cd41965b1aE27F1ad9798F207427aE";
146
299
  };
147
300
  readonly abi: readonly [{
@@ -220,6 +373,22 @@ export declare const buySupplyWithSwapRouterHookConfig: {
220
373
  readonly type: "bytes";
221
374
  }];
222
375
  readonly stateMutability: "nonpayable";
376
+ }, {
377
+ readonly type: "error";
378
+ readonly inputs: readonly [{
379
+ readonly name: "target";
380
+ readonly internalType: "address";
381
+ readonly type: "address";
382
+ }];
383
+ readonly name: "AddressEmptyCode";
384
+ }, {
385
+ readonly type: "error";
386
+ readonly inputs: readonly [{
387
+ readonly name: "account";
388
+ readonly internalType: "address";
389
+ readonly type: "address";
390
+ }];
391
+ readonly name: "AddressInsufficientBalance";
223
392
  }, {
224
393
  readonly type: "error";
225
394
  readonly inputs: readonly [];
@@ -244,6 +413,10 @@ export declare const buySupplyWithSwapRouterHookConfig: {
244
413
  readonly type: "error";
245
414
  readonly inputs: readonly [];
246
415
  readonly name: "Erc20NotReceived";
416
+ }, {
417
+ readonly type: "error";
418
+ readonly inputs: readonly [];
419
+ readonly name: "FailedInnerCall";
247
420
  }, {
248
421
  readonly type: "error";
249
422
  readonly inputs: readonly [];
@@ -260,6 +433,14 @@ export declare const buySupplyWithSwapRouterHookConfig: {
260
433
  readonly type: "error";
261
434
  readonly inputs: readonly [];
262
435
  readonly name: "OnlyPoolManager";
436
+ }, {
437
+ readonly type: "error";
438
+ readonly inputs: readonly [{
439
+ readonly name: "token";
440
+ readonly internalType: "address";
441
+ readonly type: "address";
442
+ }];
443
+ readonly name: "SafeERC20FailedOperation";
263
444
  }, {
264
445
  readonly type: "error";
265
446
  readonly inputs: readonly [{
@@ -4430,6 +4611,20 @@ export declare const coinABI: readonly [{
4430
4611
  readonly name: "setContractURI";
4431
4612
  readonly outputs: readonly [];
4432
4613
  readonly stateMutability: "nonpayable";
4614
+ }, {
4615
+ readonly type: "function";
4616
+ readonly inputs: readonly [{
4617
+ readonly name: "newName";
4618
+ readonly internalType: "string";
4619
+ readonly type: "string";
4620
+ }, {
4621
+ readonly name: "newSymbol";
4622
+ readonly internalType: "string";
4623
+ readonly type: "string";
4624
+ }];
4625
+ readonly name: "setNameAndSymbol";
4626
+ readonly outputs: readonly [];
4627
+ readonly stateMutability: "nonpayable";
4433
4628
  }, {
4434
4629
  readonly type: "function";
4435
4630
  readonly inputs: readonly [{
@@ -4865,6 +5060,26 @@ export declare const coinABI: readonly [{
4865
5060
  readonly indexed: false;
4866
5061
  }];
4867
5062
  readonly name: "Initialized";
5063
+ }, {
5064
+ readonly type: "event";
5065
+ readonly anonymous: false;
5066
+ readonly inputs: readonly [{
5067
+ readonly name: "caller";
5068
+ readonly internalType: "address";
5069
+ readonly type: "address";
5070
+ readonly indexed: true;
5071
+ }, {
5072
+ readonly name: "newName";
5073
+ readonly internalType: "string";
5074
+ readonly type: "string";
5075
+ readonly indexed: false;
5076
+ }, {
5077
+ readonly name: "newSymbol";
5078
+ readonly internalType: "string";
5079
+ readonly type: "string";
5080
+ readonly indexed: false;
5081
+ }];
5082
+ readonly name: "NameAndSymbolUpdated";
4868
5083
  }, {
4869
5084
  readonly type: "event";
4870
5085
  readonly anonymous: false;
@@ -5149,6 +5364,10 @@ export declare const coinABI: readonly [{
5149
5364
  readonly type: "uint256";
5150
5365
  }];
5151
5366
  readonly name: "MaxShareToBeSoldExceeded";
5367
+ }, {
5368
+ readonly type: "error";
5369
+ readonly inputs: readonly [];
5370
+ readonly name: "NameIsRequired";
5152
5371
  }, {
5153
5372
  readonly type: "error";
5154
5373
  readonly inputs: readonly [];
@@ -5228,6 +5447,14 @@ export declare const coinFactoryABI: readonly [{
5228
5447
  readonly name: "_creatorCoinImpl";
5229
5448
  readonly internalType: "address";
5230
5449
  readonly type: "address";
5450
+ }, {
5451
+ readonly name: "_contentCoinHook";
5452
+ readonly internalType: "address";
5453
+ readonly type: "address";
5454
+ }, {
5455
+ readonly name: "_creatorCoinHook";
5456
+ readonly internalType: "address";
5457
+ readonly type: "address";
5231
5458
  }];
5232
5459
  readonly stateMutability: "nonpayable";
5233
5460
  }, {
@@ -5294,6 +5521,16 @@ export declare const coinFactoryABI: readonly [{
5294
5521
  readonly type: "address";
5295
5522
  }];
5296
5523
  readonly stateMutability: "view";
5524
+ }, {
5525
+ readonly type: "function";
5526
+ readonly inputs: readonly [];
5527
+ readonly name: "contentCoinHook";
5528
+ readonly outputs: readonly [{
5529
+ readonly name: "";
5530
+ readonly internalType: "address";
5531
+ readonly type: "address";
5532
+ }];
5533
+ readonly stateMutability: "view";
5297
5534
  }, {
5298
5535
  readonly type: "function";
5299
5536
  readonly inputs: readonly [];
@@ -5314,6 +5551,16 @@ export declare const coinFactoryABI: readonly [{
5314
5551
  readonly type: "string";
5315
5552
  }];
5316
5553
  readonly stateMutability: "pure";
5554
+ }, {
5555
+ readonly type: "function";
5556
+ readonly inputs: readonly [];
5557
+ readonly name: "creatorCoinHook";
5558
+ readonly outputs: readonly [{
5559
+ readonly name: "";
5560
+ readonly internalType: "address";
5561
+ readonly type: "address";
5562
+ }];
5563
+ readonly stateMutability: "view";
5317
5564
  }, {
5318
5565
  readonly type: "function";
5319
5566
  readonly inputs: readonly [];
@@ -6114,6 +6361,14 @@ export declare const coinFactoryConfig: {
6114
6361
  readonly name: "_creatorCoinImpl";
6115
6362
  readonly internalType: "address";
6116
6363
  readonly type: "address";
6364
+ }, {
6365
+ readonly name: "_contentCoinHook";
6366
+ readonly internalType: "address";
6367
+ readonly type: "address";
6368
+ }, {
6369
+ readonly name: "_creatorCoinHook";
6370
+ readonly internalType: "address";
6371
+ readonly type: "address";
6117
6372
  }];
6118
6373
  readonly stateMutability: "nonpayable";
6119
6374
  }, {
@@ -6180,6 +6435,16 @@ export declare const coinFactoryConfig: {
6180
6435
  readonly type: "address";
6181
6436
  }];
6182
6437
  readonly stateMutability: "view";
6438
+ }, {
6439
+ readonly type: "function";
6440
+ readonly inputs: readonly [];
6441
+ readonly name: "contentCoinHook";
6442
+ readonly outputs: readonly [{
6443
+ readonly name: "";
6444
+ readonly internalType: "address";
6445
+ readonly type: "address";
6446
+ }];
6447
+ readonly stateMutability: "view";
6183
6448
  }, {
6184
6449
  readonly type: "function";
6185
6450
  readonly inputs: readonly [];
@@ -6200,6 +6465,16 @@ export declare const coinFactoryConfig: {
6200
6465
  readonly type: "string";
6201
6466
  }];
6202
6467
  readonly stateMutability: "pure";
6468
+ }, {
6469
+ readonly type: "function";
6470
+ readonly inputs: readonly [];
6471
+ readonly name: "creatorCoinHook";
6472
+ readonly outputs: readonly [{
6473
+ readonly name: "";
6474
+ readonly internalType: "address";
6475
+ readonly type: "address";
6476
+ }];
6477
+ readonly stateMutability: "view";
6203
6478
  }, {
6204
6479
  readonly type: "function";
6205
6480
  readonly inputs: readonly [];
@@ -6988,10 +7263,6 @@ export declare const coinV4ABI: readonly [{
6988
7263
  readonly name: "airlock_";
6989
7264
  readonly internalType: "address";
6990
7265
  readonly type: "address";
6991
- }, {
6992
- readonly name: "hooks_";
6993
- readonly internalType: "contract IHooks";
6994
- readonly type: "address";
6995
7266
  }];
6996
7267
  readonly stateMutability: "nonpayable";
6997
7268
  }, {
@@ -7422,10 +7693,49 @@ export declare const coinV4ABI: readonly [{
7422
7693
  readonly stateMutability: "view";
7423
7694
  }, {
7424
7695
  readonly type: "function";
7425
- readonly inputs: readonly [];
7426
- readonly name: "name";
7427
- readonly outputs: readonly [{
7428
- readonly name: "";
7696
+ readonly inputs: readonly [{
7697
+ readonly name: "newHook";
7698
+ readonly internalType: "address";
7699
+ readonly type: "address";
7700
+ }, {
7701
+ readonly name: "additionalData";
7702
+ readonly internalType: "bytes";
7703
+ readonly type: "bytes";
7704
+ }];
7705
+ readonly name: "migrateLiquidity";
7706
+ readonly outputs: readonly [{
7707
+ readonly name: "newPoolKey";
7708
+ readonly internalType: "struct PoolKey";
7709
+ readonly type: "tuple";
7710
+ readonly components: readonly [{
7711
+ readonly name: "currency0";
7712
+ readonly internalType: "Currency";
7713
+ readonly type: "address";
7714
+ }, {
7715
+ readonly name: "currency1";
7716
+ readonly internalType: "Currency";
7717
+ readonly type: "address";
7718
+ }, {
7719
+ readonly name: "fee";
7720
+ readonly internalType: "uint24";
7721
+ readonly type: "uint24";
7722
+ }, {
7723
+ readonly name: "tickSpacing";
7724
+ readonly internalType: "int24";
7725
+ readonly type: "int24";
7726
+ }, {
7727
+ readonly name: "hooks";
7728
+ readonly internalType: "contract IHooks";
7729
+ readonly type: "address";
7730
+ }];
7731
+ }];
7732
+ readonly stateMutability: "nonpayable";
7733
+ }, {
7734
+ readonly type: "function";
7735
+ readonly inputs: readonly [];
7736
+ readonly name: "name";
7737
+ readonly outputs: readonly [{
7738
+ readonly name: "";
7429
7739
  readonly internalType: "string";
7430
7740
  readonly type: "string";
7431
7741
  }];
@@ -7574,6 +7884,20 @@ export declare const coinV4ABI: readonly [{
7574
7884
  readonly name: "setContractURI";
7575
7885
  readonly outputs: readonly [];
7576
7886
  readonly stateMutability: "nonpayable";
7887
+ }, {
7888
+ readonly type: "function";
7889
+ readonly inputs: readonly [{
7890
+ readonly name: "newName";
7891
+ readonly internalType: "string";
7892
+ readonly type: "string";
7893
+ }, {
7894
+ readonly name: "newSymbol";
7895
+ readonly internalType: "string";
7896
+ readonly type: "string";
7897
+ }];
7898
+ readonly name: "setNameAndSymbol";
7899
+ readonly outputs: readonly [];
7900
+ readonly stateMutability: "nonpayable";
7577
7901
  }, {
7578
7902
  readonly type: "function";
7579
7903
  readonly inputs: readonly [{
@@ -7971,6 +8295,93 @@ export declare const coinV4ABI: readonly [{
7971
8295
  readonly indexed: false;
7972
8296
  }];
7973
8297
  readonly name: "Initialized";
8298
+ }, {
8299
+ readonly type: "event";
8300
+ readonly anonymous: false;
8301
+ readonly inputs: readonly [{
8302
+ readonly name: "fromPoolKey";
8303
+ readonly internalType: "struct PoolKey";
8304
+ readonly type: "tuple";
8305
+ readonly components: readonly [{
8306
+ readonly name: "currency0";
8307
+ readonly internalType: "Currency";
8308
+ readonly type: "address";
8309
+ }, {
8310
+ readonly name: "currency1";
8311
+ readonly internalType: "Currency";
8312
+ readonly type: "address";
8313
+ }, {
8314
+ readonly name: "fee";
8315
+ readonly internalType: "uint24";
8316
+ readonly type: "uint24";
8317
+ }, {
8318
+ readonly name: "tickSpacing";
8319
+ readonly internalType: "int24";
8320
+ readonly type: "int24";
8321
+ }, {
8322
+ readonly name: "hooks";
8323
+ readonly internalType: "contract IHooks";
8324
+ readonly type: "address";
8325
+ }];
8326
+ readonly indexed: false;
8327
+ }, {
8328
+ readonly name: "fromPoolKeyHash";
8329
+ readonly internalType: "bytes32";
8330
+ readonly type: "bytes32";
8331
+ readonly indexed: false;
8332
+ }, {
8333
+ readonly name: "toPoolKey";
8334
+ readonly internalType: "struct PoolKey";
8335
+ readonly type: "tuple";
8336
+ readonly components: readonly [{
8337
+ readonly name: "currency0";
8338
+ readonly internalType: "Currency";
8339
+ readonly type: "address";
8340
+ }, {
8341
+ readonly name: "currency1";
8342
+ readonly internalType: "Currency";
8343
+ readonly type: "address";
8344
+ }, {
8345
+ readonly name: "fee";
8346
+ readonly internalType: "uint24";
8347
+ readonly type: "uint24";
8348
+ }, {
8349
+ readonly name: "tickSpacing";
8350
+ readonly internalType: "int24";
8351
+ readonly type: "int24";
8352
+ }, {
8353
+ readonly name: "hooks";
8354
+ readonly internalType: "contract IHooks";
8355
+ readonly type: "address";
8356
+ }];
8357
+ readonly indexed: false;
8358
+ }, {
8359
+ readonly name: "toPoolKeyHash";
8360
+ readonly internalType: "bytes32";
8361
+ readonly type: "bytes32";
8362
+ readonly indexed: false;
8363
+ }];
8364
+ readonly name: "LiquidityMigrated";
8365
+ }, {
8366
+ readonly type: "event";
8367
+ readonly anonymous: false;
8368
+ readonly inputs: readonly [{
8369
+ readonly name: "caller";
8370
+ readonly internalType: "address";
8371
+ readonly type: "address";
8372
+ readonly indexed: true;
8373
+ }, {
8374
+ readonly name: "newName";
8375
+ readonly internalType: "string";
8376
+ readonly type: "string";
8377
+ readonly indexed: false;
8378
+ }, {
8379
+ readonly name: "newSymbol";
8380
+ readonly internalType: "string";
8381
+ readonly type: "string";
8382
+ readonly indexed: false;
8383
+ }];
8384
+ readonly name: "NameAndSymbolUpdated";
7974
8385
  }, {
7975
8386
  readonly type: "event";
7976
8387
  readonly anonymous: false;
@@ -8231,6 +8642,10 @@ export declare const coinV4ABI: readonly [{
8231
8642
  readonly type: "uint256";
8232
8643
  }];
8233
8644
  readonly name: "MaxShareToBeSoldExceeded";
8645
+ }, {
8646
+ readonly type: "error";
8647
+ readonly inputs: readonly [];
8648
+ readonly name: "NameIsRequired";
8234
8649
  }, {
8235
8650
  readonly type: "error";
8236
8651
  readonly inputs: readonly [];
@@ -12630,7 +13045,7 @@ export declare const commentsConfig: {
12630
13045
  }];
12631
13046
  };
12632
13047
  /**
12633
- * [__View Contract on Base Basescan__](https://basescan.org/address/0xd77038a7f400E8242d2916f7EB5741e689d4aE25)
13048
+ * [__View Contract on Base Basescan__](https://basescan.org/address/0x62B95629F965bf48E15BB110A1729B9b9dF1C07D)
12634
13049
  */
12635
13050
  export declare const devBuySupplyWithSwapRouterHookABI: readonly [{
12636
13051
  readonly type: "constructor";
@@ -12708,6 +13123,22 @@ export declare const devBuySupplyWithSwapRouterHookABI: readonly [{
12708
13123
  readonly type: "bytes";
12709
13124
  }];
12710
13125
  readonly stateMutability: "nonpayable";
13126
+ }, {
13127
+ readonly type: "error";
13128
+ readonly inputs: readonly [{
13129
+ readonly name: "target";
13130
+ readonly internalType: "address";
13131
+ readonly type: "address";
13132
+ }];
13133
+ readonly name: "AddressEmptyCode";
13134
+ }, {
13135
+ readonly type: "error";
13136
+ readonly inputs: readonly [{
13137
+ readonly name: "account";
13138
+ readonly internalType: "address";
13139
+ readonly type: "address";
13140
+ }];
13141
+ readonly name: "AddressInsufficientBalance";
12711
13142
  }, {
12712
13143
  readonly type: "error";
12713
13144
  readonly inputs: readonly [];
@@ -12732,6 +13163,10 @@ export declare const devBuySupplyWithSwapRouterHookABI: readonly [{
12732
13163
  readonly type: "error";
12733
13164
  readonly inputs: readonly [];
12734
13165
  readonly name: "Erc20NotReceived";
13166
+ }, {
13167
+ readonly type: "error";
13168
+ readonly inputs: readonly [];
13169
+ readonly name: "FailedInnerCall";
12735
13170
  }, {
12736
13171
  readonly type: "error";
12737
13172
  readonly inputs: readonly [];
@@ -12748,6 +13183,14 @@ export declare const devBuySupplyWithSwapRouterHookABI: readonly [{
12748
13183
  readonly type: "error";
12749
13184
  readonly inputs: readonly [];
12750
13185
  readonly name: "OnlyPoolManager";
13186
+ }, {
13187
+ readonly type: "error";
13188
+ readonly inputs: readonly [{
13189
+ readonly name: "token";
13190
+ readonly internalType: "address";
13191
+ readonly type: "address";
13192
+ }];
13193
+ readonly name: "SafeERC20FailedOperation";
12751
13194
  }, {
12752
13195
  readonly type: "error";
12753
13196
  readonly inputs: readonly [{
@@ -12758,17 +13201,17 @@ export declare const devBuySupplyWithSwapRouterHookABI: readonly [{
12758
13201
  readonly name: "SwapReverted";
12759
13202
  }];
12760
13203
  /**
12761
- * [__View Contract on Base Basescan__](https://basescan.org/address/0xd77038a7f400E8242d2916f7EB5741e689d4aE25)
13204
+ * [__View Contract on Base Basescan__](https://basescan.org/address/0x62B95629F965bf48E15BB110A1729B9b9dF1C07D)
12762
13205
  */
12763
13206
  export declare const devBuySupplyWithSwapRouterHookAddress: {
12764
- readonly 8453: "0xd77038a7f400E8242d2916f7EB5741e689d4aE25";
13207
+ readonly 8453: "0x62B95629F965bf48E15BB110A1729B9b9dF1C07D";
12765
13208
  };
12766
13209
  /**
12767
- * [__View Contract on Base Basescan__](https://basescan.org/address/0xd77038a7f400E8242d2916f7EB5741e689d4aE25)
13210
+ * [__View Contract on Base Basescan__](https://basescan.org/address/0x62B95629F965bf48E15BB110A1729B9b9dF1C07D)
12768
13211
  */
12769
13212
  export declare const devBuySupplyWithSwapRouterHookConfig: {
12770
13213
  readonly address: {
12771
- readonly 8453: "0xd77038a7f400E8242d2916f7EB5741e689d4aE25";
13214
+ readonly 8453: "0x62B95629F965bf48E15BB110A1729B9b9dF1C07D";
12772
13215
  };
12773
13216
  readonly abi: readonly [{
12774
13217
  readonly type: "constructor";
@@ -12846,6 +13289,22 @@ export declare const devBuySupplyWithSwapRouterHookConfig: {
12846
13289
  readonly type: "bytes";
12847
13290
  }];
12848
13291
  readonly stateMutability: "nonpayable";
13292
+ }, {
13293
+ readonly type: "error";
13294
+ readonly inputs: readonly [{
13295
+ readonly name: "target";
13296
+ readonly internalType: "address";
13297
+ readonly type: "address";
13298
+ }];
13299
+ readonly name: "AddressEmptyCode";
13300
+ }, {
13301
+ readonly type: "error";
13302
+ readonly inputs: readonly [{
13303
+ readonly name: "account";
13304
+ readonly internalType: "address";
13305
+ readonly type: "address";
13306
+ }];
13307
+ readonly name: "AddressInsufficientBalance";
12849
13308
  }, {
12850
13309
  readonly type: "error";
12851
13310
  readonly inputs: readonly [];
@@ -12870,6 +13329,10 @@ export declare const devBuySupplyWithSwapRouterHookConfig: {
12870
13329
  readonly type: "error";
12871
13330
  readonly inputs: readonly [];
12872
13331
  readonly name: "Erc20NotReceived";
13332
+ }, {
13333
+ readonly type: "error";
13334
+ readonly inputs: readonly [];
13335
+ readonly name: "FailedInnerCall";
12873
13336
  }, {
12874
13337
  readonly type: "error";
12875
13338
  readonly inputs: readonly [];
@@ -12886,6 +13349,14 @@ export declare const devBuySupplyWithSwapRouterHookConfig: {
12886
13349
  readonly type: "error";
12887
13350
  readonly inputs: readonly [];
12888
13351
  readonly name: "OnlyPoolManager";
13352
+ }, {
13353
+ readonly type: "error";
13354
+ readonly inputs: readonly [{
13355
+ readonly name: "token";
13356
+ readonly internalType: "address";
13357
+ readonly type: "address";
13358
+ }];
13359
+ readonly name: "SafeERC20FailedOperation";
12889
13360
  }, {
12890
13361
  readonly type: "error";
12891
13362
  readonly inputs: readonly [{
@@ -12897,7 +13368,7 @@ export declare const devBuySupplyWithSwapRouterHookConfig: {
12897
13368
  }];
12898
13369
  };
12899
13370
  /**
12900
- * [__View Contract on Base Basescan__](https://basescan.org/address/0x25271c98c1548c075c6DD463308c9a37135c842c)
13371
+ * [__View Contract on Base Basescan__](https://basescan.org/address/0x47B0C1205B01e5e967dB24A186968152e5cCf764)
12901
13372
  */
12902
13373
  export declare const devCoinFactoryABI: readonly [{
12903
13374
  readonly type: "constructor";
@@ -12913,6 +13384,14 @@ export declare const devCoinFactoryABI: readonly [{
12913
13384
  readonly name: "_creatorCoinImpl";
12914
13385
  readonly internalType: "address";
12915
13386
  readonly type: "address";
13387
+ }, {
13388
+ readonly name: "_contentCoinHook";
13389
+ readonly internalType: "address";
13390
+ readonly type: "address";
13391
+ }, {
13392
+ readonly name: "_creatorCoinHook";
13393
+ readonly internalType: "address";
13394
+ readonly type: "address";
12916
13395
  }];
12917
13396
  readonly stateMutability: "nonpayable";
12918
13397
  }, {
@@ -12979,6 +13458,16 @@ export declare const devCoinFactoryABI: readonly [{
12979
13458
  readonly type: "address";
12980
13459
  }];
12981
13460
  readonly stateMutability: "view";
13461
+ }, {
13462
+ readonly type: "function";
13463
+ readonly inputs: readonly [];
13464
+ readonly name: "contentCoinHook";
13465
+ readonly outputs: readonly [{
13466
+ readonly name: "";
13467
+ readonly internalType: "address";
13468
+ readonly type: "address";
13469
+ }];
13470
+ readonly stateMutability: "view";
12982
13471
  }, {
12983
13472
  readonly type: "function";
12984
13473
  readonly inputs: readonly [];
@@ -12999,6 +13488,16 @@ export declare const devCoinFactoryABI: readonly [{
12999
13488
  readonly type: "string";
13000
13489
  }];
13001
13490
  readonly stateMutability: "pure";
13491
+ }, {
13492
+ readonly type: "function";
13493
+ readonly inputs: readonly [];
13494
+ readonly name: "creatorCoinHook";
13495
+ readonly outputs: readonly [{
13496
+ readonly name: "";
13497
+ readonly internalType: "address";
13498
+ readonly type: "address";
13499
+ }];
13500
+ readonly stateMutability: "view";
13002
13501
  }, {
13003
13502
  readonly type: "function";
13004
13503
  readonly inputs: readonly [];
@@ -13769,17 +14268,17 @@ export declare const devCoinFactoryABI: readonly [{
13769
14268
  readonly name: "ZeroDiscoverySupplyShare";
13770
14269
  }];
13771
14270
  /**
13772
- * [__View Contract on Base Basescan__](https://basescan.org/address/0x25271c98c1548c075c6DD463308c9a37135c842c)
14271
+ * [__View Contract on Base Basescan__](https://basescan.org/address/0x47B0C1205B01e5e967dB24A186968152e5cCf764)
13773
14272
  */
13774
14273
  export declare const devCoinFactoryAddress: {
13775
- readonly 8453: "0x25271c98c1548c075c6DD463308c9a37135c842c";
14274
+ readonly 8453: "0x47B0C1205B01e5e967dB24A186968152e5cCf764";
13776
14275
  };
13777
14276
  /**
13778
- * [__View Contract on Base Basescan__](https://basescan.org/address/0x25271c98c1548c075c6DD463308c9a37135c842c)
14277
+ * [__View Contract on Base Basescan__](https://basescan.org/address/0x47B0C1205B01e5e967dB24A186968152e5cCf764)
13779
14278
  */
13780
14279
  export declare const devCoinFactoryConfig: {
13781
14280
  readonly address: {
13782
- readonly 8453: "0x25271c98c1548c075c6DD463308c9a37135c842c";
14281
+ readonly 8453: "0x47B0C1205B01e5e967dB24A186968152e5cCf764";
13783
14282
  };
13784
14283
  readonly abi: readonly [{
13785
14284
  readonly type: "constructor";
@@ -13795,6 +14294,14 @@ export declare const devCoinFactoryConfig: {
13795
14294
  readonly name: "_creatorCoinImpl";
13796
14295
  readonly internalType: "address";
13797
14296
  readonly type: "address";
14297
+ }, {
14298
+ readonly name: "_contentCoinHook";
14299
+ readonly internalType: "address";
14300
+ readonly type: "address";
14301
+ }, {
14302
+ readonly name: "_creatorCoinHook";
14303
+ readonly internalType: "address";
14304
+ readonly type: "address";
13798
14305
  }];
13799
14306
  readonly stateMutability: "nonpayable";
13800
14307
  }, {
@@ -13861,6 +14368,16 @@ export declare const devCoinFactoryConfig: {
13861
14368
  readonly type: "address";
13862
14369
  }];
13863
14370
  readonly stateMutability: "view";
14371
+ }, {
14372
+ readonly type: "function";
14373
+ readonly inputs: readonly [];
14374
+ readonly name: "contentCoinHook";
14375
+ readonly outputs: readonly [{
14376
+ readonly name: "";
14377
+ readonly internalType: "address";
14378
+ readonly type: "address";
14379
+ }];
14380
+ readonly stateMutability: "view";
13864
14381
  }, {
13865
14382
  readonly type: "function";
13866
14383
  readonly inputs: readonly [];
@@ -13881,6 +14398,16 @@ export declare const devCoinFactoryConfig: {
13881
14398
  readonly type: "string";
13882
14399
  }];
13883
14400
  readonly stateMutability: "pure";
14401
+ }, {
14402
+ readonly type: "function";
14403
+ readonly inputs: readonly [];
14404
+ readonly name: "creatorCoinHook";
14405
+ readonly outputs: readonly [{
14406
+ readonly name: "";
14407
+ readonly internalType: "address";
14408
+ readonly type: "address";
14409
+ }];
14410
+ readonly stateMutability: "view";
13884
14411
  }, {
13885
14412
  readonly type: "function";
13886
14413
  readonly inputs: readonly [];
@@ -23047,6 +23574,338 @@ export declare const sponsoredSparksSpenderConfig: {
23047
23574
  readonly name: "WithdrawFailed";
23048
23575
  }];
23049
23576
  };
23577
+ /**
23578
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x3d4e44Eb1374240CE5F1B871ab261CD16335B76a)
23579
+ * - [__View Contract on Base Sepolia Basescan__](https://sepolia.basescan.org/address/0xC5290058841028F1614F3A6F0F5816cAd0df5E27)
23580
+ */
23581
+ export declare const uniswapQuoterV2ABI: readonly [{
23582
+ readonly type: "function";
23583
+ readonly inputs: readonly [{
23584
+ readonly name: "path";
23585
+ readonly internalType: "bytes";
23586
+ readonly type: "bytes";
23587
+ }, {
23588
+ readonly name: "amountIn";
23589
+ readonly internalType: "uint256";
23590
+ readonly type: "uint256";
23591
+ }];
23592
+ readonly name: "quoteExactInput";
23593
+ readonly outputs: readonly [{
23594
+ readonly name: "amountOut";
23595
+ readonly internalType: "uint256";
23596
+ readonly type: "uint256";
23597
+ }, {
23598
+ readonly name: "sqrtPriceX96AfterList";
23599
+ readonly internalType: "uint160[]";
23600
+ readonly type: "uint160[]";
23601
+ }, {
23602
+ readonly name: "initializedTicksCrossedList";
23603
+ readonly internalType: "uint32[]";
23604
+ readonly type: "uint32[]";
23605
+ }, {
23606
+ readonly name: "gasEstimate";
23607
+ readonly internalType: "uint256";
23608
+ readonly type: "uint256";
23609
+ }];
23610
+ readonly stateMutability: "nonpayable";
23611
+ }, {
23612
+ readonly type: "function";
23613
+ readonly inputs: readonly [{
23614
+ readonly name: "params";
23615
+ readonly internalType: "struct IQuoterV2.QuoteExactInputSingleParams";
23616
+ readonly type: "tuple";
23617
+ readonly components: readonly [{
23618
+ readonly name: "tokenIn";
23619
+ readonly internalType: "address";
23620
+ readonly type: "address";
23621
+ }, {
23622
+ readonly name: "tokenOut";
23623
+ readonly internalType: "address";
23624
+ readonly type: "address";
23625
+ }, {
23626
+ readonly name: "amountIn";
23627
+ readonly internalType: "uint256";
23628
+ readonly type: "uint256";
23629
+ }, {
23630
+ readonly name: "fee";
23631
+ readonly internalType: "uint24";
23632
+ readonly type: "uint24";
23633
+ }, {
23634
+ readonly name: "sqrtPriceLimitX96";
23635
+ readonly internalType: "uint160";
23636
+ readonly type: "uint160";
23637
+ }];
23638
+ }];
23639
+ readonly name: "quoteExactInputSingle";
23640
+ readonly outputs: readonly [{
23641
+ readonly name: "amountOut";
23642
+ readonly internalType: "uint256";
23643
+ readonly type: "uint256";
23644
+ }, {
23645
+ readonly name: "sqrtPriceX96After";
23646
+ readonly internalType: "uint160";
23647
+ readonly type: "uint160";
23648
+ }, {
23649
+ readonly name: "initializedTicksCrossed";
23650
+ readonly internalType: "uint32";
23651
+ readonly type: "uint32";
23652
+ }, {
23653
+ readonly name: "gasEstimate";
23654
+ readonly internalType: "uint256";
23655
+ readonly type: "uint256";
23656
+ }];
23657
+ readonly stateMutability: "nonpayable";
23658
+ }, {
23659
+ readonly type: "function";
23660
+ readonly inputs: readonly [{
23661
+ readonly name: "path";
23662
+ readonly internalType: "bytes";
23663
+ readonly type: "bytes";
23664
+ }, {
23665
+ readonly name: "amountOut";
23666
+ readonly internalType: "uint256";
23667
+ readonly type: "uint256";
23668
+ }];
23669
+ readonly name: "quoteExactOutput";
23670
+ readonly outputs: readonly [{
23671
+ readonly name: "amountIn";
23672
+ readonly internalType: "uint256";
23673
+ readonly type: "uint256";
23674
+ }, {
23675
+ readonly name: "sqrtPriceX96AfterList";
23676
+ readonly internalType: "uint160[]";
23677
+ readonly type: "uint160[]";
23678
+ }, {
23679
+ readonly name: "initializedTicksCrossedList";
23680
+ readonly internalType: "uint32[]";
23681
+ readonly type: "uint32[]";
23682
+ }, {
23683
+ readonly name: "gasEstimate";
23684
+ readonly internalType: "uint256";
23685
+ readonly type: "uint256";
23686
+ }];
23687
+ readonly stateMutability: "nonpayable";
23688
+ }, {
23689
+ readonly type: "function";
23690
+ readonly inputs: readonly [{
23691
+ readonly name: "params";
23692
+ readonly internalType: "struct IQuoterV2.QuoteExactOutputSingleParams";
23693
+ readonly type: "tuple";
23694
+ readonly components: readonly [{
23695
+ readonly name: "tokenIn";
23696
+ readonly internalType: "address";
23697
+ readonly type: "address";
23698
+ }, {
23699
+ readonly name: "tokenOut";
23700
+ readonly internalType: "address";
23701
+ readonly type: "address";
23702
+ }, {
23703
+ readonly name: "amount";
23704
+ readonly internalType: "uint256";
23705
+ readonly type: "uint256";
23706
+ }, {
23707
+ readonly name: "fee";
23708
+ readonly internalType: "uint24";
23709
+ readonly type: "uint24";
23710
+ }, {
23711
+ readonly name: "sqrtPriceLimitX96";
23712
+ readonly internalType: "uint160";
23713
+ readonly type: "uint160";
23714
+ }];
23715
+ }];
23716
+ readonly name: "quoteExactOutputSingle";
23717
+ readonly outputs: readonly [{
23718
+ readonly name: "amountIn";
23719
+ readonly internalType: "uint256";
23720
+ readonly type: "uint256";
23721
+ }, {
23722
+ readonly name: "sqrtPriceX96After";
23723
+ readonly internalType: "uint160";
23724
+ readonly type: "uint160";
23725
+ }, {
23726
+ readonly name: "initializedTicksCrossed";
23727
+ readonly internalType: "uint32";
23728
+ readonly type: "uint32";
23729
+ }, {
23730
+ readonly name: "gasEstimate";
23731
+ readonly internalType: "uint256";
23732
+ readonly type: "uint256";
23733
+ }];
23734
+ readonly stateMutability: "nonpayable";
23735
+ }];
23736
+ /**
23737
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x3d4e44Eb1374240CE5F1B871ab261CD16335B76a)
23738
+ * - [__View Contract on Base Sepolia Basescan__](https://sepolia.basescan.org/address/0xC5290058841028F1614F3A6F0F5816cAd0df5E27)
23739
+ */
23740
+ export declare const uniswapQuoterV2Address: {
23741
+ readonly 8453: "0x3d4e44Eb1374240CE5F1B871ab261CD16335B76a";
23742
+ readonly 84532: "0xC5290058841028F1614F3A6F0F5816cAd0df5E27";
23743
+ };
23744
+ /**
23745
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x3d4e44Eb1374240CE5F1B871ab261CD16335B76a)
23746
+ * - [__View Contract on Base Sepolia Basescan__](https://sepolia.basescan.org/address/0xC5290058841028F1614F3A6F0F5816cAd0df5E27)
23747
+ */
23748
+ export declare const uniswapQuoterV2Config: {
23749
+ readonly address: {
23750
+ readonly 8453: "0x3d4e44Eb1374240CE5F1B871ab261CD16335B76a";
23751
+ readonly 84532: "0xC5290058841028F1614F3A6F0F5816cAd0df5E27";
23752
+ };
23753
+ readonly abi: readonly [{
23754
+ readonly type: "function";
23755
+ readonly inputs: readonly [{
23756
+ readonly name: "path";
23757
+ readonly internalType: "bytes";
23758
+ readonly type: "bytes";
23759
+ }, {
23760
+ readonly name: "amountIn";
23761
+ readonly internalType: "uint256";
23762
+ readonly type: "uint256";
23763
+ }];
23764
+ readonly name: "quoteExactInput";
23765
+ readonly outputs: readonly [{
23766
+ readonly name: "amountOut";
23767
+ readonly internalType: "uint256";
23768
+ readonly type: "uint256";
23769
+ }, {
23770
+ readonly name: "sqrtPriceX96AfterList";
23771
+ readonly internalType: "uint160[]";
23772
+ readonly type: "uint160[]";
23773
+ }, {
23774
+ readonly name: "initializedTicksCrossedList";
23775
+ readonly internalType: "uint32[]";
23776
+ readonly type: "uint32[]";
23777
+ }, {
23778
+ readonly name: "gasEstimate";
23779
+ readonly internalType: "uint256";
23780
+ readonly type: "uint256";
23781
+ }];
23782
+ readonly stateMutability: "nonpayable";
23783
+ }, {
23784
+ readonly type: "function";
23785
+ readonly inputs: readonly [{
23786
+ readonly name: "params";
23787
+ readonly internalType: "struct IQuoterV2.QuoteExactInputSingleParams";
23788
+ readonly type: "tuple";
23789
+ readonly components: readonly [{
23790
+ readonly name: "tokenIn";
23791
+ readonly internalType: "address";
23792
+ readonly type: "address";
23793
+ }, {
23794
+ readonly name: "tokenOut";
23795
+ readonly internalType: "address";
23796
+ readonly type: "address";
23797
+ }, {
23798
+ readonly name: "amountIn";
23799
+ readonly internalType: "uint256";
23800
+ readonly type: "uint256";
23801
+ }, {
23802
+ readonly name: "fee";
23803
+ readonly internalType: "uint24";
23804
+ readonly type: "uint24";
23805
+ }, {
23806
+ readonly name: "sqrtPriceLimitX96";
23807
+ readonly internalType: "uint160";
23808
+ readonly type: "uint160";
23809
+ }];
23810
+ }];
23811
+ readonly name: "quoteExactInputSingle";
23812
+ readonly outputs: readonly [{
23813
+ readonly name: "amountOut";
23814
+ readonly internalType: "uint256";
23815
+ readonly type: "uint256";
23816
+ }, {
23817
+ readonly name: "sqrtPriceX96After";
23818
+ readonly internalType: "uint160";
23819
+ readonly type: "uint160";
23820
+ }, {
23821
+ readonly name: "initializedTicksCrossed";
23822
+ readonly internalType: "uint32";
23823
+ readonly type: "uint32";
23824
+ }, {
23825
+ readonly name: "gasEstimate";
23826
+ readonly internalType: "uint256";
23827
+ readonly type: "uint256";
23828
+ }];
23829
+ readonly stateMutability: "nonpayable";
23830
+ }, {
23831
+ readonly type: "function";
23832
+ readonly inputs: readonly [{
23833
+ readonly name: "path";
23834
+ readonly internalType: "bytes";
23835
+ readonly type: "bytes";
23836
+ }, {
23837
+ readonly name: "amountOut";
23838
+ readonly internalType: "uint256";
23839
+ readonly type: "uint256";
23840
+ }];
23841
+ readonly name: "quoteExactOutput";
23842
+ readonly outputs: readonly [{
23843
+ readonly name: "amountIn";
23844
+ readonly internalType: "uint256";
23845
+ readonly type: "uint256";
23846
+ }, {
23847
+ readonly name: "sqrtPriceX96AfterList";
23848
+ readonly internalType: "uint160[]";
23849
+ readonly type: "uint160[]";
23850
+ }, {
23851
+ readonly name: "initializedTicksCrossedList";
23852
+ readonly internalType: "uint32[]";
23853
+ readonly type: "uint32[]";
23854
+ }, {
23855
+ readonly name: "gasEstimate";
23856
+ readonly internalType: "uint256";
23857
+ readonly type: "uint256";
23858
+ }];
23859
+ readonly stateMutability: "nonpayable";
23860
+ }, {
23861
+ readonly type: "function";
23862
+ readonly inputs: readonly [{
23863
+ readonly name: "params";
23864
+ readonly internalType: "struct IQuoterV2.QuoteExactOutputSingleParams";
23865
+ readonly type: "tuple";
23866
+ readonly components: readonly [{
23867
+ readonly name: "tokenIn";
23868
+ readonly internalType: "address";
23869
+ readonly type: "address";
23870
+ }, {
23871
+ readonly name: "tokenOut";
23872
+ readonly internalType: "address";
23873
+ readonly type: "address";
23874
+ }, {
23875
+ readonly name: "amount";
23876
+ readonly internalType: "uint256";
23877
+ readonly type: "uint256";
23878
+ }, {
23879
+ readonly name: "fee";
23880
+ readonly internalType: "uint24";
23881
+ readonly type: "uint24";
23882
+ }, {
23883
+ readonly name: "sqrtPriceLimitX96";
23884
+ readonly internalType: "uint160";
23885
+ readonly type: "uint160";
23886
+ }];
23887
+ }];
23888
+ readonly name: "quoteExactOutputSingle";
23889
+ readonly outputs: readonly [{
23890
+ readonly name: "amountIn";
23891
+ readonly internalType: "uint256";
23892
+ readonly type: "uint256";
23893
+ }, {
23894
+ readonly name: "sqrtPriceX96After";
23895
+ readonly internalType: "uint160";
23896
+ readonly type: "uint160";
23897
+ }, {
23898
+ readonly name: "initializedTicksCrossed";
23899
+ readonly internalType: "uint32";
23900
+ readonly type: "uint32";
23901
+ }, {
23902
+ readonly name: "gasEstimate";
23903
+ readonly internalType: "uint256";
23904
+ readonly type: "uint256";
23905
+ }];
23906
+ readonly stateMutability: "nonpayable";
23907
+ }];
23908
+ };
23050
23909
  /**
23051
23910
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x6ff5693b99212da76ad316178a184ab56d299b43)
23052
23911
  * - [__View Contract on Base Sepolia Basescan__](https://sepolia.basescan.org/address/0x492E6456D9528771018DeB9E87ef7750EF184104)