@venusprotocol/isolated-pools 3.6.0-dev.1 → 3.6.0-dev.3

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.
@@ -7606,6 +7606,2575 @@
7606
7606
  }
7607
7607
  ]
7608
7608
  },
7609
+ "RewardsDistributorImpl": {
7610
+ "address": "0x7494bc405b7Abda90635210D5FfA1F915e0e7d10",
7611
+ "abi": [
7612
+ {
7613
+ "inputs": [
7614
+ {
7615
+ "internalType": "bool",
7616
+ "name": "timeBased_",
7617
+ "type": "bool"
7618
+ },
7619
+ {
7620
+ "internalType": "uint256",
7621
+ "name": "blocksPerYear_",
7622
+ "type": "uint256"
7623
+ }
7624
+ ],
7625
+ "stateMutability": "nonpayable",
7626
+ "type": "constructor"
7627
+ },
7628
+ {
7629
+ "inputs": [],
7630
+ "name": "InvalidBlocksPerYear",
7631
+ "type": "error"
7632
+ },
7633
+ {
7634
+ "inputs": [],
7635
+ "name": "InvalidTimeBasedConfiguration",
7636
+ "type": "error"
7637
+ },
7638
+ {
7639
+ "inputs": [
7640
+ {
7641
+ "internalType": "uint256",
7642
+ "name": "loopsLimit",
7643
+ "type": "uint256"
7644
+ },
7645
+ {
7646
+ "internalType": "uint256",
7647
+ "name": "requiredLoops",
7648
+ "type": "uint256"
7649
+ }
7650
+ ],
7651
+ "name": "MaxLoopsLimitExceeded",
7652
+ "type": "error"
7653
+ },
7654
+ {
7655
+ "inputs": [
7656
+ {
7657
+ "internalType": "address",
7658
+ "name": "sender",
7659
+ "type": "address"
7660
+ },
7661
+ {
7662
+ "internalType": "address",
7663
+ "name": "calledContract",
7664
+ "type": "address"
7665
+ },
7666
+ {
7667
+ "internalType": "string",
7668
+ "name": "methodSignature",
7669
+ "type": "string"
7670
+ }
7671
+ ],
7672
+ "name": "Unauthorized",
7673
+ "type": "error"
7674
+ },
7675
+ {
7676
+ "anonymous": false,
7677
+ "inputs": [
7678
+ {
7679
+ "indexed": true,
7680
+ "internalType": "address",
7681
+ "name": "vToken",
7682
+ "type": "address"
7683
+ },
7684
+ {
7685
+ "indexed": false,
7686
+ "internalType": "uint256",
7687
+ "name": "newTimestamp",
7688
+ "type": "uint256"
7689
+ }
7690
+ ],
7691
+ "name": "BorrowLastRewardingBlockTimestampUpdated",
7692
+ "type": "event"
7693
+ },
7694
+ {
7695
+ "anonymous": false,
7696
+ "inputs": [
7697
+ {
7698
+ "indexed": true,
7699
+ "internalType": "address",
7700
+ "name": "vToken",
7701
+ "type": "address"
7702
+ },
7703
+ {
7704
+ "indexed": false,
7705
+ "internalType": "uint32",
7706
+ "name": "newBlock",
7707
+ "type": "uint32"
7708
+ }
7709
+ ],
7710
+ "name": "BorrowLastRewardingBlockUpdated",
7711
+ "type": "event"
7712
+ },
7713
+ {
7714
+ "anonymous": false,
7715
+ "inputs": [
7716
+ {
7717
+ "indexed": true,
7718
+ "internalType": "address",
7719
+ "name": "contributor",
7720
+ "type": "address"
7721
+ },
7722
+ {
7723
+ "indexed": false,
7724
+ "internalType": "uint256",
7725
+ "name": "newSpeed",
7726
+ "type": "uint256"
7727
+ }
7728
+ ],
7729
+ "name": "ContributorRewardTokenSpeedUpdated",
7730
+ "type": "event"
7731
+ },
7732
+ {
7733
+ "anonymous": false,
7734
+ "inputs": [
7735
+ {
7736
+ "indexed": true,
7737
+ "internalType": "address",
7738
+ "name": "contributor",
7739
+ "type": "address"
7740
+ },
7741
+ {
7742
+ "indexed": false,
7743
+ "internalType": "uint256",
7744
+ "name": "rewardAccrued",
7745
+ "type": "uint256"
7746
+ }
7747
+ ],
7748
+ "name": "ContributorRewardsUpdated",
7749
+ "type": "event"
7750
+ },
7751
+ {
7752
+ "anonymous": false,
7753
+ "inputs": [
7754
+ {
7755
+ "indexed": true,
7756
+ "internalType": "contract VToken",
7757
+ "name": "vToken",
7758
+ "type": "address"
7759
+ },
7760
+ {
7761
+ "indexed": true,
7762
+ "internalType": "address",
7763
+ "name": "borrower",
7764
+ "type": "address"
7765
+ },
7766
+ {
7767
+ "indexed": false,
7768
+ "internalType": "uint256",
7769
+ "name": "rewardTokenDelta",
7770
+ "type": "uint256"
7771
+ },
7772
+ {
7773
+ "indexed": false,
7774
+ "internalType": "uint256",
7775
+ "name": "rewardTokenTotal",
7776
+ "type": "uint256"
7777
+ },
7778
+ {
7779
+ "indexed": false,
7780
+ "internalType": "uint256",
7781
+ "name": "rewardTokenBorrowIndex",
7782
+ "type": "uint256"
7783
+ }
7784
+ ],
7785
+ "name": "DistributedBorrowerRewardToken",
7786
+ "type": "event"
7787
+ },
7788
+ {
7789
+ "anonymous": false,
7790
+ "inputs": [
7791
+ {
7792
+ "indexed": true,
7793
+ "internalType": "contract VToken",
7794
+ "name": "vToken",
7795
+ "type": "address"
7796
+ },
7797
+ {
7798
+ "indexed": true,
7799
+ "internalType": "address",
7800
+ "name": "supplier",
7801
+ "type": "address"
7802
+ },
7803
+ {
7804
+ "indexed": false,
7805
+ "internalType": "uint256",
7806
+ "name": "rewardTokenDelta",
7807
+ "type": "uint256"
7808
+ },
7809
+ {
7810
+ "indexed": false,
7811
+ "internalType": "uint256",
7812
+ "name": "rewardTokenTotal",
7813
+ "type": "uint256"
7814
+ },
7815
+ {
7816
+ "indexed": false,
7817
+ "internalType": "uint256",
7818
+ "name": "rewardTokenSupplyIndex",
7819
+ "type": "uint256"
7820
+ }
7821
+ ],
7822
+ "name": "DistributedSupplierRewardToken",
7823
+ "type": "event"
7824
+ },
7825
+ {
7826
+ "anonymous": false,
7827
+ "inputs": [
7828
+ {
7829
+ "indexed": false,
7830
+ "internalType": "uint8",
7831
+ "name": "version",
7832
+ "type": "uint8"
7833
+ }
7834
+ ],
7835
+ "name": "Initialized",
7836
+ "type": "event"
7837
+ },
7838
+ {
7839
+ "anonymous": false,
7840
+ "inputs": [
7841
+ {
7842
+ "indexed": true,
7843
+ "internalType": "address",
7844
+ "name": "vToken",
7845
+ "type": "address"
7846
+ }
7847
+ ],
7848
+ "name": "MarketInitialized",
7849
+ "type": "event"
7850
+ },
7851
+ {
7852
+ "anonymous": false,
7853
+ "inputs": [
7854
+ {
7855
+ "indexed": false,
7856
+ "internalType": "uint256",
7857
+ "name": "oldMaxLoopsLimit",
7858
+ "type": "uint256"
7859
+ },
7860
+ {
7861
+ "indexed": false,
7862
+ "internalType": "uint256",
7863
+ "name": "newmaxLoopsLimit",
7864
+ "type": "uint256"
7865
+ }
7866
+ ],
7867
+ "name": "MaxLoopsLimitUpdated",
7868
+ "type": "event"
7869
+ },
7870
+ {
7871
+ "anonymous": false,
7872
+ "inputs": [
7873
+ {
7874
+ "indexed": false,
7875
+ "internalType": "address",
7876
+ "name": "oldAccessControlManager",
7877
+ "type": "address"
7878
+ },
7879
+ {
7880
+ "indexed": false,
7881
+ "internalType": "address",
7882
+ "name": "newAccessControlManager",
7883
+ "type": "address"
7884
+ }
7885
+ ],
7886
+ "name": "NewAccessControlManager",
7887
+ "type": "event"
7888
+ },
7889
+ {
7890
+ "anonymous": false,
7891
+ "inputs": [
7892
+ {
7893
+ "indexed": true,
7894
+ "internalType": "address",
7895
+ "name": "previousOwner",
7896
+ "type": "address"
7897
+ },
7898
+ {
7899
+ "indexed": true,
7900
+ "internalType": "address",
7901
+ "name": "newOwner",
7902
+ "type": "address"
7903
+ }
7904
+ ],
7905
+ "name": "OwnershipTransferStarted",
7906
+ "type": "event"
7907
+ },
7908
+ {
7909
+ "anonymous": false,
7910
+ "inputs": [
7911
+ {
7912
+ "indexed": true,
7913
+ "internalType": "address",
7914
+ "name": "previousOwner",
7915
+ "type": "address"
7916
+ },
7917
+ {
7918
+ "indexed": true,
7919
+ "internalType": "address",
7920
+ "name": "newOwner",
7921
+ "type": "address"
7922
+ }
7923
+ ],
7924
+ "name": "OwnershipTransferred",
7925
+ "type": "event"
7926
+ },
7927
+ {
7928
+ "anonymous": false,
7929
+ "inputs": [
7930
+ {
7931
+ "indexed": true,
7932
+ "internalType": "address",
7933
+ "name": "vToken",
7934
+ "type": "address"
7935
+ },
7936
+ {
7937
+ "components": [
7938
+ {
7939
+ "internalType": "uint256",
7940
+ "name": "mantissa",
7941
+ "type": "uint256"
7942
+ }
7943
+ ],
7944
+ "indexed": false,
7945
+ "internalType": "struct ExponentialNoError.Exp",
7946
+ "name": "marketBorrowIndex",
7947
+ "type": "tuple"
7948
+ }
7949
+ ],
7950
+ "name": "RewardTokenBorrowIndexUpdated",
7951
+ "type": "event"
7952
+ },
7953
+ {
7954
+ "anonymous": false,
7955
+ "inputs": [
7956
+ {
7957
+ "indexed": true,
7958
+ "internalType": "contract VToken",
7959
+ "name": "vToken",
7960
+ "type": "address"
7961
+ },
7962
+ {
7963
+ "indexed": false,
7964
+ "internalType": "uint256",
7965
+ "name": "newSpeed",
7966
+ "type": "uint256"
7967
+ }
7968
+ ],
7969
+ "name": "RewardTokenBorrowSpeedUpdated",
7970
+ "type": "event"
7971
+ },
7972
+ {
7973
+ "anonymous": false,
7974
+ "inputs": [
7975
+ {
7976
+ "indexed": true,
7977
+ "internalType": "address",
7978
+ "name": "recipient",
7979
+ "type": "address"
7980
+ },
7981
+ {
7982
+ "indexed": false,
7983
+ "internalType": "uint256",
7984
+ "name": "amount",
7985
+ "type": "uint256"
7986
+ }
7987
+ ],
7988
+ "name": "RewardTokenGranted",
7989
+ "type": "event"
7990
+ },
7991
+ {
7992
+ "anonymous": false,
7993
+ "inputs": [
7994
+ {
7995
+ "indexed": true,
7996
+ "internalType": "address",
7997
+ "name": "vToken",
7998
+ "type": "address"
7999
+ }
8000
+ ],
8001
+ "name": "RewardTokenSupplyIndexUpdated",
8002
+ "type": "event"
8003
+ },
8004
+ {
8005
+ "anonymous": false,
8006
+ "inputs": [
8007
+ {
8008
+ "indexed": true,
8009
+ "internalType": "contract VToken",
8010
+ "name": "vToken",
8011
+ "type": "address"
8012
+ },
8013
+ {
8014
+ "indexed": false,
8015
+ "internalType": "uint256",
8016
+ "name": "newSpeed",
8017
+ "type": "uint256"
8018
+ }
8019
+ ],
8020
+ "name": "RewardTokenSupplySpeedUpdated",
8021
+ "type": "event"
8022
+ },
8023
+ {
8024
+ "anonymous": false,
8025
+ "inputs": [
8026
+ {
8027
+ "indexed": true,
8028
+ "internalType": "address",
8029
+ "name": "vToken",
8030
+ "type": "address"
8031
+ },
8032
+ {
8033
+ "indexed": false,
8034
+ "internalType": "uint256",
8035
+ "name": "newTimestamp",
8036
+ "type": "uint256"
8037
+ }
8038
+ ],
8039
+ "name": "SupplyLastRewardingBlockTimestampUpdated",
8040
+ "type": "event"
8041
+ },
8042
+ {
8043
+ "anonymous": false,
8044
+ "inputs": [
8045
+ {
8046
+ "indexed": true,
8047
+ "internalType": "address",
8048
+ "name": "vToken",
8049
+ "type": "address"
8050
+ },
8051
+ {
8052
+ "indexed": false,
8053
+ "internalType": "uint32",
8054
+ "name": "newBlock",
8055
+ "type": "uint32"
8056
+ }
8057
+ ],
8058
+ "name": "SupplyLastRewardingBlockUpdated",
8059
+ "type": "event"
8060
+ },
8061
+ {
8062
+ "inputs": [],
8063
+ "name": "INITIAL_INDEX",
8064
+ "outputs": [
8065
+ {
8066
+ "internalType": "uint224",
8067
+ "name": "",
8068
+ "type": "uint224"
8069
+ }
8070
+ ],
8071
+ "stateMutability": "view",
8072
+ "type": "function"
8073
+ },
8074
+ {
8075
+ "inputs": [],
8076
+ "name": "acceptOwnership",
8077
+ "outputs": [],
8078
+ "stateMutability": "nonpayable",
8079
+ "type": "function"
8080
+ },
8081
+ {
8082
+ "inputs": [],
8083
+ "name": "accessControlManager",
8084
+ "outputs": [
8085
+ {
8086
+ "internalType": "contract IAccessControlManagerV8",
8087
+ "name": "",
8088
+ "type": "address"
8089
+ }
8090
+ ],
8091
+ "stateMutability": "view",
8092
+ "type": "function"
8093
+ },
8094
+ {
8095
+ "inputs": [],
8096
+ "name": "blocksOrSecondsPerYear",
8097
+ "outputs": [
8098
+ {
8099
+ "internalType": "uint256",
8100
+ "name": "",
8101
+ "type": "uint256"
8102
+ }
8103
+ ],
8104
+ "stateMutability": "view",
8105
+ "type": "function"
8106
+ },
8107
+ {
8108
+ "inputs": [
8109
+ {
8110
+ "internalType": "address",
8111
+ "name": "holder",
8112
+ "type": "address"
8113
+ },
8114
+ {
8115
+ "internalType": "contract VToken[]",
8116
+ "name": "vTokens",
8117
+ "type": "address[]"
8118
+ }
8119
+ ],
8120
+ "name": "claimRewardToken",
8121
+ "outputs": [],
8122
+ "stateMutability": "nonpayable",
8123
+ "type": "function"
8124
+ },
8125
+ {
8126
+ "inputs": [
8127
+ {
8128
+ "internalType": "address",
8129
+ "name": "holder",
8130
+ "type": "address"
8131
+ }
8132
+ ],
8133
+ "name": "claimRewardToken",
8134
+ "outputs": [],
8135
+ "stateMutability": "nonpayable",
8136
+ "type": "function"
8137
+ },
8138
+ {
8139
+ "inputs": [
8140
+ {
8141
+ "internalType": "address",
8142
+ "name": "vToken",
8143
+ "type": "address"
8144
+ },
8145
+ {
8146
+ "internalType": "address",
8147
+ "name": "borrower",
8148
+ "type": "address"
8149
+ },
8150
+ {
8151
+ "components": [
8152
+ {
8153
+ "internalType": "uint256",
8154
+ "name": "mantissa",
8155
+ "type": "uint256"
8156
+ }
8157
+ ],
8158
+ "internalType": "struct ExponentialNoError.Exp",
8159
+ "name": "marketBorrowIndex",
8160
+ "type": "tuple"
8161
+ }
8162
+ ],
8163
+ "name": "distributeBorrowerRewardToken",
8164
+ "outputs": [],
8165
+ "stateMutability": "nonpayable",
8166
+ "type": "function"
8167
+ },
8168
+ {
8169
+ "inputs": [
8170
+ {
8171
+ "internalType": "address",
8172
+ "name": "vToken",
8173
+ "type": "address"
8174
+ },
8175
+ {
8176
+ "internalType": "address",
8177
+ "name": "supplier",
8178
+ "type": "address"
8179
+ }
8180
+ ],
8181
+ "name": "distributeSupplierRewardToken",
8182
+ "outputs": [],
8183
+ "stateMutability": "nonpayable",
8184
+ "type": "function"
8185
+ },
8186
+ {
8187
+ "inputs": [],
8188
+ "name": "getBlockNumberOrTimestamp",
8189
+ "outputs": [
8190
+ {
8191
+ "internalType": "uint256",
8192
+ "name": "",
8193
+ "type": "uint256"
8194
+ }
8195
+ ],
8196
+ "stateMutability": "view",
8197
+ "type": "function"
8198
+ },
8199
+ {
8200
+ "inputs": [
8201
+ {
8202
+ "internalType": "address",
8203
+ "name": "recipient",
8204
+ "type": "address"
8205
+ },
8206
+ {
8207
+ "internalType": "uint256",
8208
+ "name": "amount",
8209
+ "type": "uint256"
8210
+ }
8211
+ ],
8212
+ "name": "grantRewardToken",
8213
+ "outputs": [],
8214
+ "stateMutability": "nonpayable",
8215
+ "type": "function"
8216
+ },
8217
+ {
8218
+ "inputs": [
8219
+ {
8220
+ "internalType": "contract Comptroller",
8221
+ "name": "comptroller_",
8222
+ "type": "address"
8223
+ },
8224
+ {
8225
+ "internalType": "contract IERC20Upgradeable",
8226
+ "name": "rewardToken_",
8227
+ "type": "address"
8228
+ },
8229
+ {
8230
+ "internalType": "uint256",
8231
+ "name": "loopsLimit_",
8232
+ "type": "uint256"
8233
+ },
8234
+ {
8235
+ "internalType": "address",
8236
+ "name": "accessControlManager_",
8237
+ "type": "address"
8238
+ }
8239
+ ],
8240
+ "name": "initialize",
8241
+ "outputs": [],
8242
+ "stateMutability": "nonpayable",
8243
+ "type": "function"
8244
+ },
8245
+ {
8246
+ "inputs": [
8247
+ {
8248
+ "internalType": "address",
8249
+ "name": "vToken",
8250
+ "type": "address"
8251
+ }
8252
+ ],
8253
+ "name": "initializeMarket",
8254
+ "outputs": [],
8255
+ "stateMutability": "nonpayable",
8256
+ "type": "function"
8257
+ },
8258
+ {
8259
+ "inputs": [],
8260
+ "name": "isTimeBased",
8261
+ "outputs": [
8262
+ {
8263
+ "internalType": "bool",
8264
+ "name": "",
8265
+ "type": "bool"
8266
+ }
8267
+ ],
8268
+ "stateMutability": "view",
8269
+ "type": "function"
8270
+ },
8271
+ {
8272
+ "inputs": [
8273
+ {
8274
+ "internalType": "address",
8275
+ "name": "",
8276
+ "type": "address"
8277
+ }
8278
+ ],
8279
+ "name": "lastContributorBlock",
8280
+ "outputs": [
8281
+ {
8282
+ "internalType": "uint256",
8283
+ "name": "",
8284
+ "type": "uint256"
8285
+ }
8286
+ ],
8287
+ "stateMutability": "view",
8288
+ "type": "function"
8289
+ },
8290
+ {
8291
+ "inputs": [],
8292
+ "name": "maxLoopsLimit",
8293
+ "outputs": [
8294
+ {
8295
+ "internalType": "uint256",
8296
+ "name": "",
8297
+ "type": "uint256"
8298
+ }
8299
+ ],
8300
+ "stateMutability": "view",
8301
+ "type": "function"
8302
+ },
8303
+ {
8304
+ "inputs": [],
8305
+ "name": "owner",
8306
+ "outputs": [
8307
+ {
8308
+ "internalType": "address",
8309
+ "name": "",
8310
+ "type": "address"
8311
+ }
8312
+ ],
8313
+ "stateMutability": "view",
8314
+ "type": "function"
8315
+ },
8316
+ {
8317
+ "inputs": [],
8318
+ "name": "pendingOwner",
8319
+ "outputs": [
8320
+ {
8321
+ "internalType": "address",
8322
+ "name": "",
8323
+ "type": "address"
8324
+ }
8325
+ ],
8326
+ "stateMutability": "view",
8327
+ "type": "function"
8328
+ },
8329
+ {
8330
+ "inputs": [],
8331
+ "name": "renounceOwnership",
8332
+ "outputs": [],
8333
+ "stateMutability": "nonpayable",
8334
+ "type": "function"
8335
+ },
8336
+ {
8337
+ "inputs": [],
8338
+ "name": "rewardToken",
8339
+ "outputs": [
8340
+ {
8341
+ "internalType": "contract IERC20Upgradeable",
8342
+ "name": "",
8343
+ "type": "address"
8344
+ }
8345
+ ],
8346
+ "stateMutability": "view",
8347
+ "type": "function"
8348
+ },
8349
+ {
8350
+ "inputs": [
8351
+ {
8352
+ "internalType": "address",
8353
+ "name": "",
8354
+ "type": "address"
8355
+ }
8356
+ ],
8357
+ "name": "rewardTokenAccrued",
8358
+ "outputs": [
8359
+ {
8360
+ "internalType": "uint256",
8361
+ "name": "",
8362
+ "type": "uint256"
8363
+ }
8364
+ ],
8365
+ "stateMutability": "view",
8366
+ "type": "function"
8367
+ },
8368
+ {
8369
+ "inputs": [
8370
+ {
8371
+ "internalType": "address",
8372
+ "name": "",
8373
+ "type": "address"
8374
+ }
8375
+ ],
8376
+ "name": "rewardTokenBorrowSpeeds",
8377
+ "outputs": [
8378
+ {
8379
+ "internalType": "uint256",
8380
+ "name": "",
8381
+ "type": "uint256"
8382
+ }
8383
+ ],
8384
+ "stateMutability": "view",
8385
+ "type": "function"
8386
+ },
8387
+ {
8388
+ "inputs": [
8389
+ {
8390
+ "internalType": "address",
8391
+ "name": "",
8392
+ "type": "address"
8393
+ }
8394
+ ],
8395
+ "name": "rewardTokenBorrowState",
8396
+ "outputs": [
8397
+ {
8398
+ "internalType": "uint224",
8399
+ "name": "index",
8400
+ "type": "uint224"
8401
+ },
8402
+ {
8403
+ "internalType": "uint32",
8404
+ "name": "block",
8405
+ "type": "uint32"
8406
+ },
8407
+ {
8408
+ "internalType": "uint32",
8409
+ "name": "lastRewardingBlock",
8410
+ "type": "uint32"
8411
+ }
8412
+ ],
8413
+ "stateMutability": "view",
8414
+ "type": "function"
8415
+ },
8416
+ {
8417
+ "inputs": [
8418
+ {
8419
+ "internalType": "address",
8420
+ "name": "",
8421
+ "type": "address"
8422
+ }
8423
+ ],
8424
+ "name": "rewardTokenBorrowStateTimeBased",
8425
+ "outputs": [
8426
+ {
8427
+ "internalType": "uint224",
8428
+ "name": "index",
8429
+ "type": "uint224"
8430
+ },
8431
+ {
8432
+ "internalType": "uint256",
8433
+ "name": "timestamp",
8434
+ "type": "uint256"
8435
+ },
8436
+ {
8437
+ "internalType": "uint256",
8438
+ "name": "lastRewardingTimestamp",
8439
+ "type": "uint256"
8440
+ }
8441
+ ],
8442
+ "stateMutability": "view",
8443
+ "type": "function"
8444
+ },
8445
+ {
8446
+ "inputs": [
8447
+ {
8448
+ "internalType": "address",
8449
+ "name": "",
8450
+ "type": "address"
8451
+ },
8452
+ {
8453
+ "internalType": "address",
8454
+ "name": "",
8455
+ "type": "address"
8456
+ }
8457
+ ],
8458
+ "name": "rewardTokenBorrowerIndex",
8459
+ "outputs": [
8460
+ {
8461
+ "internalType": "uint256",
8462
+ "name": "",
8463
+ "type": "uint256"
8464
+ }
8465
+ ],
8466
+ "stateMutability": "view",
8467
+ "type": "function"
8468
+ },
8469
+ {
8470
+ "inputs": [
8471
+ {
8472
+ "internalType": "address",
8473
+ "name": "",
8474
+ "type": "address"
8475
+ }
8476
+ ],
8477
+ "name": "rewardTokenContributorSpeeds",
8478
+ "outputs": [
8479
+ {
8480
+ "internalType": "uint256",
8481
+ "name": "",
8482
+ "type": "uint256"
8483
+ }
8484
+ ],
8485
+ "stateMutability": "view",
8486
+ "type": "function"
8487
+ },
8488
+ {
8489
+ "inputs": [
8490
+ {
8491
+ "internalType": "address",
8492
+ "name": "",
8493
+ "type": "address"
8494
+ },
8495
+ {
8496
+ "internalType": "address",
8497
+ "name": "",
8498
+ "type": "address"
8499
+ }
8500
+ ],
8501
+ "name": "rewardTokenSupplierIndex",
8502
+ "outputs": [
8503
+ {
8504
+ "internalType": "uint256",
8505
+ "name": "",
8506
+ "type": "uint256"
8507
+ }
8508
+ ],
8509
+ "stateMutability": "view",
8510
+ "type": "function"
8511
+ },
8512
+ {
8513
+ "inputs": [
8514
+ {
8515
+ "internalType": "address",
8516
+ "name": "",
8517
+ "type": "address"
8518
+ }
8519
+ ],
8520
+ "name": "rewardTokenSupplySpeeds",
8521
+ "outputs": [
8522
+ {
8523
+ "internalType": "uint256",
8524
+ "name": "",
8525
+ "type": "uint256"
8526
+ }
8527
+ ],
8528
+ "stateMutability": "view",
8529
+ "type": "function"
8530
+ },
8531
+ {
8532
+ "inputs": [
8533
+ {
8534
+ "internalType": "address",
8535
+ "name": "",
8536
+ "type": "address"
8537
+ }
8538
+ ],
8539
+ "name": "rewardTokenSupplyState",
8540
+ "outputs": [
8541
+ {
8542
+ "internalType": "uint224",
8543
+ "name": "index",
8544
+ "type": "uint224"
8545
+ },
8546
+ {
8547
+ "internalType": "uint32",
8548
+ "name": "block",
8549
+ "type": "uint32"
8550
+ },
8551
+ {
8552
+ "internalType": "uint32",
8553
+ "name": "lastRewardingBlock",
8554
+ "type": "uint32"
8555
+ }
8556
+ ],
8557
+ "stateMutability": "view",
8558
+ "type": "function"
8559
+ },
8560
+ {
8561
+ "inputs": [
8562
+ {
8563
+ "internalType": "address",
8564
+ "name": "",
8565
+ "type": "address"
8566
+ }
8567
+ ],
8568
+ "name": "rewardTokenSupplyStateTimeBased",
8569
+ "outputs": [
8570
+ {
8571
+ "internalType": "uint224",
8572
+ "name": "index",
8573
+ "type": "uint224"
8574
+ },
8575
+ {
8576
+ "internalType": "uint256",
8577
+ "name": "timestamp",
8578
+ "type": "uint256"
8579
+ },
8580
+ {
8581
+ "internalType": "uint256",
8582
+ "name": "lastRewardingTimestamp",
8583
+ "type": "uint256"
8584
+ }
8585
+ ],
8586
+ "stateMutability": "view",
8587
+ "type": "function"
8588
+ },
8589
+ {
8590
+ "inputs": [
8591
+ {
8592
+ "internalType": "address",
8593
+ "name": "accessControlManager_",
8594
+ "type": "address"
8595
+ }
8596
+ ],
8597
+ "name": "setAccessControlManager",
8598
+ "outputs": [],
8599
+ "stateMutability": "nonpayable",
8600
+ "type": "function"
8601
+ },
8602
+ {
8603
+ "inputs": [
8604
+ {
8605
+ "internalType": "address",
8606
+ "name": "contributor",
8607
+ "type": "address"
8608
+ },
8609
+ {
8610
+ "internalType": "uint256",
8611
+ "name": "rewardTokenSpeed",
8612
+ "type": "uint256"
8613
+ }
8614
+ ],
8615
+ "name": "setContributorRewardTokenSpeed",
8616
+ "outputs": [],
8617
+ "stateMutability": "nonpayable",
8618
+ "type": "function"
8619
+ },
8620
+ {
8621
+ "inputs": [
8622
+ {
8623
+ "internalType": "contract VToken[]",
8624
+ "name": "vTokens",
8625
+ "type": "address[]"
8626
+ },
8627
+ {
8628
+ "internalType": "uint256[]",
8629
+ "name": "supplyLastRewardingBlockTimestamps",
8630
+ "type": "uint256[]"
8631
+ },
8632
+ {
8633
+ "internalType": "uint256[]",
8634
+ "name": "borrowLastRewardingBlockTimestamps",
8635
+ "type": "uint256[]"
8636
+ }
8637
+ ],
8638
+ "name": "setLastRewardingBlockTimestamps",
8639
+ "outputs": [],
8640
+ "stateMutability": "nonpayable",
8641
+ "type": "function"
8642
+ },
8643
+ {
8644
+ "inputs": [
8645
+ {
8646
+ "internalType": "contract VToken[]",
8647
+ "name": "vTokens",
8648
+ "type": "address[]"
8649
+ },
8650
+ {
8651
+ "internalType": "uint32[]",
8652
+ "name": "supplyLastRewardingBlocks",
8653
+ "type": "uint32[]"
8654
+ },
8655
+ {
8656
+ "internalType": "uint32[]",
8657
+ "name": "borrowLastRewardingBlocks",
8658
+ "type": "uint32[]"
8659
+ }
8660
+ ],
8661
+ "name": "setLastRewardingBlocks",
8662
+ "outputs": [],
8663
+ "stateMutability": "nonpayable",
8664
+ "type": "function"
8665
+ },
8666
+ {
8667
+ "inputs": [
8668
+ {
8669
+ "internalType": "uint256",
8670
+ "name": "limit",
8671
+ "type": "uint256"
8672
+ }
8673
+ ],
8674
+ "name": "setMaxLoopsLimit",
8675
+ "outputs": [],
8676
+ "stateMutability": "nonpayable",
8677
+ "type": "function"
8678
+ },
8679
+ {
8680
+ "inputs": [
8681
+ {
8682
+ "internalType": "contract VToken[]",
8683
+ "name": "vTokens",
8684
+ "type": "address[]"
8685
+ },
8686
+ {
8687
+ "internalType": "uint256[]",
8688
+ "name": "supplySpeeds",
8689
+ "type": "uint256[]"
8690
+ },
8691
+ {
8692
+ "internalType": "uint256[]",
8693
+ "name": "borrowSpeeds",
8694
+ "type": "uint256[]"
8695
+ }
8696
+ ],
8697
+ "name": "setRewardTokenSpeeds",
8698
+ "outputs": [],
8699
+ "stateMutability": "nonpayable",
8700
+ "type": "function"
8701
+ },
8702
+ {
8703
+ "inputs": [
8704
+ {
8705
+ "internalType": "address",
8706
+ "name": "newOwner",
8707
+ "type": "address"
8708
+ }
8709
+ ],
8710
+ "name": "transferOwnership",
8711
+ "outputs": [],
8712
+ "stateMutability": "nonpayable",
8713
+ "type": "function"
8714
+ },
8715
+ {
8716
+ "inputs": [
8717
+ {
8718
+ "internalType": "address",
8719
+ "name": "contributor",
8720
+ "type": "address"
8721
+ }
8722
+ ],
8723
+ "name": "updateContributorRewards",
8724
+ "outputs": [],
8725
+ "stateMutability": "nonpayable",
8726
+ "type": "function"
8727
+ },
8728
+ {
8729
+ "inputs": [
8730
+ {
8731
+ "internalType": "address",
8732
+ "name": "vToken",
8733
+ "type": "address"
8734
+ },
8735
+ {
8736
+ "components": [
8737
+ {
8738
+ "internalType": "uint256",
8739
+ "name": "mantissa",
8740
+ "type": "uint256"
8741
+ }
8742
+ ],
8743
+ "internalType": "struct ExponentialNoError.Exp",
8744
+ "name": "marketBorrowIndex",
8745
+ "type": "tuple"
8746
+ }
8747
+ ],
8748
+ "name": "updateRewardTokenBorrowIndex",
8749
+ "outputs": [],
8750
+ "stateMutability": "nonpayable",
8751
+ "type": "function"
8752
+ },
8753
+ {
8754
+ "inputs": [
8755
+ {
8756
+ "internalType": "address",
8757
+ "name": "vToken",
8758
+ "type": "address"
8759
+ }
8760
+ ],
8761
+ "name": "updateRewardTokenSupplyIndex",
8762
+ "outputs": [],
8763
+ "stateMutability": "nonpayable",
8764
+ "type": "function"
8765
+ }
8766
+ ]
8767
+ },
8768
+ "RewardsDistributor_Core_0": {
8769
+ "address": "0x24139Dad3fe87Ee718ff9c2A8E0C4188578ba9aF",
8770
+ "abi": [
8771
+ {
8772
+ "anonymous": false,
8773
+ "inputs": [
8774
+ {
8775
+ "indexed": false,
8776
+ "internalType": "address",
8777
+ "name": "previousAdmin",
8778
+ "type": "address"
8779
+ },
8780
+ {
8781
+ "indexed": false,
8782
+ "internalType": "address",
8783
+ "name": "newAdmin",
8784
+ "type": "address"
8785
+ }
8786
+ ],
8787
+ "name": "AdminChanged",
8788
+ "type": "event"
8789
+ },
8790
+ {
8791
+ "anonymous": false,
8792
+ "inputs": [
8793
+ {
8794
+ "indexed": true,
8795
+ "internalType": "address",
8796
+ "name": "beacon",
8797
+ "type": "address"
8798
+ }
8799
+ ],
8800
+ "name": "BeaconUpgraded",
8801
+ "type": "event"
8802
+ },
8803
+ {
8804
+ "anonymous": false,
8805
+ "inputs": [
8806
+ {
8807
+ "indexed": true,
8808
+ "internalType": "address",
8809
+ "name": "implementation",
8810
+ "type": "address"
8811
+ }
8812
+ ],
8813
+ "name": "Upgraded",
8814
+ "type": "event"
8815
+ },
8816
+ {
8817
+ "stateMutability": "payable",
8818
+ "type": "fallback"
8819
+ },
8820
+ {
8821
+ "inputs": [],
8822
+ "name": "admin",
8823
+ "outputs": [
8824
+ {
8825
+ "internalType": "address",
8826
+ "name": "admin_",
8827
+ "type": "address"
8828
+ }
8829
+ ],
8830
+ "stateMutability": "nonpayable",
8831
+ "type": "function"
8832
+ },
8833
+ {
8834
+ "inputs": [],
8835
+ "name": "implementation",
8836
+ "outputs": [
8837
+ {
8838
+ "internalType": "address",
8839
+ "name": "implementation_",
8840
+ "type": "address"
8841
+ }
8842
+ ],
8843
+ "stateMutability": "nonpayable",
8844
+ "type": "function"
8845
+ },
8846
+ {
8847
+ "inputs": [
8848
+ {
8849
+ "internalType": "address",
8850
+ "name": "newImplementation",
8851
+ "type": "address"
8852
+ }
8853
+ ],
8854
+ "name": "upgradeTo",
8855
+ "outputs": [],
8856
+ "stateMutability": "nonpayable",
8857
+ "type": "function"
8858
+ },
8859
+ {
8860
+ "inputs": [
8861
+ {
8862
+ "internalType": "address",
8863
+ "name": "newImplementation",
8864
+ "type": "address"
8865
+ },
8866
+ {
8867
+ "internalType": "bytes",
8868
+ "name": "data",
8869
+ "type": "bytes"
8870
+ }
8871
+ ],
8872
+ "name": "upgradeToAndCall",
8873
+ "outputs": [],
8874
+ "stateMutability": "payable",
8875
+ "type": "function"
8876
+ },
8877
+ {
8878
+ "stateMutability": "payable",
8879
+ "type": "receive"
8880
+ },
8881
+ {
8882
+ "inputs": [],
8883
+ "name": "InvalidBlocksPerYear",
8884
+ "type": "error"
8885
+ },
8886
+ {
8887
+ "inputs": [],
8888
+ "name": "InvalidTimeBasedConfiguration",
8889
+ "type": "error"
8890
+ },
8891
+ {
8892
+ "inputs": [
8893
+ {
8894
+ "internalType": "uint256",
8895
+ "name": "loopsLimit",
8896
+ "type": "uint256"
8897
+ },
8898
+ {
8899
+ "internalType": "uint256",
8900
+ "name": "requiredLoops",
8901
+ "type": "uint256"
8902
+ }
8903
+ ],
8904
+ "name": "MaxLoopsLimitExceeded",
8905
+ "type": "error"
8906
+ },
8907
+ {
8908
+ "inputs": [
8909
+ {
8910
+ "internalType": "address",
8911
+ "name": "sender",
8912
+ "type": "address"
8913
+ },
8914
+ {
8915
+ "internalType": "address",
8916
+ "name": "calledContract",
8917
+ "type": "address"
8918
+ },
8919
+ {
8920
+ "internalType": "string",
8921
+ "name": "methodSignature",
8922
+ "type": "string"
8923
+ }
8924
+ ],
8925
+ "name": "Unauthorized",
8926
+ "type": "error"
8927
+ },
8928
+ {
8929
+ "anonymous": false,
8930
+ "inputs": [
8931
+ {
8932
+ "indexed": true,
8933
+ "internalType": "address",
8934
+ "name": "vToken",
8935
+ "type": "address"
8936
+ },
8937
+ {
8938
+ "indexed": false,
8939
+ "internalType": "uint256",
8940
+ "name": "newTimestamp",
8941
+ "type": "uint256"
8942
+ }
8943
+ ],
8944
+ "name": "BorrowLastRewardingBlockTimestampUpdated",
8945
+ "type": "event"
8946
+ },
8947
+ {
8948
+ "anonymous": false,
8949
+ "inputs": [
8950
+ {
8951
+ "indexed": true,
8952
+ "internalType": "address",
8953
+ "name": "vToken",
8954
+ "type": "address"
8955
+ },
8956
+ {
8957
+ "indexed": false,
8958
+ "internalType": "uint32",
8959
+ "name": "newBlock",
8960
+ "type": "uint32"
8961
+ }
8962
+ ],
8963
+ "name": "BorrowLastRewardingBlockUpdated",
8964
+ "type": "event"
8965
+ },
8966
+ {
8967
+ "anonymous": false,
8968
+ "inputs": [
8969
+ {
8970
+ "indexed": true,
8971
+ "internalType": "address",
8972
+ "name": "contributor",
8973
+ "type": "address"
8974
+ },
8975
+ {
8976
+ "indexed": false,
8977
+ "internalType": "uint256",
8978
+ "name": "newSpeed",
8979
+ "type": "uint256"
8980
+ }
8981
+ ],
8982
+ "name": "ContributorRewardTokenSpeedUpdated",
8983
+ "type": "event"
8984
+ },
8985
+ {
8986
+ "anonymous": false,
8987
+ "inputs": [
8988
+ {
8989
+ "indexed": true,
8990
+ "internalType": "address",
8991
+ "name": "contributor",
8992
+ "type": "address"
8993
+ },
8994
+ {
8995
+ "indexed": false,
8996
+ "internalType": "uint256",
8997
+ "name": "rewardAccrued",
8998
+ "type": "uint256"
8999
+ }
9000
+ ],
9001
+ "name": "ContributorRewardsUpdated",
9002
+ "type": "event"
9003
+ },
9004
+ {
9005
+ "anonymous": false,
9006
+ "inputs": [
9007
+ {
9008
+ "indexed": true,
9009
+ "internalType": "contract VToken",
9010
+ "name": "vToken",
9011
+ "type": "address"
9012
+ },
9013
+ {
9014
+ "indexed": true,
9015
+ "internalType": "address",
9016
+ "name": "borrower",
9017
+ "type": "address"
9018
+ },
9019
+ {
9020
+ "indexed": false,
9021
+ "internalType": "uint256",
9022
+ "name": "rewardTokenDelta",
9023
+ "type": "uint256"
9024
+ },
9025
+ {
9026
+ "indexed": false,
9027
+ "internalType": "uint256",
9028
+ "name": "rewardTokenTotal",
9029
+ "type": "uint256"
9030
+ },
9031
+ {
9032
+ "indexed": false,
9033
+ "internalType": "uint256",
9034
+ "name": "rewardTokenBorrowIndex",
9035
+ "type": "uint256"
9036
+ }
9037
+ ],
9038
+ "name": "DistributedBorrowerRewardToken",
9039
+ "type": "event"
9040
+ },
9041
+ {
9042
+ "anonymous": false,
9043
+ "inputs": [
9044
+ {
9045
+ "indexed": true,
9046
+ "internalType": "contract VToken",
9047
+ "name": "vToken",
9048
+ "type": "address"
9049
+ },
9050
+ {
9051
+ "indexed": true,
9052
+ "internalType": "address",
9053
+ "name": "supplier",
9054
+ "type": "address"
9055
+ },
9056
+ {
9057
+ "indexed": false,
9058
+ "internalType": "uint256",
9059
+ "name": "rewardTokenDelta",
9060
+ "type": "uint256"
9061
+ },
9062
+ {
9063
+ "indexed": false,
9064
+ "internalType": "uint256",
9065
+ "name": "rewardTokenTotal",
9066
+ "type": "uint256"
9067
+ },
9068
+ {
9069
+ "indexed": false,
9070
+ "internalType": "uint256",
9071
+ "name": "rewardTokenSupplyIndex",
9072
+ "type": "uint256"
9073
+ }
9074
+ ],
9075
+ "name": "DistributedSupplierRewardToken",
9076
+ "type": "event"
9077
+ },
9078
+ {
9079
+ "anonymous": false,
9080
+ "inputs": [
9081
+ {
9082
+ "indexed": false,
9083
+ "internalType": "uint8",
9084
+ "name": "version",
9085
+ "type": "uint8"
9086
+ }
9087
+ ],
9088
+ "name": "Initialized",
9089
+ "type": "event"
9090
+ },
9091
+ {
9092
+ "anonymous": false,
9093
+ "inputs": [
9094
+ {
9095
+ "indexed": true,
9096
+ "internalType": "address",
9097
+ "name": "vToken",
9098
+ "type": "address"
9099
+ }
9100
+ ],
9101
+ "name": "MarketInitialized",
9102
+ "type": "event"
9103
+ },
9104
+ {
9105
+ "anonymous": false,
9106
+ "inputs": [
9107
+ {
9108
+ "indexed": false,
9109
+ "internalType": "uint256",
9110
+ "name": "oldMaxLoopsLimit",
9111
+ "type": "uint256"
9112
+ },
9113
+ {
9114
+ "indexed": false,
9115
+ "internalType": "uint256",
9116
+ "name": "newmaxLoopsLimit",
9117
+ "type": "uint256"
9118
+ }
9119
+ ],
9120
+ "name": "MaxLoopsLimitUpdated",
9121
+ "type": "event"
9122
+ },
9123
+ {
9124
+ "anonymous": false,
9125
+ "inputs": [
9126
+ {
9127
+ "indexed": false,
9128
+ "internalType": "address",
9129
+ "name": "oldAccessControlManager",
9130
+ "type": "address"
9131
+ },
9132
+ {
9133
+ "indexed": false,
9134
+ "internalType": "address",
9135
+ "name": "newAccessControlManager",
9136
+ "type": "address"
9137
+ }
9138
+ ],
9139
+ "name": "NewAccessControlManager",
9140
+ "type": "event"
9141
+ },
9142
+ {
9143
+ "anonymous": false,
9144
+ "inputs": [
9145
+ {
9146
+ "indexed": true,
9147
+ "internalType": "address",
9148
+ "name": "previousOwner",
9149
+ "type": "address"
9150
+ },
9151
+ {
9152
+ "indexed": true,
9153
+ "internalType": "address",
9154
+ "name": "newOwner",
9155
+ "type": "address"
9156
+ }
9157
+ ],
9158
+ "name": "OwnershipTransferStarted",
9159
+ "type": "event"
9160
+ },
9161
+ {
9162
+ "anonymous": false,
9163
+ "inputs": [
9164
+ {
9165
+ "indexed": true,
9166
+ "internalType": "address",
9167
+ "name": "previousOwner",
9168
+ "type": "address"
9169
+ },
9170
+ {
9171
+ "indexed": true,
9172
+ "internalType": "address",
9173
+ "name": "newOwner",
9174
+ "type": "address"
9175
+ }
9176
+ ],
9177
+ "name": "OwnershipTransferred",
9178
+ "type": "event"
9179
+ },
9180
+ {
9181
+ "anonymous": false,
9182
+ "inputs": [
9183
+ {
9184
+ "indexed": true,
9185
+ "internalType": "address",
9186
+ "name": "vToken",
9187
+ "type": "address"
9188
+ },
9189
+ {
9190
+ "components": [
9191
+ {
9192
+ "internalType": "uint256",
9193
+ "name": "mantissa",
9194
+ "type": "uint256"
9195
+ }
9196
+ ],
9197
+ "indexed": false,
9198
+ "internalType": "struct ExponentialNoError.Exp",
9199
+ "name": "marketBorrowIndex",
9200
+ "type": "tuple"
9201
+ }
9202
+ ],
9203
+ "name": "RewardTokenBorrowIndexUpdated",
9204
+ "type": "event"
9205
+ },
9206
+ {
9207
+ "anonymous": false,
9208
+ "inputs": [
9209
+ {
9210
+ "indexed": true,
9211
+ "internalType": "contract VToken",
9212
+ "name": "vToken",
9213
+ "type": "address"
9214
+ },
9215
+ {
9216
+ "indexed": false,
9217
+ "internalType": "uint256",
9218
+ "name": "newSpeed",
9219
+ "type": "uint256"
9220
+ }
9221
+ ],
9222
+ "name": "RewardTokenBorrowSpeedUpdated",
9223
+ "type": "event"
9224
+ },
9225
+ {
9226
+ "anonymous": false,
9227
+ "inputs": [
9228
+ {
9229
+ "indexed": true,
9230
+ "internalType": "address",
9231
+ "name": "recipient",
9232
+ "type": "address"
9233
+ },
9234
+ {
9235
+ "indexed": false,
9236
+ "internalType": "uint256",
9237
+ "name": "amount",
9238
+ "type": "uint256"
9239
+ }
9240
+ ],
9241
+ "name": "RewardTokenGranted",
9242
+ "type": "event"
9243
+ },
9244
+ {
9245
+ "anonymous": false,
9246
+ "inputs": [
9247
+ {
9248
+ "indexed": true,
9249
+ "internalType": "address",
9250
+ "name": "vToken",
9251
+ "type": "address"
9252
+ }
9253
+ ],
9254
+ "name": "RewardTokenSupplyIndexUpdated",
9255
+ "type": "event"
9256
+ },
9257
+ {
9258
+ "anonymous": false,
9259
+ "inputs": [
9260
+ {
9261
+ "indexed": true,
9262
+ "internalType": "contract VToken",
9263
+ "name": "vToken",
9264
+ "type": "address"
9265
+ },
9266
+ {
9267
+ "indexed": false,
9268
+ "internalType": "uint256",
9269
+ "name": "newSpeed",
9270
+ "type": "uint256"
9271
+ }
9272
+ ],
9273
+ "name": "RewardTokenSupplySpeedUpdated",
9274
+ "type": "event"
9275
+ },
9276
+ {
9277
+ "anonymous": false,
9278
+ "inputs": [
9279
+ {
9280
+ "indexed": true,
9281
+ "internalType": "address",
9282
+ "name": "vToken",
9283
+ "type": "address"
9284
+ },
9285
+ {
9286
+ "indexed": false,
9287
+ "internalType": "uint256",
9288
+ "name": "newTimestamp",
9289
+ "type": "uint256"
9290
+ }
9291
+ ],
9292
+ "name": "SupplyLastRewardingBlockTimestampUpdated",
9293
+ "type": "event"
9294
+ },
9295
+ {
9296
+ "anonymous": false,
9297
+ "inputs": [
9298
+ {
9299
+ "indexed": true,
9300
+ "internalType": "address",
9301
+ "name": "vToken",
9302
+ "type": "address"
9303
+ },
9304
+ {
9305
+ "indexed": false,
9306
+ "internalType": "uint32",
9307
+ "name": "newBlock",
9308
+ "type": "uint32"
9309
+ }
9310
+ ],
9311
+ "name": "SupplyLastRewardingBlockUpdated",
9312
+ "type": "event"
9313
+ },
9314
+ {
9315
+ "inputs": [],
9316
+ "name": "INITIAL_INDEX",
9317
+ "outputs": [
9318
+ {
9319
+ "internalType": "uint224",
9320
+ "name": "",
9321
+ "type": "uint224"
9322
+ }
9323
+ ],
9324
+ "stateMutability": "view",
9325
+ "type": "function"
9326
+ },
9327
+ {
9328
+ "inputs": [],
9329
+ "name": "acceptOwnership",
9330
+ "outputs": [],
9331
+ "stateMutability": "nonpayable",
9332
+ "type": "function"
9333
+ },
9334
+ {
9335
+ "inputs": [],
9336
+ "name": "accessControlManager",
9337
+ "outputs": [
9338
+ {
9339
+ "internalType": "contract IAccessControlManagerV8",
9340
+ "name": "",
9341
+ "type": "address"
9342
+ }
9343
+ ],
9344
+ "stateMutability": "view",
9345
+ "type": "function"
9346
+ },
9347
+ {
9348
+ "inputs": [],
9349
+ "name": "blocksOrSecondsPerYear",
9350
+ "outputs": [
9351
+ {
9352
+ "internalType": "uint256",
9353
+ "name": "",
9354
+ "type": "uint256"
9355
+ }
9356
+ ],
9357
+ "stateMutability": "view",
9358
+ "type": "function"
9359
+ },
9360
+ {
9361
+ "inputs": [
9362
+ {
9363
+ "internalType": "address",
9364
+ "name": "holder",
9365
+ "type": "address"
9366
+ },
9367
+ {
9368
+ "internalType": "contract VToken[]",
9369
+ "name": "vTokens",
9370
+ "type": "address[]"
9371
+ }
9372
+ ],
9373
+ "name": "claimRewardToken",
9374
+ "outputs": [],
9375
+ "stateMutability": "nonpayable",
9376
+ "type": "function"
9377
+ },
9378
+ {
9379
+ "inputs": [
9380
+ {
9381
+ "internalType": "address",
9382
+ "name": "holder",
9383
+ "type": "address"
9384
+ }
9385
+ ],
9386
+ "name": "claimRewardToken",
9387
+ "outputs": [],
9388
+ "stateMutability": "nonpayable",
9389
+ "type": "function"
9390
+ },
9391
+ {
9392
+ "inputs": [
9393
+ {
9394
+ "internalType": "address",
9395
+ "name": "vToken",
9396
+ "type": "address"
9397
+ },
9398
+ {
9399
+ "internalType": "address",
9400
+ "name": "borrower",
9401
+ "type": "address"
9402
+ },
9403
+ {
9404
+ "components": [
9405
+ {
9406
+ "internalType": "uint256",
9407
+ "name": "mantissa",
9408
+ "type": "uint256"
9409
+ }
9410
+ ],
9411
+ "internalType": "struct ExponentialNoError.Exp",
9412
+ "name": "marketBorrowIndex",
9413
+ "type": "tuple"
9414
+ }
9415
+ ],
9416
+ "name": "distributeBorrowerRewardToken",
9417
+ "outputs": [],
9418
+ "stateMutability": "nonpayable",
9419
+ "type": "function"
9420
+ },
9421
+ {
9422
+ "inputs": [
9423
+ {
9424
+ "internalType": "address",
9425
+ "name": "vToken",
9426
+ "type": "address"
9427
+ },
9428
+ {
9429
+ "internalType": "address",
9430
+ "name": "supplier",
9431
+ "type": "address"
9432
+ }
9433
+ ],
9434
+ "name": "distributeSupplierRewardToken",
9435
+ "outputs": [],
9436
+ "stateMutability": "nonpayable",
9437
+ "type": "function"
9438
+ },
9439
+ {
9440
+ "inputs": [],
9441
+ "name": "getBlockNumberOrTimestamp",
9442
+ "outputs": [
9443
+ {
9444
+ "internalType": "uint256",
9445
+ "name": "",
9446
+ "type": "uint256"
9447
+ }
9448
+ ],
9449
+ "stateMutability": "view",
9450
+ "type": "function"
9451
+ },
9452
+ {
9453
+ "inputs": [
9454
+ {
9455
+ "internalType": "address",
9456
+ "name": "recipient",
9457
+ "type": "address"
9458
+ },
9459
+ {
9460
+ "internalType": "uint256",
9461
+ "name": "amount",
9462
+ "type": "uint256"
9463
+ }
9464
+ ],
9465
+ "name": "grantRewardToken",
9466
+ "outputs": [],
9467
+ "stateMutability": "nonpayable",
9468
+ "type": "function"
9469
+ },
9470
+ {
9471
+ "inputs": [
9472
+ {
9473
+ "internalType": "contract Comptroller",
9474
+ "name": "comptroller_",
9475
+ "type": "address"
9476
+ },
9477
+ {
9478
+ "internalType": "contract IERC20Upgradeable",
9479
+ "name": "rewardToken_",
9480
+ "type": "address"
9481
+ },
9482
+ {
9483
+ "internalType": "uint256",
9484
+ "name": "loopsLimit_",
9485
+ "type": "uint256"
9486
+ },
9487
+ {
9488
+ "internalType": "address",
9489
+ "name": "accessControlManager_",
9490
+ "type": "address"
9491
+ }
9492
+ ],
9493
+ "name": "initialize",
9494
+ "outputs": [],
9495
+ "stateMutability": "nonpayable",
9496
+ "type": "function"
9497
+ },
9498
+ {
9499
+ "inputs": [
9500
+ {
9501
+ "internalType": "address",
9502
+ "name": "vToken",
9503
+ "type": "address"
9504
+ }
9505
+ ],
9506
+ "name": "initializeMarket",
9507
+ "outputs": [],
9508
+ "stateMutability": "nonpayable",
9509
+ "type": "function"
9510
+ },
9511
+ {
9512
+ "inputs": [],
9513
+ "name": "isTimeBased",
9514
+ "outputs": [
9515
+ {
9516
+ "internalType": "bool",
9517
+ "name": "",
9518
+ "type": "bool"
9519
+ }
9520
+ ],
9521
+ "stateMutability": "view",
9522
+ "type": "function"
9523
+ },
9524
+ {
9525
+ "inputs": [
9526
+ {
9527
+ "internalType": "address",
9528
+ "name": "",
9529
+ "type": "address"
9530
+ }
9531
+ ],
9532
+ "name": "lastContributorBlock",
9533
+ "outputs": [
9534
+ {
9535
+ "internalType": "uint256",
9536
+ "name": "",
9537
+ "type": "uint256"
9538
+ }
9539
+ ],
9540
+ "stateMutability": "view",
9541
+ "type": "function"
9542
+ },
9543
+ {
9544
+ "inputs": [],
9545
+ "name": "maxLoopsLimit",
9546
+ "outputs": [
9547
+ {
9548
+ "internalType": "uint256",
9549
+ "name": "",
9550
+ "type": "uint256"
9551
+ }
9552
+ ],
9553
+ "stateMutability": "view",
9554
+ "type": "function"
9555
+ },
9556
+ {
9557
+ "inputs": [],
9558
+ "name": "owner",
9559
+ "outputs": [
9560
+ {
9561
+ "internalType": "address",
9562
+ "name": "",
9563
+ "type": "address"
9564
+ }
9565
+ ],
9566
+ "stateMutability": "view",
9567
+ "type": "function"
9568
+ },
9569
+ {
9570
+ "inputs": [],
9571
+ "name": "pendingOwner",
9572
+ "outputs": [
9573
+ {
9574
+ "internalType": "address",
9575
+ "name": "",
9576
+ "type": "address"
9577
+ }
9578
+ ],
9579
+ "stateMutability": "view",
9580
+ "type": "function"
9581
+ },
9582
+ {
9583
+ "inputs": [],
9584
+ "name": "renounceOwnership",
9585
+ "outputs": [],
9586
+ "stateMutability": "nonpayable",
9587
+ "type": "function"
9588
+ },
9589
+ {
9590
+ "inputs": [],
9591
+ "name": "rewardToken",
9592
+ "outputs": [
9593
+ {
9594
+ "internalType": "contract IERC20Upgradeable",
9595
+ "name": "",
9596
+ "type": "address"
9597
+ }
9598
+ ],
9599
+ "stateMutability": "view",
9600
+ "type": "function"
9601
+ },
9602
+ {
9603
+ "inputs": [
9604
+ {
9605
+ "internalType": "address",
9606
+ "name": "",
9607
+ "type": "address"
9608
+ }
9609
+ ],
9610
+ "name": "rewardTokenAccrued",
9611
+ "outputs": [
9612
+ {
9613
+ "internalType": "uint256",
9614
+ "name": "",
9615
+ "type": "uint256"
9616
+ }
9617
+ ],
9618
+ "stateMutability": "view",
9619
+ "type": "function"
9620
+ },
9621
+ {
9622
+ "inputs": [
9623
+ {
9624
+ "internalType": "address",
9625
+ "name": "",
9626
+ "type": "address"
9627
+ }
9628
+ ],
9629
+ "name": "rewardTokenBorrowSpeeds",
9630
+ "outputs": [
9631
+ {
9632
+ "internalType": "uint256",
9633
+ "name": "",
9634
+ "type": "uint256"
9635
+ }
9636
+ ],
9637
+ "stateMutability": "view",
9638
+ "type": "function"
9639
+ },
9640
+ {
9641
+ "inputs": [
9642
+ {
9643
+ "internalType": "address",
9644
+ "name": "",
9645
+ "type": "address"
9646
+ }
9647
+ ],
9648
+ "name": "rewardTokenBorrowState",
9649
+ "outputs": [
9650
+ {
9651
+ "internalType": "uint224",
9652
+ "name": "index",
9653
+ "type": "uint224"
9654
+ },
9655
+ {
9656
+ "internalType": "uint32",
9657
+ "name": "block",
9658
+ "type": "uint32"
9659
+ },
9660
+ {
9661
+ "internalType": "uint32",
9662
+ "name": "lastRewardingBlock",
9663
+ "type": "uint32"
9664
+ }
9665
+ ],
9666
+ "stateMutability": "view",
9667
+ "type": "function"
9668
+ },
9669
+ {
9670
+ "inputs": [
9671
+ {
9672
+ "internalType": "address",
9673
+ "name": "",
9674
+ "type": "address"
9675
+ }
9676
+ ],
9677
+ "name": "rewardTokenBorrowStateTimeBased",
9678
+ "outputs": [
9679
+ {
9680
+ "internalType": "uint224",
9681
+ "name": "index",
9682
+ "type": "uint224"
9683
+ },
9684
+ {
9685
+ "internalType": "uint256",
9686
+ "name": "timestamp",
9687
+ "type": "uint256"
9688
+ },
9689
+ {
9690
+ "internalType": "uint256",
9691
+ "name": "lastRewardingTimestamp",
9692
+ "type": "uint256"
9693
+ }
9694
+ ],
9695
+ "stateMutability": "view",
9696
+ "type": "function"
9697
+ },
9698
+ {
9699
+ "inputs": [
9700
+ {
9701
+ "internalType": "address",
9702
+ "name": "",
9703
+ "type": "address"
9704
+ },
9705
+ {
9706
+ "internalType": "address",
9707
+ "name": "",
9708
+ "type": "address"
9709
+ }
9710
+ ],
9711
+ "name": "rewardTokenBorrowerIndex",
9712
+ "outputs": [
9713
+ {
9714
+ "internalType": "uint256",
9715
+ "name": "",
9716
+ "type": "uint256"
9717
+ }
9718
+ ],
9719
+ "stateMutability": "view",
9720
+ "type": "function"
9721
+ },
9722
+ {
9723
+ "inputs": [
9724
+ {
9725
+ "internalType": "address",
9726
+ "name": "",
9727
+ "type": "address"
9728
+ }
9729
+ ],
9730
+ "name": "rewardTokenContributorSpeeds",
9731
+ "outputs": [
9732
+ {
9733
+ "internalType": "uint256",
9734
+ "name": "",
9735
+ "type": "uint256"
9736
+ }
9737
+ ],
9738
+ "stateMutability": "view",
9739
+ "type": "function"
9740
+ },
9741
+ {
9742
+ "inputs": [
9743
+ {
9744
+ "internalType": "address",
9745
+ "name": "",
9746
+ "type": "address"
9747
+ },
9748
+ {
9749
+ "internalType": "address",
9750
+ "name": "",
9751
+ "type": "address"
9752
+ }
9753
+ ],
9754
+ "name": "rewardTokenSupplierIndex",
9755
+ "outputs": [
9756
+ {
9757
+ "internalType": "uint256",
9758
+ "name": "",
9759
+ "type": "uint256"
9760
+ }
9761
+ ],
9762
+ "stateMutability": "view",
9763
+ "type": "function"
9764
+ },
9765
+ {
9766
+ "inputs": [
9767
+ {
9768
+ "internalType": "address",
9769
+ "name": "",
9770
+ "type": "address"
9771
+ }
9772
+ ],
9773
+ "name": "rewardTokenSupplySpeeds",
9774
+ "outputs": [
9775
+ {
9776
+ "internalType": "uint256",
9777
+ "name": "",
9778
+ "type": "uint256"
9779
+ }
9780
+ ],
9781
+ "stateMutability": "view",
9782
+ "type": "function"
9783
+ },
9784
+ {
9785
+ "inputs": [
9786
+ {
9787
+ "internalType": "address",
9788
+ "name": "",
9789
+ "type": "address"
9790
+ }
9791
+ ],
9792
+ "name": "rewardTokenSupplyState",
9793
+ "outputs": [
9794
+ {
9795
+ "internalType": "uint224",
9796
+ "name": "index",
9797
+ "type": "uint224"
9798
+ },
9799
+ {
9800
+ "internalType": "uint32",
9801
+ "name": "block",
9802
+ "type": "uint32"
9803
+ },
9804
+ {
9805
+ "internalType": "uint32",
9806
+ "name": "lastRewardingBlock",
9807
+ "type": "uint32"
9808
+ }
9809
+ ],
9810
+ "stateMutability": "view",
9811
+ "type": "function"
9812
+ },
9813
+ {
9814
+ "inputs": [
9815
+ {
9816
+ "internalType": "address",
9817
+ "name": "",
9818
+ "type": "address"
9819
+ }
9820
+ ],
9821
+ "name": "rewardTokenSupplyStateTimeBased",
9822
+ "outputs": [
9823
+ {
9824
+ "internalType": "uint224",
9825
+ "name": "index",
9826
+ "type": "uint224"
9827
+ },
9828
+ {
9829
+ "internalType": "uint256",
9830
+ "name": "timestamp",
9831
+ "type": "uint256"
9832
+ },
9833
+ {
9834
+ "internalType": "uint256",
9835
+ "name": "lastRewardingTimestamp",
9836
+ "type": "uint256"
9837
+ }
9838
+ ],
9839
+ "stateMutability": "view",
9840
+ "type": "function"
9841
+ },
9842
+ {
9843
+ "inputs": [
9844
+ {
9845
+ "internalType": "address",
9846
+ "name": "accessControlManager_",
9847
+ "type": "address"
9848
+ }
9849
+ ],
9850
+ "name": "setAccessControlManager",
9851
+ "outputs": [],
9852
+ "stateMutability": "nonpayable",
9853
+ "type": "function"
9854
+ },
9855
+ {
9856
+ "inputs": [
9857
+ {
9858
+ "internalType": "address",
9859
+ "name": "contributor",
9860
+ "type": "address"
9861
+ },
9862
+ {
9863
+ "internalType": "uint256",
9864
+ "name": "rewardTokenSpeed",
9865
+ "type": "uint256"
9866
+ }
9867
+ ],
9868
+ "name": "setContributorRewardTokenSpeed",
9869
+ "outputs": [],
9870
+ "stateMutability": "nonpayable",
9871
+ "type": "function"
9872
+ },
9873
+ {
9874
+ "inputs": [
9875
+ {
9876
+ "internalType": "contract VToken[]",
9877
+ "name": "vTokens",
9878
+ "type": "address[]"
9879
+ },
9880
+ {
9881
+ "internalType": "uint256[]",
9882
+ "name": "supplyLastRewardingBlockTimestamps",
9883
+ "type": "uint256[]"
9884
+ },
9885
+ {
9886
+ "internalType": "uint256[]",
9887
+ "name": "borrowLastRewardingBlockTimestamps",
9888
+ "type": "uint256[]"
9889
+ }
9890
+ ],
9891
+ "name": "setLastRewardingBlockTimestamps",
9892
+ "outputs": [],
9893
+ "stateMutability": "nonpayable",
9894
+ "type": "function"
9895
+ },
9896
+ {
9897
+ "inputs": [
9898
+ {
9899
+ "internalType": "contract VToken[]",
9900
+ "name": "vTokens",
9901
+ "type": "address[]"
9902
+ },
9903
+ {
9904
+ "internalType": "uint32[]",
9905
+ "name": "supplyLastRewardingBlocks",
9906
+ "type": "uint32[]"
9907
+ },
9908
+ {
9909
+ "internalType": "uint32[]",
9910
+ "name": "borrowLastRewardingBlocks",
9911
+ "type": "uint32[]"
9912
+ }
9913
+ ],
9914
+ "name": "setLastRewardingBlocks",
9915
+ "outputs": [],
9916
+ "stateMutability": "nonpayable",
9917
+ "type": "function"
9918
+ },
9919
+ {
9920
+ "inputs": [
9921
+ {
9922
+ "internalType": "uint256",
9923
+ "name": "limit",
9924
+ "type": "uint256"
9925
+ }
9926
+ ],
9927
+ "name": "setMaxLoopsLimit",
9928
+ "outputs": [],
9929
+ "stateMutability": "nonpayable",
9930
+ "type": "function"
9931
+ },
9932
+ {
9933
+ "inputs": [
9934
+ {
9935
+ "internalType": "contract VToken[]",
9936
+ "name": "vTokens",
9937
+ "type": "address[]"
9938
+ },
9939
+ {
9940
+ "internalType": "uint256[]",
9941
+ "name": "supplySpeeds",
9942
+ "type": "uint256[]"
9943
+ },
9944
+ {
9945
+ "internalType": "uint256[]",
9946
+ "name": "borrowSpeeds",
9947
+ "type": "uint256[]"
9948
+ }
9949
+ ],
9950
+ "name": "setRewardTokenSpeeds",
9951
+ "outputs": [],
9952
+ "stateMutability": "nonpayable",
9953
+ "type": "function"
9954
+ },
9955
+ {
9956
+ "inputs": [
9957
+ {
9958
+ "internalType": "address",
9959
+ "name": "newOwner",
9960
+ "type": "address"
9961
+ }
9962
+ ],
9963
+ "name": "transferOwnership",
9964
+ "outputs": [],
9965
+ "stateMutability": "nonpayable",
9966
+ "type": "function"
9967
+ },
9968
+ {
9969
+ "inputs": [
9970
+ {
9971
+ "internalType": "address",
9972
+ "name": "contributor",
9973
+ "type": "address"
9974
+ }
9975
+ ],
9976
+ "name": "updateContributorRewards",
9977
+ "outputs": [],
9978
+ "stateMutability": "nonpayable",
9979
+ "type": "function"
9980
+ },
9981
+ {
9982
+ "inputs": [
9983
+ {
9984
+ "internalType": "address",
9985
+ "name": "vToken",
9986
+ "type": "address"
9987
+ },
9988
+ {
9989
+ "components": [
9990
+ {
9991
+ "internalType": "uint256",
9992
+ "name": "mantissa",
9993
+ "type": "uint256"
9994
+ }
9995
+ ],
9996
+ "internalType": "struct ExponentialNoError.Exp",
9997
+ "name": "marketBorrowIndex",
9998
+ "type": "tuple"
9999
+ }
10000
+ ],
10001
+ "name": "updateRewardTokenBorrowIndex",
10002
+ "outputs": [],
10003
+ "stateMutability": "nonpayable",
10004
+ "type": "function"
10005
+ },
10006
+ {
10007
+ "inputs": [
10008
+ {
10009
+ "internalType": "address",
10010
+ "name": "vToken",
10011
+ "type": "address"
10012
+ }
10013
+ ],
10014
+ "name": "updateRewardTokenSupplyIndex",
10015
+ "outputs": [],
10016
+ "stateMutability": "nonpayable",
10017
+ "type": "function"
10018
+ },
10019
+ {
10020
+ "inputs": [
10021
+ {
10022
+ "internalType": "address",
10023
+ "name": "_logic",
10024
+ "type": "address"
10025
+ },
10026
+ {
10027
+ "internalType": "address",
10028
+ "name": "admin_",
10029
+ "type": "address"
10030
+ },
10031
+ {
10032
+ "internalType": "bytes",
10033
+ "name": "_data",
10034
+ "type": "bytes"
10035
+ }
10036
+ ],
10037
+ "stateMutability": "payable",
10038
+ "type": "constructor"
10039
+ }
10040
+ ]
10041
+ },
10042
+ "RewardsDistributor_Core_0_Proxy": {
10043
+ "address": "0x24139Dad3fe87Ee718ff9c2A8E0C4188578ba9aF",
10044
+ "abi": [
10045
+ {
10046
+ "inputs": [
10047
+ {
10048
+ "internalType": "address",
10049
+ "name": "_logic",
10050
+ "type": "address"
10051
+ },
10052
+ {
10053
+ "internalType": "address",
10054
+ "name": "admin_",
10055
+ "type": "address"
10056
+ },
10057
+ {
10058
+ "internalType": "bytes",
10059
+ "name": "_data",
10060
+ "type": "bytes"
10061
+ }
10062
+ ],
10063
+ "stateMutability": "payable",
10064
+ "type": "constructor"
10065
+ },
10066
+ {
10067
+ "anonymous": false,
10068
+ "inputs": [
10069
+ {
10070
+ "indexed": false,
10071
+ "internalType": "address",
10072
+ "name": "previousAdmin",
10073
+ "type": "address"
10074
+ },
10075
+ {
10076
+ "indexed": false,
10077
+ "internalType": "address",
10078
+ "name": "newAdmin",
10079
+ "type": "address"
10080
+ }
10081
+ ],
10082
+ "name": "AdminChanged",
10083
+ "type": "event"
10084
+ },
10085
+ {
10086
+ "anonymous": false,
10087
+ "inputs": [
10088
+ {
10089
+ "indexed": true,
10090
+ "internalType": "address",
10091
+ "name": "beacon",
10092
+ "type": "address"
10093
+ }
10094
+ ],
10095
+ "name": "BeaconUpgraded",
10096
+ "type": "event"
10097
+ },
10098
+ {
10099
+ "anonymous": false,
10100
+ "inputs": [
10101
+ {
10102
+ "indexed": true,
10103
+ "internalType": "address",
10104
+ "name": "implementation",
10105
+ "type": "address"
10106
+ }
10107
+ ],
10108
+ "name": "Upgraded",
10109
+ "type": "event"
10110
+ },
10111
+ {
10112
+ "stateMutability": "payable",
10113
+ "type": "fallback"
10114
+ },
10115
+ {
10116
+ "inputs": [],
10117
+ "name": "admin",
10118
+ "outputs": [
10119
+ {
10120
+ "internalType": "address",
10121
+ "name": "admin_",
10122
+ "type": "address"
10123
+ }
10124
+ ],
10125
+ "stateMutability": "nonpayable",
10126
+ "type": "function"
10127
+ },
10128
+ {
10129
+ "inputs": [],
10130
+ "name": "implementation",
10131
+ "outputs": [
10132
+ {
10133
+ "internalType": "address",
10134
+ "name": "implementation_",
10135
+ "type": "address"
10136
+ }
10137
+ ],
10138
+ "stateMutability": "nonpayable",
10139
+ "type": "function"
10140
+ },
10141
+ {
10142
+ "inputs": [
10143
+ {
10144
+ "internalType": "address",
10145
+ "name": "newImplementation",
10146
+ "type": "address"
10147
+ }
10148
+ ],
10149
+ "name": "upgradeTo",
10150
+ "outputs": [],
10151
+ "stateMutability": "nonpayable",
10152
+ "type": "function"
10153
+ },
10154
+ {
10155
+ "inputs": [
10156
+ {
10157
+ "internalType": "address",
10158
+ "name": "newImplementation",
10159
+ "type": "address"
10160
+ },
10161
+ {
10162
+ "internalType": "bytes",
10163
+ "name": "data",
10164
+ "type": "bytes"
10165
+ }
10166
+ ],
10167
+ "name": "upgradeToAndCall",
10168
+ "outputs": [],
10169
+ "stateMutability": "payable",
10170
+ "type": "function"
10171
+ },
10172
+ {
10173
+ "stateMutability": "payable",
10174
+ "type": "receive"
10175
+ }
10176
+ ]
10177
+ },
7609
10178
  "VTokenBeacon": {
7610
10179
  "address": "0x77C3435DD7D40fA0435e8cCAD4051f2904471ca3",
7611
10180
  "abi": [