@curvefi/api 2.54.8 → 2.55.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,662 @@
1
+ [
2
+ {
3
+ "name": "TwocryptoPoolDeployed",
4
+ "inputs": [
5
+ {
6
+ "name": "pool",
7
+ "type": "address",
8
+ "indexed": false
9
+ },
10
+ {
11
+ "name": "name",
12
+ "type": "string",
13
+ "indexed": false
14
+ },
15
+ {
16
+ "name": "symbol",
17
+ "type": "string",
18
+ "indexed": false
19
+ },
20
+ {
21
+ "name": "coins",
22
+ "type": "address[2]",
23
+ "indexed": false
24
+ },
25
+ {
26
+ "name": "math",
27
+ "type": "address",
28
+ "indexed": false
29
+ },
30
+ {
31
+ "name": "salt",
32
+ "type": "bytes32",
33
+ "indexed": false
34
+ },
35
+ {
36
+ "name": "precisions",
37
+ "type": "uint256[2]",
38
+ "indexed": false
39
+ },
40
+ {
41
+ "name": "packed_A_gamma",
42
+ "type": "uint256",
43
+ "indexed": false
44
+ },
45
+ {
46
+ "name": "packed_fee_params",
47
+ "type": "uint256",
48
+ "indexed": false
49
+ },
50
+ {
51
+ "name": "packed_rebalancing_params",
52
+ "type": "uint256",
53
+ "indexed": false
54
+ },
55
+ {
56
+ "name": "packed_prices",
57
+ "type": "uint256",
58
+ "indexed": false
59
+ },
60
+ {
61
+ "name": "deployer",
62
+ "type": "address",
63
+ "indexed": false
64
+ }
65
+ ],
66
+ "anonymous": false,
67
+ "type": "event"
68
+ },
69
+ {
70
+ "name": "LiquidityGaugeDeployed",
71
+ "inputs": [
72
+ {
73
+ "name": "pool",
74
+ "type": "address",
75
+ "indexed": false
76
+ },
77
+ {
78
+ "name": "gauge",
79
+ "type": "address",
80
+ "indexed": false
81
+ }
82
+ ],
83
+ "anonymous": false,
84
+ "type": "event"
85
+ },
86
+ {
87
+ "name": "UpdateFeeReceiver",
88
+ "inputs": [
89
+ {
90
+ "name": "_old_fee_receiver",
91
+ "type": "address",
92
+ "indexed": false
93
+ },
94
+ {
95
+ "name": "_new_fee_receiver",
96
+ "type": "address",
97
+ "indexed": false
98
+ }
99
+ ],
100
+ "anonymous": false,
101
+ "type": "event"
102
+ },
103
+ {
104
+ "name": "UpdatePoolImplementation",
105
+ "inputs": [
106
+ {
107
+ "name": "_implemention_id",
108
+ "type": "uint256",
109
+ "indexed": false
110
+ },
111
+ {
112
+ "name": "_old_pool_implementation",
113
+ "type": "address",
114
+ "indexed": false
115
+ },
116
+ {
117
+ "name": "_new_pool_implementation",
118
+ "type": "address",
119
+ "indexed": false
120
+ }
121
+ ],
122
+ "anonymous": false,
123
+ "type": "event"
124
+ },
125
+ {
126
+ "name": "UpdateGaugeImplementation",
127
+ "inputs": [
128
+ {
129
+ "name": "_old_gauge_implementation",
130
+ "type": "address",
131
+ "indexed": false
132
+ },
133
+ {
134
+ "name": "_new_gauge_implementation",
135
+ "type": "address",
136
+ "indexed": false
137
+ }
138
+ ],
139
+ "anonymous": false,
140
+ "type": "event"
141
+ },
142
+ {
143
+ "name": "UpdateMathImplementation",
144
+ "inputs": [
145
+ {
146
+ "name": "_old_math_implementation",
147
+ "type": "address",
148
+ "indexed": false
149
+ },
150
+ {
151
+ "name": "_new_math_implementation",
152
+ "type": "address",
153
+ "indexed": false
154
+ }
155
+ ],
156
+ "anonymous": false,
157
+ "type": "event"
158
+ },
159
+ {
160
+ "name": "UpdateViewsImplementation",
161
+ "inputs": [
162
+ {
163
+ "name": "_old_views_implementation",
164
+ "type": "address",
165
+ "indexed": false
166
+ },
167
+ {
168
+ "name": "_new_views_implementation",
169
+ "type": "address",
170
+ "indexed": false
171
+ }
172
+ ],
173
+ "anonymous": false,
174
+ "type": "event"
175
+ },
176
+ {
177
+ "name": "TransferOwnership",
178
+ "inputs": [
179
+ {
180
+ "name": "_old_owner",
181
+ "type": "address",
182
+ "indexed": false
183
+ },
184
+ {
185
+ "name": "_new_owner",
186
+ "type": "address",
187
+ "indexed": false
188
+ }
189
+ ],
190
+ "anonymous": false,
191
+ "type": "event"
192
+ },
193
+ {
194
+ "stateMutability": "nonpayable",
195
+ "type": "constructor",
196
+ "inputs": [],
197
+ "outputs": []
198
+ },
199
+ {
200
+ "stateMutability": "nonpayable",
201
+ "type": "function",
202
+ "name": "initialise_ownership",
203
+ "inputs": [
204
+ {
205
+ "name": "_fee_receiver",
206
+ "type": "address"
207
+ },
208
+ {
209
+ "name": "_admin",
210
+ "type": "address"
211
+ }
212
+ ],
213
+ "outputs": []
214
+ },
215
+ {
216
+ "stateMutability": "nonpayable",
217
+ "type": "function",
218
+ "name": "deploy_pool",
219
+ "inputs": [
220
+ {
221
+ "name": "_name",
222
+ "type": "string"
223
+ },
224
+ {
225
+ "name": "_symbol",
226
+ "type": "string"
227
+ },
228
+ {
229
+ "name": "_coins",
230
+ "type": "address[2]"
231
+ },
232
+ {
233
+ "name": "implementation_id",
234
+ "type": "uint256"
235
+ },
236
+ {
237
+ "name": "A",
238
+ "type": "uint256"
239
+ },
240
+ {
241
+ "name": "gamma",
242
+ "type": "uint256"
243
+ },
244
+ {
245
+ "name": "mid_fee",
246
+ "type": "uint256"
247
+ },
248
+ {
249
+ "name": "out_fee",
250
+ "type": "uint256"
251
+ },
252
+ {
253
+ "name": "fee_gamma",
254
+ "type": "uint256"
255
+ },
256
+ {
257
+ "name": "allowed_extra_profit",
258
+ "type": "uint256"
259
+ },
260
+ {
261
+ "name": "adjustment_step",
262
+ "type": "uint256"
263
+ },
264
+ {
265
+ "name": "ma_exp_time",
266
+ "type": "uint256"
267
+ },
268
+ {
269
+ "name": "initial_price",
270
+ "type": "uint256"
271
+ }
272
+ ],
273
+ "outputs": [
274
+ {
275
+ "name": "",
276
+ "type": "address"
277
+ }
278
+ ]
279
+ },
280
+ {
281
+ "stateMutability": "nonpayable",
282
+ "type": "function",
283
+ "name": "deploy_gauge",
284
+ "inputs": [
285
+ {
286
+ "name": "_pool",
287
+ "type": "address"
288
+ }
289
+ ],
290
+ "outputs": [
291
+ {
292
+ "name": "",
293
+ "type": "address"
294
+ }
295
+ ]
296
+ },
297
+ {
298
+ "stateMutability": "nonpayable",
299
+ "type": "function",
300
+ "name": "set_fee_receiver",
301
+ "inputs": [
302
+ {
303
+ "name": "_fee_receiver",
304
+ "type": "address"
305
+ }
306
+ ],
307
+ "outputs": []
308
+ },
309
+ {
310
+ "stateMutability": "nonpayable",
311
+ "type": "function",
312
+ "name": "set_pool_implementation",
313
+ "inputs": [
314
+ {
315
+ "name": "_pool_implementation",
316
+ "type": "address"
317
+ },
318
+ {
319
+ "name": "_implementation_index",
320
+ "type": "uint256"
321
+ }
322
+ ],
323
+ "outputs": []
324
+ },
325
+ {
326
+ "stateMutability": "nonpayable",
327
+ "type": "function",
328
+ "name": "set_gauge_implementation",
329
+ "inputs": [
330
+ {
331
+ "name": "_gauge_implementation",
332
+ "type": "address"
333
+ }
334
+ ],
335
+ "outputs": []
336
+ },
337
+ {
338
+ "stateMutability": "nonpayable",
339
+ "type": "function",
340
+ "name": "set_views_implementation",
341
+ "inputs": [
342
+ {
343
+ "name": "_views_implementation",
344
+ "type": "address"
345
+ }
346
+ ],
347
+ "outputs": []
348
+ },
349
+ {
350
+ "stateMutability": "nonpayable",
351
+ "type": "function",
352
+ "name": "set_math_implementation",
353
+ "inputs": [
354
+ {
355
+ "name": "_math_implementation",
356
+ "type": "address"
357
+ }
358
+ ],
359
+ "outputs": []
360
+ },
361
+ {
362
+ "stateMutability": "nonpayable",
363
+ "type": "function",
364
+ "name": "commit_transfer_ownership",
365
+ "inputs": [
366
+ {
367
+ "name": "_addr",
368
+ "type": "address"
369
+ }
370
+ ],
371
+ "outputs": []
372
+ },
373
+ {
374
+ "stateMutability": "nonpayable",
375
+ "type": "function",
376
+ "name": "accept_transfer_ownership",
377
+ "inputs": [],
378
+ "outputs": []
379
+ },
380
+ {
381
+ "stateMutability": "view",
382
+ "type": "function",
383
+ "name": "find_pool_for_coins",
384
+ "inputs": [
385
+ {
386
+ "name": "_from",
387
+ "type": "address"
388
+ },
389
+ {
390
+ "name": "_to",
391
+ "type": "address"
392
+ }
393
+ ],
394
+ "outputs": [
395
+ {
396
+ "name": "",
397
+ "type": "address"
398
+ }
399
+ ]
400
+ },
401
+ {
402
+ "stateMutability": "view",
403
+ "type": "function",
404
+ "name": "find_pool_for_coins",
405
+ "inputs": [
406
+ {
407
+ "name": "_from",
408
+ "type": "address"
409
+ },
410
+ {
411
+ "name": "_to",
412
+ "type": "address"
413
+ },
414
+ {
415
+ "name": "i",
416
+ "type": "uint256"
417
+ }
418
+ ],
419
+ "outputs": [
420
+ {
421
+ "name": "",
422
+ "type": "address"
423
+ }
424
+ ]
425
+ },
426
+ {
427
+ "stateMutability": "view",
428
+ "type": "function",
429
+ "name": "pool_count",
430
+ "inputs": [],
431
+ "outputs": [
432
+ {
433
+ "name": "",
434
+ "type": "uint256"
435
+ }
436
+ ]
437
+ },
438
+ {
439
+ "stateMutability": "view",
440
+ "type": "function",
441
+ "name": "get_coins",
442
+ "inputs": [
443
+ {
444
+ "name": "_pool",
445
+ "type": "address"
446
+ }
447
+ ],
448
+ "outputs": [
449
+ {
450
+ "name": "",
451
+ "type": "address[2]"
452
+ }
453
+ ]
454
+ },
455
+ {
456
+ "stateMutability": "view",
457
+ "type": "function",
458
+ "name": "get_decimals",
459
+ "inputs": [
460
+ {
461
+ "name": "_pool",
462
+ "type": "address"
463
+ }
464
+ ],
465
+ "outputs": [
466
+ {
467
+ "name": "",
468
+ "type": "uint256[2]"
469
+ }
470
+ ]
471
+ },
472
+ {
473
+ "stateMutability": "view",
474
+ "type": "function",
475
+ "name": "get_balances",
476
+ "inputs": [
477
+ {
478
+ "name": "_pool",
479
+ "type": "address"
480
+ }
481
+ ],
482
+ "outputs": [
483
+ {
484
+ "name": "",
485
+ "type": "uint256[2]"
486
+ }
487
+ ]
488
+ },
489
+ {
490
+ "stateMutability": "view",
491
+ "type": "function",
492
+ "name": "get_coin_indices",
493
+ "inputs": [
494
+ {
495
+ "name": "_pool",
496
+ "type": "address"
497
+ },
498
+ {
499
+ "name": "_from",
500
+ "type": "address"
501
+ },
502
+ {
503
+ "name": "_to",
504
+ "type": "address"
505
+ }
506
+ ],
507
+ "outputs": [
508
+ {
509
+ "name": "",
510
+ "type": "uint256"
511
+ },
512
+ {
513
+ "name": "",
514
+ "type": "uint256"
515
+ }
516
+ ]
517
+ },
518
+ {
519
+ "stateMutability": "view",
520
+ "type": "function",
521
+ "name": "get_gauge",
522
+ "inputs": [
523
+ {
524
+ "name": "_pool",
525
+ "type": "address"
526
+ }
527
+ ],
528
+ "outputs": [
529
+ {
530
+ "name": "",
531
+ "type": "address"
532
+ }
533
+ ]
534
+ },
535
+ {
536
+ "stateMutability": "view",
537
+ "type": "function",
538
+ "name": "get_market_counts",
539
+ "inputs": [
540
+ {
541
+ "name": "coin_a",
542
+ "type": "address"
543
+ },
544
+ {
545
+ "name": "coin_b",
546
+ "type": "address"
547
+ }
548
+ ],
549
+ "outputs": [
550
+ {
551
+ "name": "",
552
+ "type": "uint256"
553
+ }
554
+ ]
555
+ },
556
+ {
557
+ "stateMutability": "view",
558
+ "type": "function",
559
+ "name": "admin",
560
+ "inputs": [],
561
+ "outputs": [
562
+ {
563
+ "name": "",
564
+ "type": "address"
565
+ }
566
+ ]
567
+ },
568
+ {
569
+ "stateMutability": "view",
570
+ "type": "function",
571
+ "name": "future_admin",
572
+ "inputs": [],
573
+ "outputs": [
574
+ {
575
+ "name": "",
576
+ "type": "address"
577
+ }
578
+ ]
579
+ },
580
+ {
581
+ "stateMutability": "view",
582
+ "type": "function",
583
+ "name": "fee_receiver",
584
+ "inputs": [],
585
+ "outputs": [
586
+ {
587
+ "name": "",
588
+ "type": "address"
589
+ }
590
+ ]
591
+ },
592
+ {
593
+ "stateMutability": "view",
594
+ "type": "function",
595
+ "name": "pool_implementations",
596
+ "inputs": [
597
+ {
598
+ "name": "arg0",
599
+ "type": "uint256"
600
+ }
601
+ ],
602
+ "outputs": [
603
+ {
604
+ "name": "",
605
+ "type": "address"
606
+ }
607
+ ]
608
+ },
609
+ {
610
+ "stateMutability": "view",
611
+ "type": "function",
612
+ "name": "gauge_implementation",
613
+ "inputs": [],
614
+ "outputs": [
615
+ {
616
+ "name": "",
617
+ "type": "address"
618
+ }
619
+ ]
620
+ },
621
+ {
622
+ "stateMutability": "view",
623
+ "type": "function",
624
+ "name": "views_implementation",
625
+ "inputs": [],
626
+ "outputs": [
627
+ {
628
+ "name": "",
629
+ "type": "address"
630
+ }
631
+ ]
632
+ },
633
+ {
634
+ "stateMutability": "view",
635
+ "type": "function",
636
+ "name": "math_implementation",
637
+ "inputs": [],
638
+ "outputs": [
639
+ {
640
+ "name": "",
641
+ "type": "address"
642
+ }
643
+ ]
644
+ },
645
+ {
646
+ "stateMutability": "view",
647
+ "type": "function",
648
+ "name": "pool_list",
649
+ "inputs": [
650
+ {
651
+ "name": "arg0",
652
+ "type": "uint256"
653
+ }
654
+ ],
655
+ "outputs": [
656
+ {
657
+ "name": "",
658
+ "type": "address"
659
+ }
660
+ ]
661
+ }
662
+ ]
@@ -12,3 +12,4 @@ export declare const ALIASES_CELO: import("../interfaces.js").IDict<string>;
12
12
  export declare const ALIASES_ZKSYNC: import("../interfaces.js").IDict<string>;
13
13
  export declare const ALIASES_BASE: import("../interfaces.js").IDict<string>;
14
14
  export declare const ALIASES_BSC: import("../interfaces.js").IDict<string>;
15
+ export declare const ALIASES_FRAXTAL: import("../interfaces.js").IDict<string>;