@venusprotocol/isolated-pools 2.1.0-dev.3 → 2.1.0-dev.4

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.
@@ -2311,6 +2311,307 @@
2311
2311
  }
2312
2312
  ]
2313
2313
  },
2314
+ "JumpRateModelV2_base200bps_slope1000bps_jump25000bps_kink5000bps": {
2315
+ "address": "0x0820d5DA817Ac2eAf3757829B255B56354188bd1",
2316
+ "abi": [
2317
+ {
2318
+ "inputs": [
2319
+ {
2320
+ "internalType": "uint256",
2321
+ "name": "baseRatePerYear",
2322
+ "type": "uint256"
2323
+ },
2324
+ {
2325
+ "internalType": "uint256",
2326
+ "name": "multiplierPerYear",
2327
+ "type": "uint256"
2328
+ },
2329
+ {
2330
+ "internalType": "uint256",
2331
+ "name": "jumpMultiplierPerYear",
2332
+ "type": "uint256"
2333
+ },
2334
+ {
2335
+ "internalType": "uint256",
2336
+ "name": "kink_",
2337
+ "type": "uint256"
2338
+ },
2339
+ {
2340
+ "internalType": "contract IAccessControlManagerV8",
2341
+ "name": "accessControlManager_",
2342
+ "type": "address"
2343
+ }
2344
+ ],
2345
+ "stateMutability": "nonpayable",
2346
+ "type": "constructor"
2347
+ },
2348
+ {
2349
+ "inputs": [
2350
+ {
2351
+ "internalType": "address",
2352
+ "name": "sender",
2353
+ "type": "address"
2354
+ },
2355
+ {
2356
+ "internalType": "address",
2357
+ "name": "calledContract",
2358
+ "type": "address"
2359
+ },
2360
+ {
2361
+ "internalType": "string",
2362
+ "name": "methodSignature",
2363
+ "type": "string"
2364
+ }
2365
+ ],
2366
+ "name": "Unauthorized",
2367
+ "type": "error"
2368
+ },
2369
+ {
2370
+ "anonymous": false,
2371
+ "inputs": [
2372
+ {
2373
+ "indexed": false,
2374
+ "internalType": "uint256",
2375
+ "name": "baseRatePerBlock",
2376
+ "type": "uint256"
2377
+ },
2378
+ {
2379
+ "indexed": false,
2380
+ "internalType": "uint256",
2381
+ "name": "multiplierPerBlock",
2382
+ "type": "uint256"
2383
+ },
2384
+ {
2385
+ "indexed": false,
2386
+ "internalType": "uint256",
2387
+ "name": "jumpMultiplierPerBlock",
2388
+ "type": "uint256"
2389
+ },
2390
+ {
2391
+ "indexed": false,
2392
+ "internalType": "uint256",
2393
+ "name": "kink",
2394
+ "type": "uint256"
2395
+ }
2396
+ ],
2397
+ "name": "NewInterestParams",
2398
+ "type": "event"
2399
+ },
2400
+ {
2401
+ "inputs": [],
2402
+ "name": "accessControlManager",
2403
+ "outputs": [
2404
+ {
2405
+ "internalType": "contract IAccessControlManagerV8",
2406
+ "name": "",
2407
+ "type": "address"
2408
+ }
2409
+ ],
2410
+ "stateMutability": "view",
2411
+ "type": "function"
2412
+ },
2413
+ {
2414
+ "inputs": [],
2415
+ "name": "baseRatePerBlock",
2416
+ "outputs": [
2417
+ {
2418
+ "internalType": "uint256",
2419
+ "name": "",
2420
+ "type": "uint256"
2421
+ }
2422
+ ],
2423
+ "stateMutability": "view",
2424
+ "type": "function"
2425
+ },
2426
+ {
2427
+ "inputs": [
2428
+ {
2429
+ "internalType": "uint256",
2430
+ "name": "cash",
2431
+ "type": "uint256"
2432
+ },
2433
+ {
2434
+ "internalType": "uint256",
2435
+ "name": "borrows",
2436
+ "type": "uint256"
2437
+ },
2438
+ {
2439
+ "internalType": "uint256",
2440
+ "name": "reserves",
2441
+ "type": "uint256"
2442
+ },
2443
+ {
2444
+ "internalType": "uint256",
2445
+ "name": "badDebt",
2446
+ "type": "uint256"
2447
+ }
2448
+ ],
2449
+ "name": "getBorrowRate",
2450
+ "outputs": [
2451
+ {
2452
+ "internalType": "uint256",
2453
+ "name": "",
2454
+ "type": "uint256"
2455
+ }
2456
+ ],
2457
+ "stateMutability": "view",
2458
+ "type": "function"
2459
+ },
2460
+ {
2461
+ "inputs": [
2462
+ {
2463
+ "internalType": "uint256",
2464
+ "name": "cash",
2465
+ "type": "uint256"
2466
+ },
2467
+ {
2468
+ "internalType": "uint256",
2469
+ "name": "borrows",
2470
+ "type": "uint256"
2471
+ },
2472
+ {
2473
+ "internalType": "uint256",
2474
+ "name": "reserves",
2475
+ "type": "uint256"
2476
+ },
2477
+ {
2478
+ "internalType": "uint256",
2479
+ "name": "reserveFactorMantissa",
2480
+ "type": "uint256"
2481
+ },
2482
+ {
2483
+ "internalType": "uint256",
2484
+ "name": "badDebt",
2485
+ "type": "uint256"
2486
+ }
2487
+ ],
2488
+ "name": "getSupplyRate",
2489
+ "outputs": [
2490
+ {
2491
+ "internalType": "uint256",
2492
+ "name": "",
2493
+ "type": "uint256"
2494
+ }
2495
+ ],
2496
+ "stateMutability": "view",
2497
+ "type": "function"
2498
+ },
2499
+ {
2500
+ "inputs": [],
2501
+ "name": "isInterestRateModel",
2502
+ "outputs": [
2503
+ {
2504
+ "internalType": "bool",
2505
+ "name": "",
2506
+ "type": "bool"
2507
+ }
2508
+ ],
2509
+ "stateMutability": "pure",
2510
+ "type": "function"
2511
+ },
2512
+ {
2513
+ "inputs": [],
2514
+ "name": "jumpMultiplierPerBlock",
2515
+ "outputs": [
2516
+ {
2517
+ "internalType": "uint256",
2518
+ "name": "",
2519
+ "type": "uint256"
2520
+ }
2521
+ ],
2522
+ "stateMutability": "view",
2523
+ "type": "function"
2524
+ },
2525
+ {
2526
+ "inputs": [],
2527
+ "name": "kink",
2528
+ "outputs": [
2529
+ {
2530
+ "internalType": "uint256",
2531
+ "name": "",
2532
+ "type": "uint256"
2533
+ }
2534
+ ],
2535
+ "stateMutability": "view",
2536
+ "type": "function"
2537
+ },
2538
+ {
2539
+ "inputs": [],
2540
+ "name": "multiplierPerBlock",
2541
+ "outputs": [
2542
+ {
2543
+ "internalType": "uint256",
2544
+ "name": "",
2545
+ "type": "uint256"
2546
+ }
2547
+ ],
2548
+ "stateMutability": "view",
2549
+ "type": "function"
2550
+ },
2551
+ {
2552
+ "inputs": [
2553
+ {
2554
+ "internalType": "uint256",
2555
+ "name": "baseRatePerYear",
2556
+ "type": "uint256"
2557
+ },
2558
+ {
2559
+ "internalType": "uint256",
2560
+ "name": "multiplierPerYear",
2561
+ "type": "uint256"
2562
+ },
2563
+ {
2564
+ "internalType": "uint256",
2565
+ "name": "jumpMultiplierPerYear",
2566
+ "type": "uint256"
2567
+ },
2568
+ {
2569
+ "internalType": "uint256",
2570
+ "name": "kink_",
2571
+ "type": "uint256"
2572
+ }
2573
+ ],
2574
+ "name": "updateJumpRateModel",
2575
+ "outputs": [],
2576
+ "stateMutability": "nonpayable",
2577
+ "type": "function"
2578
+ },
2579
+ {
2580
+ "inputs": [
2581
+ {
2582
+ "internalType": "uint256",
2583
+ "name": "cash",
2584
+ "type": "uint256"
2585
+ },
2586
+ {
2587
+ "internalType": "uint256",
2588
+ "name": "borrows",
2589
+ "type": "uint256"
2590
+ },
2591
+ {
2592
+ "internalType": "uint256",
2593
+ "name": "reserves",
2594
+ "type": "uint256"
2595
+ },
2596
+ {
2597
+ "internalType": "uint256",
2598
+ "name": "badDebt",
2599
+ "type": "uint256"
2600
+ }
2601
+ ],
2602
+ "name": "utilizationRate",
2603
+ "outputs": [
2604
+ {
2605
+ "internalType": "uint256",
2606
+ "name": "",
2607
+ "type": "uint256"
2608
+ }
2609
+ ],
2610
+ "stateMutability": "pure",
2611
+ "type": "function"
2612
+ }
2613
+ ]
2614
+ },
2314
2615
  "JumpRateModelV2_base200bps_slope1000bps_jump30000bps_kink8000bps": {
2315
2616
  "address": "0x4021Da92B4e64126Cd5A2d6B305FB0e9e4ed2024",
2316
2617
  "abi": [
@@ -21424,8 +21725,8 @@
21424
21725
  }
21425
21726
  ]
21426
21727
  },
21427
- "RewardsDistributor_Tron_0": {
21428
- "address": "0x804F3893d3c1C3EFFDf778eDDa7C199129235882",
21728
+ "RewardsDistributor_Stablecoins_2": {
21729
+ "address": "0x177ED4625F57cEa2804EA3A396c8Ff78f314F1CA",
21429
21730
  "abi": [
21430
21731
  {
21431
21732
  "anonymous": false,
@@ -22556,8 +22857,8 @@
22556
22857
  }
22557
22858
  ]
22558
22859
  },
22559
- "RewardsDistributor_Tron_0_Proxy": {
22560
- "address": "0x804F3893d3c1C3EFFDf778eDDa7C199129235882",
22860
+ "RewardsDistributor_Stablecoins_2_Proxy": {
22861
+ "address": "0x177ED4625F57cEa2804EA3A396c8Ff78f314F1CA",
22561
22862
  "abi": [
22562
22863
  {
22563
22864
  "inputs": [
@@ -22705,8 +23006,8 @@
22705
23006
  }
22706
23007
  ]
22707
23008
  },
22708
- "RewardsDistributor_Tron_1": {
22709
- "address": "0x6536123503DF76BDfF8207e4Fb0C594Bc5eFD00A",
23009
+ "RewardsDistributor_Tron_0": {
23010
+ "address": "0x804F3893d3c1C3EFFDf778eDDa7C199129235882",
22710
23011
  "abi": [
22711
23012
  {
22712
23013
  "anonymous": false,
@@ -23837,8 +24138,8 @@
23837
24138
  }
23838
24139
  ]
23839
24140
  },
23840
- "RewardsDistributor_Tron_1_Proxy": {
23841
- "address": "0x6536123503DF76BDfF8207e4Fb0C594Bc5eFD00A",
24141
+ "RewardsDistributor_Tron_0_Proxy": {
24142
+ "address": "0x804F3893d3c1C3EFFDf778eDDa7C199129235882",
23842
24143
  "abi": [
23843
24144
  {
23844
24145
  "inputs": [
@@ -23986,8 +24287,8 @@
23986
24287
  }
23987
24288
  ]
23988
24289
  },
23989
- "RewardsDistributor_Tron_2": {
23990
- "address": "0x22af8a65639a351a9D5d77d5a25ea5e1Cf5e9E6b",
24290
+ "RewardsDistributor_Tron_1": {
24291
+ "address": "0x6536123503DF76BDfF8207e4Fb0C594Bc5eFD00A",
23991
24292
  "abi": [
23992
24293
  {
23993
24294
  "anonymous": false,
@@ -25118,8 +25419,8 @@
25118
25419
  }
25119
25420
  ]
25120
25421
  },
25121
- "RewardsDistributor_Tron_2_Proxy": {
25122
- "address": "0x22af8a65639a351a9D5d77d5a25ea5e1Cf5e9E6b",
25422
+ "RewardsDistributor_Tron_1_Proxy": {
25423
+ "address": "0x6536123503DF76BDfF8207e4Fb0C594Bc5eFD00A",
25123
25424
  "abi": [
25124
25425
  {
25125
25426
  "inputs": [
@@ -25267,8 +25568,8 @@
25267
25568
  }
25268
25569
  ]
25269
25570
  },
25270
- "RewardsDistributor_Tron_3": {
25271
- "address": "0x08e4AFd80A5849FDBa4bBeea86ed470D697e4C54",
25571
+ "RewardsDistributor_Tron_2": {
25572
+ "address": "0x22af8a65639a351a9D5d77d5a25ea5e1Cf5e9E6b",
25272
25573
  "abi": [
25273
25574
  {
25274
25575
  "anonymous": false,
@@ -26399,8 +26700,8 @@
26399
26700
  }
26400
26701
  ]
26401
26702
  },
26402
- "RewardsDistributor_Tron_3_Proxy": {
26403
- "address": "0x08e4AFd80A5849FDBa4bBeea86ed470D697e4C54",
26703
+ "RewardsDistributor_Tron_2_Proxy": {
26704
+ "address": "0x22af8a65639a351a9D5d77d5a25ea5e1Cf5e9E6b",
26404
26705
  "abi": [
26405
26706
  {
26406
26707
  "inputs": [
@@ -26548,8 +26849,8 @@
26548
26849
  }
26549
26850
  ]
26550
26851
  },
26551
- "RiskFund": {
26552
- "address": "0xdF31a28D68A2AB381D42b380649Ead7ae2A76E42",
26852
+ "RewardsDistributor_Tron_3": {
26853
+ "address": "0x08e4AFd80A5849FDBa4bBeea86ed470D697e4C54",
26553
26854
  "abi": [
26554
26855
  {
26555
26856
  "anonymous": false,
@@ -26674,11 +26975,6 @@
26674
26975
  "stateMutability": "payable",
26675
26976
  "type": "receive"
26676
26977
  },
26677
- {
26678
- "inputs": [],
26679
- "name": "ApproveFailed",
26680
- "type": "error"
26681
- },
26682
26978
  {
26683
26979
  "inputs": [
26684
26980
  {
@@ -26717,9 +27013,23 @@
26717
27013
  "type": "error"
26718
27014
  },
26719
27015
  {
26720
- "inputs": [],
26721
- "name": "ZeroAddressNotAllowed",
26722
- "type": "error"
27016
+ "anonymous": false,
27017
+ "inputs": [
27018
+ {
27019
+ "indexed": true,
27020
+ "internalType": "address",
27021
+ "name": "vToken",
27022
+ "type": "address"
27023
+ },
27024
+ {
27025
+ "indexed": false,
27026
+ "internalType": "uint32",
27027
+ "name": "newBlock",
27028
+ "type": "uint32"
27029
+ }
27030
+ ],
27031
+ "name": "BorrowLastRewardingBlockUpdated",
27032
+ "type": "event"
26723
27033
  },
26724
27034
  {
26725
27035
  "anonymous": false,
@@ -26727,42 +27037,110 @@
26727
27037
  {
26728
27038
  "indexed": true,
26729
27039
  "internalType": "address",
26730
- "name": "comptroller",
27040
+ "name": "contributor",
26731
27041
  "type": "address"
26732
27042
  },
27043
+ {
27044
+ "indexed": false,
27045
+ "internalType": "uint256",
27046
+ "name": "newSpeed",
27047
+ "type": "uint256"
27048
+ }
27049
+ ],
27050
+ "name": "ContributorRewardTokenSpeedUpdated",
27051
+ "type": "event"
27052
+ },
27053
+ {
27054
+ "anonymous": false,
27055
+ "inputs": [
26733
27056
  {
26734
27057
  "indexed": true,
26735
27058
  "internalType": "address",
26736
- "name": "asset",
27059
+ "name": "contributor",
26737
27060
  "type": "address"
26738
27061
  },
26739
27062
  {
26740
27063
  "indexed": false,
26741
27064
  "internalType": "uint256",
26742
- "name": "amount",
27065
+ "name": "rewardAccrued",
26743
27066
  "type": "uint256"
26744
27067
  }
26745
27068
  ],
26746
- "name": "AssetsReservesUpdated",
27069
+ "name": "ContributorRewardsUpdated",
26747
27070
  "type": "event"
26748
27071
  },
26749
27072
  {
26750
27073
  "anonymous": false,
26751
27074
  "inputs": [
27075
+ {
27076
+ "indexed": true,
27077
+ "internalType": "contract VToken",
27078
+ "name": "vToken",
27079
+ "type": "address"
27080
+ },
26752
27081
  {
26753
27082
  "indexed": true,
26754
27083
  "internalType": "address",
26755
- "name": "oldConvertibleBaseAsset",
27084
+ "name": "borrower",
27085
+ "type": "address"
27086
+ },
27087
+ {
27088
+ "indexed": false,
27089
+ "internalType": "uint256",
27090
+ "name": "rewardTokenDelta",
27091
+ "type": "uint256"
27092
+ },
27093
+ {
27094
+ "indexed": false,
27095
+ "internalType": "uint256",
27096
+ "name": "rewardTokenTotal",
27097
+ "type": "uint256"
27098
+ },
27099
+ {
27100
+ "indexed": false,
27101
+ "internalType": "uint256",
27102
+ "name": "rewardTokenBorrowIndex",
27103
+ "type": "uint256"
27104
+ }
27105
+ ],
27106
+ "name": "DistributedBorrowerRewardToken",
27107
+ "type": "event"
27108
+ },
27109
+ {
27110
+ "anonymous": false,
27111
+ "inputs": [
27112
+ {
27113
+ "indexed": true,
27114
+ "internalType": "contract VToken",
27115
+ "name": "vToken",
26756
27116
  "type": "address"
26757
27117
  },
26758
27118
  {
26759
27119
  "indexed": true,
26760
27120
  "internalType": "address",
26761
- "name": "newConvertibleBaseAsset",
27121
+ "name": "supplier",
26762
27122
  "type": "address"
27123
+ },
27124
+ {
27125
+ "indexed": false,
27126
+ "internalType": "uint256",
27127
+ "name": "rewardTokenDelta",
27128
+ "type": "uint256"
27129
+ },
27130
+ {
27131
+ "indexed": false,
27132
+ "internalType": "uint256",
27133
+ "name": "rewardTokenTotal",
27134
+ "type": "uint256"
27135
+ },
27136
+ {
27137
+ "indexed": false,
27138
+ "internalType": "uint256",
27139
+ "name": "rewardTokenSupplyIndex",
27140
+ "type": "uint256"
26763
27141
  }
26764
27142
  ],
26765
- "name": "ConvertibleBaseAssetUpdated",
27143
+ "name": "DistributedSupplierRewardToken",
26766
27144
  "type": "event"
26767
27145
  },
26768
27146
  {
@@ -26782,19 +27160,13 @@
26782
27160
  "anonymous": false,
26783
27161
  "inputs": [
26784
27162
  {
26785
- "indexed": false,
26786
- "internalType": "uint256",
26787
- "name": "oldMaxLoopsLimit",
26788
- "type": "uint256"
26789
- },
26790
- {
26791
- "indexed": false,
26792
- "internalType": "uint256",
26793
- "name": "newmaxLoopsLimit",
26794
- "type": "uint256"
27163
+ "indexed": true,
27164
+ "internalType": "address",
27165
+ "name": "vToken",
27166
+ "type": "address"
26795
27167
  }
26796
27168
  ],
26797
- "name": "MaxLoopsLimitUpdated",
27169
+ "name": "MarketInitialized",
26798
27170
  "type": "event"
26799
27171
  },
26800
27172
  {
@@ -26803,17 +27175,17 @@
26803
27175
  {
26804
27176
  "indexed": false,
26805
27177
  "internalType": "uint256",
26806
- "name": "oldMinAmountToConvert",
27178
+ "name": "oldMaxLoopsLimit",
26807
27179
  "type": "uint256"
26808
27180
  },
26809
27181
  {
26810
27182
  "indexed": false,
26811
27183
  "internalType": "uint256",
26812
- "name": "newMinAmountToConvert",
27184
+ "name": "newmaxLoopsLimit",
26813
27185
  "type": "uint256"
26814
27186
  }
26815
27187
  ],
26816
- "name": "MinAmountToConvertUpdated",
27188
+ "name": "MaxLoopsLimitUpdated",
26817
27189
  "type": "event"
26818
27190
  },
26819
27191
  {
@@ -26879,17 +27251,24 @@
26879
27251
  {
26880
27252
  "indexed": true,
26881
27253
  "internalType": "address",
26882
- "name": "oldPancakeSwapRouter",
27254
+ "name": "vToken",
26883
27255
  "type": "address"
26884
27256
  },
26885
27257
  {
26886
- "indexed": true,
26887
- "internalType": "address",
26888
- "name": "newPancakeSwapRouter",
26889
- "type": "address"
27258
+ "components": [
27259
+ {
27260
+ "internalType": "uint256",
27261
+ "name": "mantissa",
27262
+ "type": "uint256"
27263
+ }
27264
+ ],
27265
+ "indexed": false,
27266
+ "internalType": "struct ExponentialNoError.Exp",
27267
+ "name": "marketBorrowIndex",
27268
+ "type": "tuple"
26890
27269
  }
26891
27270
  ],
26892
- "name": "PancakeSwapRouterUpdated",
27271
+ "name": "RewardTokenBorrowIndexUpdated",
26893
27272
  "type": "event"
26894
27273
  },
26895
27274
  {
@@ -26897,18 +27276,18 @@
26897
27276
  "inputs": [
26898
27277
  {
26899
27278
  "indexed": true,
26900
- "internalType": "address",
26901
- "name": "oldPoolRegistry",
27279
+ "internalType": "contract VToken",
27280
+ "name": "vToken",
26902
27281
  "type": "address"
26903
27282
  },
26904
27283
  {
26905
- "indexed": true,
26906
- "internalType": "address",
26907
- "name": "newPoolRegistry",
26908
- "type": "address"
27284
+ "indexed": false,
27285
+ "internalType": "uint256",
27286
+ "name": "newSpeed",
27287
+ "type": "uint256"
26909
27288
  }
26910
27289
  ],
26911
- "name": "PoolRegistryUpdated",
27290
+ "name": "RewardTokenBorrowSpeedUpdated",
26912
27291
  "type": "event"
26913
27292
  },
26914
27293
  {
@@ -26917,42 +27296,30 @@
26917
27296
  {
26918
27297
  "indexed": true,
26919
27298
  "internalType": "address",
26920
- "name": "oldShortfallContract",
27299
+ "name": "recipient",
26921
27300
  "type": "address"
26922
27301
  },
26923
27302
  {
26924
- "indexed": true,
26925
- "internalType": "address",
26926
- "name": "newShortfallContract",
26927
- "type": "address"
27303
+ "indexed": false,
27304
+ "internalType": "uint256",
27305
+ "name": "amount",
27306
+ "type": "uint256"
26928
27307
  }
26929
27308
  ],
26930
- "name": "ShortfallContractUpdated",
27309
+ "name": "RewardTokenGranted",
26931
27310
  "type": "event"
26932
27311
  },
26933
27312
  {
26934
27313
  "anonymous": false,
26935
27314
  "inputs": [
26936
27315
  {
26937
- "indexed": false,
26938
- "internalType": "address[]",
26939
- "name": "markets",
26940
- "type": "address[]"
26941
- },
26942
- {
26943
- "indexed": false,
26944
- "internalType": "uint256[]",
26945
- "name": "amountsOutMin",
26946
- "type": "uint256[]"
26947
- },
26948
- {
26949
- "indexed": false,
26950
- "internalType": "uint256",
26951
- "name": "totalAmount",
26952
- "type": "uint256"
27316
+ "indexed": true,
27317
+ "internalType": "address",
27318
+ "name": "vToken",
27319
+ "type": "address"
26953
27320
  }
26954
27321
  ],
26955
- "name": "SwappedPoolsAssets",
27322
+ "name": "RewardTokenSupplyIndexUpdated",
26956
27323
  "type": "event"
26957
27324
  },
26958
27325
  {
@@ -26960,24 +27327,18 @@
26960
27327
  "inputs": [
26961
27328
  {
26962
27329
  "indexed": true,
26963
- "internalType": "address",
26964
- "name": "token",
26965
- "type": "address"
26966
- },
26967
- {
26968
- "indexed": true,
26969
- "internalType": "address",
26970
- "name": "to",
27330
+ "internalType": "contract VToken",
27331
+ "name": "vToken",
26971
27332
  "type": "address"
26972
27333
  },
26973
27334
  {
26974
27335
  "indexed": false,
26975
27336
  "internalType": "uint256",
26976
- "name": "amount",
27337
+ "name": "newSpeed",
26977
27338
  "type": "uint256"
26978
27339
  }
26979
27340
  ],
26980
- "name": "SweepToken",
27341
+ "name": "RewardTokenSupplySpeedUpdated",
26981
27342
  "type": "event"
26982
27343
  },
26983
27344
  {
@@ -26986,17 +27347,1238 @@
26986
27347
  {
26987
27348
  "indexed": true,
26988
27349
  "internalType": "address",
26989
- "name": "comptroller",
27350
+ "name": "vToken",
26990
27351
  "type": "address"
26991
27352
  },
26992
27353
  {
26993
27354
  "indexed": false,
26994
- "internalType": "uint256",
26995
- "name": "amount",
26996
- "type": "uint256"
27355
+ "internalType": "uint32",
27356
+ "name": "newBlock",
27357
+ "type": "uint32"
26997
27358
  }
26998
27359
  ],
26999
- "name": "TransferredReserveForAuction",
27360
+ "name": "SupplyLastRewardingBlockUpdated",
27361
+ "type": "event"
27362
+ },
27363
+ {
27364
+ "inputs": [],
27365
+ "name": "INITIAL_INDEX",
27366
+ "outputs": [
27367
+ {
27368
+ "internalType": "uint224",
27369
+ "name": "",
27370
+ "type": "uint224"
27371
+ }
27372
+ ],
27373
+ "stateMutability": "view",
27374
+ "type": "function"
27375
+ },
27376
+ {
27377
+ "inputs": [],
27378
+ "name": "acceptOwnership",
27379
+ "outputs": [],
27380
+ "stateMutability": "nonpayable",
27381
+ "type": "function"
27382
+ },
27383
+ {
27384
+ "inputs": [],
27385
+ "name": "accessControlManager",
27386
+ "outputs": [
27387
+ {
27388
+ "internalType": "contract IAccessControlManagerV8",
27389
+ "name": "",
27390
+ "type": "address"
27391
+ }
27392
+ ],
27393
+ "stateMutability": "view",
27394
+ "type": "function"
27395
+ },
27396
+ {
27397
+ "inputs": [
27398
+ {
27399
+ "internalType": "address",
27400
+ "name": "holder",
27401
+ "type": "address"
27402
+ },
27403
+ {
27404
+ "internalType": "contract VToken[]",
27405
+ "name": "vTokens",
27406
+ "type": "address[]"
27407
+ }
27408
+ ],
27409
+ "name": "claimRewardToken",
27410
+ "outputs": [],
27411
+ "stateMutability": "nonpayable",
27412
+ "type": "function"
27413
+ },
27414
+ {
27415
+ "inputs": [
27416
+ {
27417
+ "internalType": "address",
27418
+ "name": "holder",
27419
+ "type": "address"
27420
+ }
27421
+ ],
27422
+ "name": "claimRewardToken",
27423
+ "outputs": [],
27424
+ "stateMutability": "nonpayable",
27425
+ "type": "function"
27426
+ },
27427
+ {
27428
+ "inputs": [
27429
+ {
27430
+ "internalType": "address",
27431
+ "name": "vToken",
27432
+ "type": "address"
27433
+ },
27434
+ {
27435
+ "internalType": "address",
27436
+ "name": "borrower",
27437
+ "type": "address"
27438
+ },
27439
+ {
27440
+ "components": [
27441
+ {
27442
+ "internalType": "uint256",
27443
+ "name": "mantissa",
27444
+ "type": "uint256"
27445
+ }
27446
+ ],
27447
+ "internalType": "struct ExponentialNoError.Exp",
27448
+ "name": "marketBorrowIndex",
27449
+ "type": "tuple"
27450
+ }
27451
+ ],
27452
+ "name": "distributeBorrowerRewardToken",
27453
+ "outputs": [],
27454
+ "stateMutability": "nonpayable",
27455
+ "type": "function"
27456
+ },
27457
+ {
27458
+ "inputs": [
27459
+ {
27460
+ "internalType": "address",
27461
+ "name": "vToken",
27462
+ "type": "address"
27463
+ },
27464
+ {
27465
+ "internalType": "address",
27466
+ "name": "supplier",
27467
+ "type": "address"
27468
+ }
27469
+ ],
27470
+ "name": "distributeSupplierRewardToken",
27471
+ "outputs": [],
27472
+ "stateMutability": "nonpayable",
27473
+ "type": "function"
27474
+ },
27475
+ {
27476
+ "inputs": [],
27477
+ "name": "getBlockNumber",
27478
+ "outputs": [
27479
+ {
27480
+ "internalType": "uint256",
27481
+ "name": "",
27482
+ "type": "uint256"
27483
+ }
27484
+ ],
27485
+ "stateMutability": "view",
27486
+ "type": "function"
27487
+ },
27488
+ {
27489
+ "inputs": [
27490
+ {
27491
+ "internalType": "address",
27492
+ "name": "recipient",
27493
+ "type": "address"
27494
+ },
27495
+ {
27496
+ "internalType": "uint256",
27497
+ "name": "amount",
27498
+ "type": "uint256"
27499
+ }
27500
+ ],
27501
+ "name": "grantRewardToken",
27502
+ "outputs": [],
27503
+ "stateMutability": "nonpayable",
27504
+ "type": "function"
27505
+ },
27506
+ {
27507
+ "inputs": [
27508
+ {
27509
+ "internalType": "contract Comptroller",
27510
+ "name": "comptroller_",
27511
+ "type": "address"
27512
+ },
27513
+ {
27514
+ "internalType": "contract IERC20Upgradeable",
27515
+ "name": "rewardToken_",
27516
+ "type": "address"
27517
+ },
27518
+ {
27519
+ "internalType": "uint256",
27520
+ "name": "loopsLimit_",
27521
+ "type": "uint256"
27522
+ },
27523
+ {
27524
+ "internalType": "address",
27525
+ "name": "accessControlManager_",
27526
+ "type": "address"
27527
+ }
27528
+ ],
27529
+ "name": "initialize",
27530
+ "outputs": [],
27531
+ "stateMutability": "nonpayable",
27532
+ "type": "function"
27533
+ },
27534
+ {
27535
+ "inputs": [
27536
+ {
27537
+ "internalType": "address",
27538
+ "name": "vToken",
27539
+ "type": "address"
27540
+ }
27541
+ ],
27542
+ "name": "initializeMarket",
27543
+ "outputs": [],
27544
+ "stateMutability": "nonpayable",
27545
+ "type": "function"
27546
+ },
27547
+ {
27548
+ "inputs": [
27549
+ {
27550
+ "internalType": "address",
27551
+ "name": "",
27552
+ "type": "address"
27553
+ }
27554
+ ],
27555
+ "name": "lastContributorBlock",
27556
+ "outputs": [
27557
+ {
27558
+ "internalType": "uint256",
27559
+ "name": "",
27560
+ "type": "uint256"
27561
+ }
27562
+ ],
27563
+ "stateMutability": "view",
27564
+ "type": "function"
27565
+ },
27566
+ {
27567
+ "inputs": [],
27568
+ "name": "maxLoopsLimit",
27569
+ "outputs": [
27570
+ {
27571
+ "internalType": "uint256",
27572
+ "name": "",
27573
+ "type": "uint256"
27574
+ }
27575
+ ],
27576
+ "stateMutability": "view",
27577
+ "type": "function"
27578
+ },
27579
+ {
27580
+ "inputs": [],
27581
+ "name": "owner",
27582
+ "outputs": [
27583
+ {
27584
+ "internalType": "address",
27585
+ "name": "",
27586
+ "type": "address"
27587
+ }
27588
+ ],
27589
+ "stateMutability": "view",
27590
+ "type": "function"
27591
+ },
27592
+ {
27593
+ "inputs": [],
27594
+ "name": "pendingOwner",
27595
+ "outputs": [
27596
+ {
27597
+ "internalType": "address",
27598
+ "name": "",
27599
+ "type": "address"
27600
+ }
27601
+ ],
27602
+ "stateMutability": "view",
27603
+ "type": "function"
27604
+ },
27605
+ {
27606
+ "inputs": [],
27607
+ "name": "renounceOwnership",
27608
+ "outputs": [],
27609
+ "stateMutability": "nonpayable",
27610
+ "type": "function"
27611
+ },
27612
+ {
27613
+ "inputs": [],
27614
+ "name": "rewardToken",
27615
+ "outputs": [
27616
+ {
27617
+ "internalType": "contract IERC20Upgradeable",
27618
+ "name": "",
27619
+ "type": "address"
27620
+ }
27621
+ ],
27622
+ "stateMutability": "view",
27623
+ "type": "function"
27624
+ },
27625
+ {
27626
+ "inputs": [
27627
+ {
27628
+ "internalType": "address",
27629
+ "name": "",
27630
+ "type": "address"
27631
+ }
27632
+ ],
27633
+ "name": "rewardTokenAccrued",
27634
+ "outputs": [
27635
+ {
27636
+ "internalType": "uint256",
27637
+ "name": "",
27638
+ "type": "uint256"
27639
+ }
27640
+ ],
27641
+ "stateMutability": "view",
27642
+ "type": "function"
27643
+ },
27644
+ {
27645
+ "inputs": [
27646
+ {
27647
+ "internalType": "address",
27648
+ "name": "",
27649
+ "type": "address"
27650
+ }
27651
+ ],
27652
+ "name": "rewardTokenBorrowSpeeds",
27653
+ "outputs": [
27654
+ {
27655
+ "internalType": "uint256",
27656
+ "name": "",
27657
+ "type": "uint256"
27658
+ }
27659
+ ],
27660
+ "stateMutability": "view",
27661
+ "type": "function"
27662
+ },
27663
+ {
27664
+ "inputs": [
27665
+ {
27666
+ "internalType": "address",
27667
+ "name": "",
27668
+ "type": "address"
27669
+ }
27670
+ ],
27671
+ "name": "rewardTokenBorrowState",
27672
+ "outputs": [
27673
+ {
27674
+ "internalType": "uint224",
27675
+ "name": "index",
27676
+ "type": "uint224"
27677
+ },
27678
+ {
27679
+ "internalType": "uint32",
27680
+ "name": "block",
27681
+ "type": "uint32"
27682
+ },
27683
+ {
27684
+ "internalType": "uint32",
27685
+ "name": "lastRewardingBlock",
27686
+ "type": "uint32"
27687
+ }
27688
+ ],
27689
+ "stateMutability": "view",
27690
+ "type": "function"
27691
+ },
27692
+ {
27693
+ "inputs": [
27694
+ {
27695
+ "internalType": "address",
27696
+ "name": "",
27697
+ "type": "address"
27698
+ },
27699
+ {
27700
+ "internalType": "address",
27701
+ "name": "",
27702
+ "type": "address"
27703
+ }
27704
+ ],
27705
+ "name": "rewardTokenBorrowerIndex",
27706
+ "outputs": [
27707
+ {
27708
+ "internalType": "uint256",
27709
+ "name": "",
27710
+ "type": "uint256"
27711
+ }
27712
+ ],
27713
+ "stateMutability": "view",
27714
+ "type": "function"
27715
+ },
27716
+ {
27717
+ "inputs": [
27718
+ {
27719
+ "internalType": "address",
27720
+ "name": "",
27721
+ "type": "address"
27722
+ }
27723
+ ],
27724
+ "name": "rewardTokenContributorSpeeds",
27725
+ "outputs": [
27726
+ {
27727
+ "internalType": "uint256",
27728
+ "name": "",
27729
+ "type": "uint256"
27730
+ }
27731
+ ],
27732
+ "stateMutability": "view",
27733
+ "type": "function"
27734
+ },
27735
+ {
27736
+ "inputs": [
27737
+ {
27738
+ "internalType": "address",
27739
+ "name": "",
27740
+ "type": "address"
27741
+ },
27742
+ {
27743
+ "internalType": "address",
27744
+ "name": "",
27745
+ "type": "address"
27746
+ }
27747
+ ],
27748
+ "name": "rewardTokenSupplierIndex",
27749
+ "outputs": [
27750
+ {
27751
+ "internalType": "uint256",
27752
+ "name": "",
27753
+ "type": "uint256"
27754
+ }
27755
+ ],
27756
+ "stateMutability": "view",
27757
+ "type": "function"
27758
+ },
27759
+ {
27760
+ "inputs": [
27761
+ {
27762
+ "internalType": "address",
27763
+ "name": "",
27764
+ "type": "address"
27765
+ }
27766
+ ],
27767
+ "name": "rewardTokenSupplySpeeds",
27768
+ "outputs": [
27769
+ {
27770
+ "internalType": "uint256",
27771
+ "name": "",
27772
+ "type": "uint256"
27773
+ }
27774
+ ],
27775
+ "stateMutability": "view",
27776
+ "type": "function"
27777
+ },
27778
+ {
27779
+ "inputs": [
27780
+ {
27781
+ "internalType": "address",
27782
+ "name": "",
27783
+ "type": "address"
27784
+ }
27785
+ ],
27786
+ "name": "rewardTokenSupplyState",
27787
+ "outputs": [
27788
+ {
27789
+ "internalType": "uint224",
27790
+ "name": "index",
27791
+ "type": "uint224"
27792
+ },
27793
+ {
27794
+ "internalType": "uint32",
27795
+ "name": "block",
27796
+ "type": "uint32"
27797
+ },
27798
+ {
27799
+ "internalType": "uint32",
27800
+ "name": "lastRewardingBlock",
27801
+ "type": "uint32"
27802
+ }
27803
+ ],
27804
+ "stateMutability": "view",
27805
+ "type": "function"
27806
+ },
27807
+ {
27808
+ "inputs": [
27809
+ {
27810
+ "internalType": "address",
27811
+ "name": "accessControlManager_",
27812
+ "type": "address"
27813
+ }
27814
+ ],
27815
+ "name": "setAccessControlManager",
27816
+ "outputs": [],
27817
+ "stateMutability": "nonpayable",
27818
+ "type": "function"
27819
+ },
27820
+ {
27821
+ "inputs": [
27822
+ {
27823
+ "internalType": "address",
27824
+ "name": "contributor",
27825
+ "type": "address"
27826
+ },
27827
+ {
27828
+ "internalType": "uint256",
27829
+ "name": "rewardTokenSpeed",
27830
+ "type": "uint256"
27831
+ }
27832
+ ],
27833
+ "name": "setContributorRewardTokenSpeed",
27834
+ "outputs": [],
27835
+ "stateMutability": "nonpayable",
27836
+ "type": "function"
27837
+ },
27838
+ {
27839
+ "inputs": [
27840
+ {
27841
+ "internalType": "contract VToken[]",
27842
+ "name": "vTokens",
27843
+ "type": "address[]"
27844
+ },
27845
+ {
27846
+ "internalType": "uint32[]",
27847
+ "name": "supplyLastRewardingBlocks",
27848
+ "type": "uint32[]"
27849
+ },
27850
+ {
27851
+ "internalType": "uint32[]",
27852
+ "name": "borrowLastRewardingBlocks",
27853
+ "type": "uint32[]"
27854
+ }
27855
+ ],
27856
+ "name": "setLastRewardingBlocks",
27857
+ "outputs": [],
27858
+ "stateMutability": "nonpayable",
27859
+ "type": "function"
27860
+ },
27861
+ {
27862
+ "inputs": [
27863
+ {
27864
+ "internalType": "uint256",
27865
+ "name": "limit",
27866
+ "type": "uint256"
27867
+ }
27868
+ ],
27869
+ "name": "setMaxLoopsLimit",
27870
+ "outputs": [],
27871
+ "stateMutability": "nonpayable",
27872
+ "type": "function"
27873
+ },
27874
+ {
27875
+ "inputs": [
27876
+ {
27877
+ "internalType": "contract VToken[]",
27878
+ "name": "vTokens",
27879
+ "type": "address[]"
27880
+ },
27881
+ {
27882
+ "internalType": "uint256[]",
27883
+ "name": "supplySpeeds",
27884
+ "type": "uint256[]"
27885
+ },
27886
+ {
27887
+ "internalType": "uint256[]",
27888
+ "name": "borrowSpeeds",
27889
+ "type": "uint256[]"
27890
+ }
27891
+ ],
27892
+ "name": "setRewardTokenSpeeds",
27893
+ "outputs": [],
27894
+ "stateMutability": "nonpayable",
27895
+ "type": "function"
27896
+ },
27897
+ {
27898
+ "inputs": [
27899
+ {
27900
+ "internalType": "address",
27901
+ "name": "newOwner",
27902
+ "type": "address"
27903
+ }
27904
+ ],
27905
+ "name": "transferOwnership",
27906
+ "outputs": [],
27907
+ "stateMutability": "nonpayable",
27908
+ "type": "function"
27909
+ },
27910
+ {
27911
+ "inputs": [
27912
+ {
27913
+ "internalType": "address",
27914
+ "name": "contributor",
27915
+ "type": "address"
27916
+ }
27917
+ ],
27918
+ "name": "updateContributorRewards",
27919
+ "outputs": [],
27920
+ "stateMutability": "nonpayable",
27921
+ "type": "function"
27922
+ },
27923
+ {
27924
+ "inputs": [
27925
+ {
27926
+ "internalType": "address",
27927
+ "name": "vToken",
27928
+ "type": "address"
27929
+ },
27930
+ {
27931
+ "components": [
27932
+ {
27933
+ "internalType": "uint256",
27934
+ "name": "mantissa",
27935
+ "type": "uint256"
27936
+ }
27937
+ ],
27938
+ "internalType": "struct ExponentialNoError.Exp",
27939
+ "name": "marketBorrowIndex",
27940
+ "type": "tuple"
27941
+ }
27942
+ ],
27943
+ "name": "updateRewardTokenBorrowIndex",
27944
+ "outputs": [],
27945
+ "stateMutability": "nonpayable",
27946
+ "type": "function"
27947
+ },
27948
+ {
27949
+ "inputs": [
27950
+ {
27951
+ "internalType": "address",
27952
+ "name": "vToken",
27953
+ "type": "address"
27954
+ }
27955
+ ],
27956
+ "name": "updateRewardTokenSupplyIndex",
27957
+ "outputs": [],
27958
+ "stateMutability": "nonpayable",
27959
+ "type": "function"
27960
+ },
27961
+ {
27962
+ "inputs": [
27963
+ {
27964
+ "internalType": "address",
27965
+ "name": "_logic",
27966
+ "type": "address"
27967
+ },
27968
+ {
27969
+ "internalType": "address",
27970
+ "name": "admin_",
27971
+ "type": "address"
27972
+ },
27973
+ {
27974
+ "internalType": "bytes",
27975
+ "name": "_data",
27976
+ "type": "bytes"
27977
+ }
27978
+ ],
27979
+ "stateMutability": "payable",
27980
+ "type": "constructor"
27981
+ }
27982
+ ]
27983
+ },
27984
+ "RewardsDistributor_Tron_3_Proxy": {
27985
+ "address": "0x08e4AFd80A5849FDBa4bBeea86ed470D697e4C54",
27986
+ "abi": [
27987
+ {
27988
+ "inputs": [
27989
+ {
27990
+ "internalType": "address",
27991
+ "name": "_logic",
27992
+ "type": "address"
27993
+ },
27994
+ {
27995
+ "internalType": "address",
27996
+ "name": "admin_",
27997
+ "type": "address"
27998
+ },
27999
+ {
28000
+ "internalType": "bytes",
28001
+ "name": "_data",
28002
+ "type": "bytes"
28003
+ }
28004
+ ],
28005
+ "stateMutability": "payable",
28006
+ "type": "constructor"
28007
+ },
28008
+ {
28009
+ "anonymous": false,
28010
+ "inputs": [
28011
+ {
28012
+ "indexed": false,
28013
+ "internalType": "address",
28014
+ "name": "previousAdmin",
28015
+ "type": "address"
28016
+ },
28017
+ {
28018
+ "indexed": false,
28019
+ "internalType": "address",
28020
+ "name": "newAdmin",
28021
+ "type": "address"
28022
+ }
28023
+ ],
28024
+ "name": "AdminChanged",
28025
+ "type": "event"
28026
+ },
28027
+ {
28028
+ "anonymous": false,
28029
+ "inputs": [
28030
+ {
28031
+ "indexed": true,
28032
+ "internalType": "address",
28033
+ "name": "beacon",
28034
+ "type": "address"
28035
+ }
28036
+ ],
28037
+ "name": "BeaconUpgraded",
28038
+ "type": "event"
28039
+ },
28040
+ {
28041
+ "anonymous": false,
28042
+ "inputs": [
28043
+ {
28044
+ "indexed": true,
28045
+ "internalType": "address",
28046
+ "name": "implementation",
28047
+ "type": "address"
28048
+ }
28049
+ ],
28050
+ "name": "Upgraded",
28051
+ "type": "event"
28052
+ },
28053
+ {
28054
+ "stateMutability": "payable",
28055
+ "type": "fallback"
28056
+ },
28057
+ {
28058
+ "inputs": [],
28059
+ "name": "admin",
28060
+ "outputs": [
28061
+ {
28062
+ "internalType": "address",
28063
+ "name": "admin_",
28064
+ "type": "address"
28065
+ }
28066
+ ],
28067
+ "stateMutability": "nonpayable",
28068
+ "type": "function"
28069
+ },
28070
+ {
28071
+ "inputs": [
28072
+ {
28073
+ "internalType": "address",
28074
+ "name": "newAdmin",
28075
+ "type": "address"
28076
+ }
28077
+ ],
28078
+ "name": "changeAdmin",
28079
+ "outputs": [],
28080
+ "stateMutability": "nonpayable",
28081
+ "type": "function"
28082
+ },
28083
+ {
28084
+ "inputs": [],
28085
+ "name": "implementation",
28086
+ "outputs": [
28087
+ {
28088
+ "internalType": "address",
28089
+ "name": "implementation_",
28090
+ "type": "address"
28091
+ }
28092
+ ],
28093
+ "stateMutability": "nonpayable",
28094
+ "type": "function"
28095
+ },
28096
+ {
28097
+ "inputs": [
28098
+ {
28099
+ "internalType": "address",
28100
+ "name": "newImplementation",
28101
+ "type": "address"
28102
+ }
28103
+ ],
28104
+ "name": "upgradeTo",
28105
+ "outputs": [],
28106
+ "stateMutability": "nonpayable",
28107
+ "type": "function"
28108
+ },
28109
+ {
28110
+ "inputs": [
28111
+ {
28112
+ "internalType": "address",
28113
+ "name": "newImplementation",
28114
+ "type": "address"
28115
+ },
28116
+ {
28117
+ "internalType": "bytes",
28118
+ "name": "data",
28119
+ "type": "bytes"
28120
+ }
28121
+ ],
28122
+ "name": "upgradeToAndCall",
28123
+ "outputs": [],
28124
+ "stateMutability": "payable",
28125
+ "type": "function"
28126
+ },
28127
+ {
28128
+ "stateMutability": "payable",
28129
+ "type": "receive"
28130
+ }
28131
+ ]
28132
+ },
28133
+ "RiskFund": {
28134
+ "address": "0xdF31a28D68A2AB381D42b380649Ead7ae2A76E42",
28135
+ "abi": [
28136
+ {
28137
+ "anonymous": false,
28138
+ "inputs": [
28139
+ {
28140
+ "indexed": false,
28141
+ "internalType": "address",
28142
+ "name": "previousAdmin",
28143
+ "type": "address"
28144
+ },
28145
+ {
28146
+ "indexed": false,
28147
+ "internalType": "address",
28148
+ "name": "newAdmin",
28149
+ "type": "address"
28150
+ }
28151
+ ],
28152
+ "name": "AdminChanged",
28153
+ "type": "event"
28154
+ },
28155
+ {
28156
+ "anonymous": false,
28157
+ "inputs": [
28158
+ {
28159
+ "indexed": true,
28160
+ "internalType": "address",
28161
+ "name": "beacon",
28162
+ "type": "address"
28163
+ }
28164
+ ],
28165
+ "name": "BeaconUpgraded",
28166
+ "type": "event"
28167
+ },
28168
+ {
28169
+ "anonymous": false,
28170
+ "inputs": [
28171
+ {
28172
+ "indexed": true,
28173
+ "internalType": "address",
28174
+ "name": "implementation",
28175
+ "type": "address"
28176
+ }
28177
+ ],
28178
+ "name": "Upgraded",
28179
+ "type": "event"
28180
+ },
28181
+ {
28182
+ "stateMutability": "payable",
28183
+ "type": "fallback"
28184
+ },
28185
+ {
28186
+ "inputs": [],
28187
+ "name": "admin",
28188
+ "outputs": [
28189
+ {
28190
+ "internalType": "address",
28191
+ "name": "admin_",
28192
+ "type": "address"
28193
+ }
28194
+ ],
28195
+ "stateMutability": "nonpayable",
28196
+ "type": "function"
28197
+ },
28198
+ {
28199
+ "inputs": [
28200
+ {
28201
+ "internalType": "address",
28202
+ "name": "newAdmin",
28203
+ "type": "address"
28204
+ }
28205
+ ],
28206
+ "name": "changeAdmin",
28207
+ "outputs": [],
28208
+ "stateMutability": "nonpayable",
28209
+ "type": "function"
28210
+ },
28211
+ {
28212
+ "inputs": [],
28213
+ "name": "implementation",
28214
+ "outputs": [
28215
+ {
28216
+ "internalType": "address",
28217
+ "name": "implementation_",
28218
+ "type": "address"
28219
+ }
28220
+ ],
28221
+ "stateMutability": "nonpayable",
28222
+ "type": "function"
28223
+ },
28224
+ {
28225
+ "inputs": [
28226
+ {
28227
+ "internalType": "address",
28228
+ "name": "newImplementation",
28229
+ "type": "address"
28230
+ }
28231
+ ],
28232
+ "name": "upgradeTo",
28233
+ "outputs": [],
28234
+ "stateMutability": "nonpayable",
28235
+ "type": "function"
28236
+ },
28237
+ {
28238
+ "inputs": [
28239
+ {
28240
+ "internalType": "address",
28241
+ "name": "newImplementation",
28242
+ "type": "address"
28243
+ },
28244
+ {
28245
+ "internalType": "bytes",
28246
+ "name": "data",
28247
+ "type": "bytes"
28248
+ }
28249
+ ],
28250
+ "name": "upgradeToAndCall",
28251
+ "outputs": [],
28252
+ "stateMutability": "payable",
28253
+ "type": "function"
28254
+ },
28255
+ {
28256
+ "stateMutability": "payable",
28257
+ "type": "receive"
28258
+ },
28259
+ {
28260
+ "inputs": [],
28261
+ "name": "ApproveFailed",
28262
+ "type": "error"
28263
+ },
28264
+ {
28265
+ "inputs": [
28266
+ {
28267
+ "internalType": "uint256",
28268
+ "name": "loopsLimit",
28269
+ "type": "uint256"
28270
+ },
28271
+ {
28272
+ "internalType": "uint256",
28273
+ "name": "requiredLoops",
28274
+ "type": "uint256"
28275
+ }
28276
+ ],
28277
+ "name": "MaxLoopsLimitExceeded",
28278
+ "type": "error"
28279
+ },
28280
+ {
28281
+ "inputs": [
28282
+ {
28283
+ "internalType": "address",
28284
+ "name": "sender",
28285
+ "type": "address"
28286
+ },
28287
+ {
28288
+ "internalType": "address",
28289
+ "name": "calledContract",
28290
+ "type": "address"
28291
+ },
28292
+ {
28293
+ "internalType": "string",
28294
+ "name": "methodSignature",
28295
+ "type": "string"
28296
+ }
28297
+ ],
28298
+ "name": "Unauthorized",
28299
+ "type": "error"
28300
+ },
28301
+ {
28302
+ "inputs": [],
28303
+ "name": "ZeroAddressNotAllowed",
28304
+ "type": "error"
28305
+ },
28306
+ {
28307
+ "anonymous": false,
28308
+ "inputs": [
28309
+ {
28310
+ "indexed": true,
28311
+ "internalType": "address",
28312
+ "name": "comptroller",
28313
+ "type": "address"
28314
+ },
28315
+ {
28316
+ "indexed": true,
28317
+ "internalType": "address",
28318
+ "name": "asset",
28319
+ "type": "address"
28320
+ },
28321
+ {
28322
+ "indexed": false,
28323
+ "internalType": "uint256",
28324
+ "name": "amount",
28325
+ "type": "uint256"
28326
+ }
28327
+ ],
28328
+ "name": "AssetsReservesUpdated",
28329
+ "type": "event"
28330
+ },
28331
+ {
28332
+ "anonymous": false,
28333
+ "inputs": [
28334
+ {
28335
+ "indexed": true,
28336
+ "internalType": "address",
28337
+ "name": "oldConvertibleBaseAsset",
28338
+ "type": "address"
28339
+ },
28340
+ {
28341
+ "indexed": true,
28342
+ "internalType": "address",
28343
+ "name": "newConvertibleBaseAsset",
28344
+ "type": "address"
28345
+ }
28346
+ ],
28347
+ "name": "ConvertibleBaseAssetUpdated",
28348
+ "type": "event"
28349
+ },
28350
+ {
28351
+ "anonymous": false,
28352
+ "inputs": [
28353
+ {
28354
+ "indexed": false,
28355
+ "internalType": "uint8",
28356
+ "name": "version",
28357
+ "type": "uint8"
28358
+ }
28359
+ ],
28360
+ "name": "Initialized",
28361
+ "type": "event"
28362
+ },
28363
+ {
28364
+ "anonymous": false,
28365
+ "inputs": [
28366
+ {
28367
+ "indexed": false,
28368
+ "internalType": "uint256",
28369
+ "name": "oldMaxLoopsLimit",
28370
+ "type": "uint256"
28371
+ },
28372
+ {
28373
+ "indexed": false,
28374
+ "internalType": "uint256",
28375
+ "name": "newmaxLoopsLimit",
28376
+ "type": "uint256"
28377
+ }
28378
+ ],
28379
+ "name": "MaxLoopsLimitUpdated",
28380
+ "type": "event"
28381
+ },
28382
+ {
28383
+ "anonymous": false,
28384
+ "inputs": [
28385
+ {
28386
+ "indexed": false,
28387
+ "internalType": "uint256",
28388
+ "name": "oldMinAmountToConvert",
28389
+ "type": "uint256"
28390
+ },
28391
+ {
28392
+ "indexed": false,
28393
+ "internalType": "uint256",
28394
+ "name": "newMinAmountToConvert",
28395
+ "type": "uint256"
28396
+ }
28397
+ ],
28398
+ "name": "MinAmountToConvertUpdated",
28399
+ "type": "event"
28400
+ },
28401
+ {
28402
+ "anonymous": false,
28403
+ "inputs": [
28404
+ {
28405
+ "indexed": false,
28406
+ "internalType": "address",
28407
+ "name": "oldAccessControlManager",
28408
+ "type": "address"
28409
+ },
28410
+ {
28411
+ "indexed": false,
28412
+ "internalType": "address",
28413
+ "name": "newAccessControlManager",
28414
+ "type": "address"
28415
+ }
28416
+ ],
28417
+ "name": "NewAccessControlManager",
28418
+ "type": "event"
28419
+ },
28420
+ {
28421
+ "anonymous": false,
28422
+ "inputs": [
28423
+ {
28424
+ "indexed": true,
28425
+ "internalType": "address",
28426
+ "name": "previousOwner",
28427
+ "type": "address"
28428
+ },
28429
+ {
28430
+ "indexed": true,
28431
+ "internalType": "address",
28432
+ "name": "newOwner",
28433
+ "type": "address"
28434
+ }
28435
+ ],
28436
+ "name": "OwnershipTransferStarted",
28437
+ "type": "event"
28438
+ },
28439
+ {
28440
+ "anonymous": false,
28441
+ "inputs": [
28442
+ {
28443
+ "indexed": true,
28444
+ "internalType": "address",
28445
+ "name": "previousOwner",
28446
+ "type": "address"
28447
+ },
28448
+ {
28449
+ "indexed": true,
28450
+ "internalType": "address",
28451
+ "name": "newOwner",
28452
+ "type": "address"
28453
+ }
28454
+ ],
28455
+ "name": "OwnershipTransferred",
28456
+ "type": "event"
28457
+ },
28458
+ {
28459
+ "anonymous": false,
28460
+ "inputs": [
28461
+ {
28462
+ "indexed": true,
28463
+ "internalType": "address",
28464
+ "name": "oldPancakeSwapRouter",
28465
+ "type": "address"
28466
+ },
28467
+ {
28468
+ "indexed": true,
28469
+ "internalType": "address",
28470
+ "name": "newPancakeSwapRouter",
28471
+ "type": "address"
28472
+ }
28473
+ ],
28474
+ "name": "PancakeSwapRouterUpdated",
28475
+ "type": "event"
28476
+ },
28477
+ {
28478
+ "anonymous": false,
28479
+ "inputs": [
28480
+ {
28481
+ "indexed": true,
28482
+ "internalType": "address",
28483
+ "name": "oldPoolRegistry",
28484
+ "type": "address"
28485
+ },
28486
+ {
28487
+ "indexed": true,
28488
+ "internalType": "address",
28489
+ "name": "newPoolRegistry",
28490
+ "type": "address"
28491
+ }
28492
+ ],
28493
+ "name": "PoolRegistryUpdated",
28494
+ "type": "event"
28495
+ },
28496
+ {
28497
+ "anonymous": false,
28498
+ "inputs": [
28499
+ {
28500
+ "indexed": true,
28501
+ "internalType": "address",
28502
+ "name": "oldShortfallContract",
28503
+ "type": "address"
28504
+ },
28505
+ {
28506
+ "indexed": true,
28507
+ "internalType": "address",
28508
+ "name": "newShortfallContract",
28509
+ "type": "address"
28510
+ }
28511
+ ],
28512
+ "name": "ShortfallContractUpdated",
28513
+ "type": "event"
28514
+ },
28515
+ {
28516
+ "anonymous": false,
28517
+ "inputs": [
28518
+ {
28519
+ "indexed": false,
28520
+ "internalType": "address[]",
28521
+ "name": "markets",
28522
+ "type": "address[]"
28523
+ },
28524
+ {
28525
+ "indexed": false,
28526
+ "internalType": "uint256[]",
28527
+ "name": "amountsOutMin",
28528
+ "type": "uint256[]"
28529
+ },
28530
+ {
28531
+ "indexed": false,
28532
+ "internalType": "uint256",
28533
+ "name": "totalAmount",
28534
+ "type": "uint256"
28535
+ }
28536
+ ],
28537
+ "name": "SwappedPoolsAssets",
28538
+ "type": "event"
28539
+ },
28540
+ {
28541
+ "anonymous": false,
28542
+ "inputs": [
28543
+ {
28544
+ "indexed": true,
28545
+ "internalType": "address",
28546
+ "name": "token",
28547
+ "type": "address"
28548
+ },
28549
+ {
28550
+ "indexed": true,
28551
+ "internalType": "address",
28552
+ "name": "to",
28553
+ "type": "address"
28554
+ },
28555
+ {
28556
+ "indexed": false,
28557
+ "internalType": "uint256",
28558
+ "name": "amount",
28559
+ "type": "uint256"
28560
+ }
28561
+ ],
28562
+ "name": "SweepToken",
28563
+ "type": "event"
28564
+ },
28565
+ {
28566
+ "anonymous": false,
28567
+ "inputs": [
28568
+ {
28569
+ "indexed": true,
28570
+ "internalType": "address",
28571
+ "name": "comptroller",
28572
+ "type": "address"
28573
+ },
28574
+ {
28575
+ "indexed": false,
28576
+ "internalType": "uint256",
28577
+ "name": "amount",
28578
+ "type": "uint256"
28579
+ }
28580
+ ],
28581
+ "name": "TransferredReserveForAuction",
27000
28582
  "type": "event"
27001
28583
  },
27002
28584
  {
@@ -42573,6 +44155,80 @@
42573
44155
  }
42574
44156
  ]
42575
44157
  },
44158
+ "VToken_vagEUR_Stablecoins": {
44159
+ "address": "0x795DE779Be00Ea46eA97a28BDD38d9ED570BCF0F",
44160
+ "abi": [
44161
+ {
44162
+ "inputs": [
44163
+ {
44164
+ "internalType": "address",
44165
+ "name": "beacon",
44166
+ "type": "address"
44167
+ },
44168
+ {
44169
+ "internalType": "bytes",
44170
+ "name": "data",
44171
+ "type": "bytes"
44172
+ }
44173
+ ],
44174
+ "stateMutability": "payable",
44175
+ "type": "constructor"
44176
+ },
44177
+ {
44178
+ "anonymous": false,
44179
+ "inputs": [
44180
+ {
44181
+ "indexed": false,
44182
+ "internalType": "address",
44183
+ "name": "previousAdmin",
44184
+ "type": "address"
44185
+ },
44186
+ {
44187
+ "indexed": false,
44188
+ "internalType": "address",
44189
+ "name": "newAdmin",
44190
+ "type": "address"
44191
+ }
44192
+ ],
44193
+ "name": "AdminChanged",
44194
+ "type": "event"
44195
+ },
44196
+ {
44197
+ "anonymous": false,
44198
+ "inputs": [
44199
+ {
44200
+ "indexed": true,
44201
+ "internalType": "address",
44202
+ "name": "beacon",
44203
+ "type": "address"
44204
+ }
44205
+ ],
44206
+ "name": "BeaconUpgraded",
44207
+ "type": "event"
44208
+ },
44209
+ {
44210
+ "anonymous": false,
44211
+ "inputs": [
44212
+ {
44213
+ "indexed": true,
44214
+ "internalType": "address",
44215
+ "name": "implementation",
44216
+ "type": "address"
44217
+ }
44218
+ ],
44219
+ "name": "Upgraded",
44220
+ "type": "event"
44221
+ },
44222
+ {
44223
+ "stateMutability": "payable",
44224
+ "type": "fallback"
44225
+ },
44226
+ {
44227
+ "stateMutability": "payable",
44228
+ "type": "receive"
44229
+ }
44230
+ ]
44231
+ },
42576
44232
  "VToken_vankrBNB_DeFi": {
42577
44233
  "address": "0x53728FD51060a85ac41974C6C3Eb1DaE42776723",
42578
44234
  "abi": [