@curvefi/api 2.63.3 → 2.63.5

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