@venusprotocol/venus-protocol 7.6.0-dev.3 → 7.6.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.
@@ -9066,6 +9066,508 @@
9066
9066
  }
9067
9067
  ]
9068
9068
  },
9069
+ "JumpRateModel_base0bps_slope10000bps_jump25000bps_kink8000bps": {
9070
+ "address": "0x9e8fbACBfbD811Fc561af3Af7df8e38dEd4c52F3",
9071
+ "abi": [
9072
+ {
9073
+ "inputs": [
9074
+ {
9075
+ "internalType": "uint256",
9076
+ "name": "baseRatePerYear",
9077
+ "type": "uint256"
9078
+ },
9079
+ {
9080
+ "internalType": "uint256",
9081
+ "name": "multiplierPerYear",
9082
+ "type": "uint256"
9083
+ },
9084
+ {
9085
+ "internalType": "uint256",
9086
+ "name": "jumpMultiplierPerYear",
9087
+ "type": "uint256"
9088
+ },
9089
+ {
9090
+ "internalType": "uint256",
9091
+ "name": "kink_",
9092
+ "type": "uint256"
9093
+ }
9094
+ ],
9095
+ "payable": false,
9096
+ "stateMutability": "nonpayable",
9097
+ "type": "constructor"
9098
+ },
9099
+ {
9100
+ "anonymous": false,
9101
+ "inputs": [
9102
+ {
9103
+ "indexed": false,
9104
+ "internalType": "uint256",
9105
+ "name": "baseRatePerBlock",
9106
+ "type": "uint256"
9107
+ },
9108
+ {
9109
+ "indexed": false,
9110
+ "internalType": "uint256",
9111
+ "name": "multiplierPerBlock",
9112
+ "type": "uint256"
9113
+ },
9114
+ {
9115
+ "indexed": false,
9116
+ "internalType": "uint256",
9117
+ "name": "jumpMultiplierPerBlock",
9118
+ "type": "uint256"
9119
+ },
9120
+ {
9121
+ "indexed": false,
9122
+ "internalType": "uint256",
9123
+ "name": "kink",
9124
+ "type": "uint256"
9125
+ }
9126
+ ],
9127
+ "name": "NewInterestParams",
9128
+ "type": "event"
9129
+ },
9130
+ {
9131
+ "constant": true,
9132
+ "inputs": [],
9133
+ "name": "baseRatePerBlock",
9134
+ "outputs": [
9135
+ {
9136
+ "internalType": "uint256",
9137
+ "name": "",
9138
+ "type": "uint256"
9139
+ }
9140
+ ],
9141
+ "payable": false,
9142
+ "stateMutability": "view",
9143
+ "type": "function"
9144
+ },
9145
+ {
9146
+ "constant": true,
9147
+ "inputs": [],
9148
+ "name": "blocksPerYear",
9149
+ "outputs": [
9150
+ {
9151
+ "internalType": "uint256",
9152
+ "name": "",
9153
+ "type": "uint256"
9154
+ }
9155
+ ],
9156
+ "payable": false,
9157
+ "stateMutability": "view",
9158
+ "type": "function"
9159
+ },
9160
+ {
9161
+ "constant": true,
9162
+ "inputs": [
9163
+ {
9164
+ "internalType": "uint256",
9165
+ "name": "cash",
9166
+ "type": "uint256"
9167
+ },
9168
+ {
9169
+ "internalType": "uint256",
9170
+ "name": "borrows",
9171
+ "type": "uint256"
9172
+ },
9173
+ {
9174
+ "internalType": "uint256",
9175
+ "name": "reserves",
9176
+ "type": "uint256"
9177
+ }
9178
+ ],
9179
+ "name": "getBorrowRate",
9180
+ "outputs": [
9181
+ {
9182
+ "internalType": "uint256",
9183
+ "name": "",
9184
+ "type": "uint256"
9185
+ }
9186
+ ],
9187
+ "payable": false,
9188
+ "stateMutability": "view",
9189
+ "type": "function"
9190
+ },
9191
+ {
9192
+ "constant": true,
9193
+ "inputs": [
9194
+ {
9195
+ "internalType": "uint256",
9196
+ "name": "cash",
9197
+ "type": "uint256"
9198
+ },
9199
+ {
9200
+ "internalType": "uint256",
9201
+ "name": "borrows",
9202
+ "type": "uint256"
9203
+ },
9204
+ {
9205
+ "internalType": "uint256",
9206
+ "name": "reserves",
9207
+ "type": "uint256"
9208
+ },
9209
+ {
9210
+ "internalType": "uint256",
9211
+ "name": "reserveFactorMantissa",
9212
+ "type": "uint256"
9213
+ }
9214
+ ],
9215
+ "name": "getSupplyRate",
9216
+ "outputs": [
9217
+ {
9218
+ "internalType": "uint256",
9219
+ "name": "",
9220
+ "type": "uint256"
9221
+ }
9222
+ ],
9223
+ "payable": false,
9224
+ "stateMutability": "view",
9225
+ "type": "function"
9226
+ },
9227
+ {
9228
+ "constant": true,
9229
+ "inputs": [],
9230
+ "name": "isInterestRateModel",
9231
+ "outputs": [
9232
+ {
9233
+ "internalType": "bool",
9234
+ "name": "",
9235
+ "type": "bool"
9236
+ }
9237
+ ],
9238
+ "payable": false,
9239
+ "stateMutability": "view",
9240
+ "type": "function"
9241
+ },
9242
+ {
9243
+ "constant": true,
9244
+ "inputs": [],
9245
+ "name": "jumpMultiplierPerBlock",
9246
+ "outputs": [
9247
+ {
9248
+ "internalType": "uint256",
9249
+ "name": "",
9250
+ "type": "uint256"
9251
+ }
9252
+ ],
9253
+ "payable": false,
9254
+ "stateMutability": "view",
9255
+ "type": "function"
9256
+ },
9257
+ {
9258
+ "constant": true,
9259
+ "inputs": [],
9260
+ "name": "kink",
9261
+ "outputs": [
9262
+ {
9263
+ "internalType": "uint256",
9264
+ "name": "",
9265
+ "type": "uint256"
9266
+ }
9267
+ ],
9268
+ "payable": false,
9269
+ "stateMutability": "view",
9270
+ "type": "function"
9271
+ },
9272
+ {
9273
+ "constant": true,
9274
+ "inputs": [],
9275
+ "name": "multiplierPerBlock",
9276
+ "outputs": [
9277
+ {
9278
+ "internalType": "uint256",
9279
+ "name": "",
9280
+ "type": "uint256"
9281
+ }
9282
+ ],
9283
+ "payable": false,
9284
+ "stateMutability": "view",
9285
+ "type": "function"
9286
+ },
9287
+ {
9288
+ "constant": true,
9289
+ "inputs": [
9290
+ {
9291
+ "internalType": "uint256",
9292
+ "name": "cash",
9293
+ "type": "uint256"
9294
+ },
9295
+ {
9296
+ "internalType": "uint256",
9297
+ "name": "borrows",
9298
+ "type": "uint256"
9299
+ },
9300
+ {
9301
+ "internalType": "uint256",
9302
+ "name": "reserves",
9303
+ "type": "uint256"
9304
+ }
9305
+ ],
9306
+ "name": "utilizationRate",
9307
+ "outputs": [
9308
+ {
9309
+ "internalType": "uint256",
9310
+ "name": "",
9311
+ "type": "uint256"
9312
+ }
9313
+ ],
9314
+ "payable": false,
9315
+ "stateMutability": "pure",
9316
+ "type": "function"
9317
+ }
9318
+ ]
9319
+ },
9320
+ "JumpRateModel_base0bps_slope10000bps_jump50000bps_kink8000bps": {
9321
+ "address": "0x958F4C84d3ad523Fa9936Dc465A123C7AD43D69B",
9322
+ "abi": [
9323
+ {
9324
+ "inputs": [
9325
+ {
9326
+ "internalType": "uint256",
9327
+ "name": "baseRatePerYear",
9328
+ "type": "uint256"
9329
+ },
9330
+ {
9331
+ "internalType": "uint256",
9332
+ "name": "multiplierPerYear",
9333
+ "type": "uint256"
9334
+ },
9335
+ {
9336
+ "internalType": "uint256",
9337
+ "name": "jumpMultiplierPerYear",
9338
+ "type": "uint256"
9339
+ },
9340
+ {
9341
+ "internalType": "uint256",
9342
+ "name": "kink_",
9343
+ "type": "uint256"
9344
+ }
9345
+ ],
9346
+ "payable": false,
9347
+ "stateMutability": "nonpayable",
9348
+ "type": "constructor"
9349
+ },
9350
+ {
9351
+ "anonymous": false,
9352
+ "inputs": [
9353
+ {
9354
+ "indexed": false,
9355
+ "internalType": "uint256",
9356
+ "name": "baseRatePerBlock",
9357
+ "type": "uint256"
9358
+ },
9359
+ {
9360
+ "indexed": false,
9361
+ "internalType": "uint256",
9362
+ "name": "multiplierPerBlock",
9363
+ "type": "uint256"
9364
+ },
9365
+ {
9366
+ "indexed": false,
9367
+ "internalType": "uint256",
9368
+ "name": "jumpMultiplierPerBlock",
9369
+ "type": "uint256"
9370
+ },
9371
+ {
9372
+ "indexed": false,
9373
+ "internalType": "uint256",
9374
+ "name": "kink",
9375
+ "type": "uint256"
9376
+ }
9377
+ ],
9378
+ "name": "NewInterestParams",
9379
+ "type": "event"
9380
+ },
9381
+ {
9382
+ "constant": true,
9383
+ "inputs": [],
9384
+ "name": "baseRatePerBlock",
9385
+ "outputs": [
9386
+ {
9387
+ "internalType": "uint256",
9388
+ "name": "",
9389
+ "type": "uint256"
9390
+ }
9391
+ ],
9392
+ "payable": false,
9393
+ "stateMutability": "view",
9394
+ "type": "function"
9395
+ },
9396
+ {
9397
+ "constant": true,
9398
+ "inputs": [],
9399
+ "name": "blocksPerYear",
9400
+ "outputs": [
9401
+ {
9402
+ "internalType": "uint256",
9403
+ "name": "",
9404
+ "type": "uint256"
9405
+ }
9406
+ ],
9407
+ "payable": false,
9408
+ "stateMutability": "view",
9409
+ "type": "function"
9410
+ },
9411
+ {
9412
+ "constant": true,
9413
+ "inputs": [
9414
+ {
9415
+ "internalType": "uint256",
9416
+ "name": "cash",
9417
+ "type": "uint256"
9418
+ },
9419
+ {
9420
+ "internalType": "uint256",
9421
+ "name": "borrows",
9422
+ "type": "uint256"
9423
+ },
9424
+ {
9425
+ "internalType": "uint256",
9426
+ "name": "reserves",
9427
+ "type": "uint256"
9428
+ }
9429
+ ],
9430
+ "name": "getBorrowRate",
9431
+ "outputs": [
9432
+ {
9433
+ "internalType": "uint256",
9434
+ "name": "",
9435
+ "type": "uint256"
9436
+ }
9437
+ ],
9438
+ "payable": false,
9439
+ "stateMutability": "view",
9440
+ "type": "function"
9441
+ },
9442
+ {
9443
+ "constant": true,
9444
+ "inputs": [
9445
+ {
9446
+ "internalType": "uint256",
9447
+ "name": "cash",
9448
+ "type": "uint256"
9449
+ },
9450
+ {
9451
+ "internalType": "uint256",
9452
+ "name": "borrows",
9453
+ "type": "uint256"
9454
+ },
9455
+ {
9456
+ "internalType": "uint256",
9457
+ "name": "reserves",
9458
+ "type": "uint256"
9459
+ },
9460
+ {
9461
+ "internalType": "uint256",
9462
+ "name": "reserveFactorMantissa",
9463
+ "type": "uint256"
9464
+ }
9465
+ ],
9466
+ "name": "getSupplyRate",
9467
+ "outputs": [
9468
+ {
9469
+ "internalType": "uint256",
9470
+ "name": "",
9471
+ "type": "uint256"
9472
+ }
9473
+ ],
9474
+ "payable": false,
9475
+ "stateMutability": "view",
9476
+ "type": "function"
9477
+ },
9478
+ {
9479
+ "constant": true,
9480
+ "inputs": [],
9481
+ "name": "isInterestRateModel",
9482
+ "outputs": [
9483
+ {
9484
+ "internalType": "bool",
9485
+ "name": "",
9486
+ "type": "bool"
9487
+ }
9488
+ ],
9489
+ "payable": false,
9490
+ "stateMutability": "view",
9491
+ "type": "function"
9492
+ },
9493
+ {
9494
+ "constant": true,
9495
+ "inputs": [],
9496
+ "name": "jumpMultiplierPerBlock",
9497
+ "outputs": [
9498
+ {
9499
+ "internalType": "uint256",
9500
+ "name": "",
9501
+ "type": "uint256"
9502
+ }
9503
+ ],
9504
+ "payable": false,
9505
+ "stateMutability": "view",
9506
+ "type": "function"
9507
+ },
9508
+ {
9509
+ "constant": true,
9510
+ "inputs": [],
9511
+ "name": "kink",
9512
+ "outputs": [
9513
+ {
9514
+ "internalType": "uint256",
9515
+ "name": "",
9516
+ "type": "uint256"
9517
+ }
9518
+ ],
9519
+ "payable": false,
9520
+ "stateMutability": "view",
9521
+ "type": "function"
9522
+ },
9523
+ {
9524
+ "constant": true,
9525
+ "inputs": [],
9526
+ "name": "multiplierPerBlock",
9527
+ "outputs": [
9528
+ {
9529
+ "internalType": "uint256",
9530
+ "name": "",
9531
+ "type": "uint256"
9532
+ }
9533
+ ],
9534
+ "payable": false,
9535
+ "stateMutability": "view",
9536
+ "type": "function"
9537
+ },
9538
+ {
9539
+ "constant": true,
9540
+ "inputs": [
9541
+ {
9542
+ "internalType": "uint256",
9543
+ "name": "cash",
9544
+ "type": "uint256"
9545
+ },
9546
+ {
9547
+ "internalType": "uint256",
9548
+ "name": "borrows",
9549
+ "type": "uint256"
9550
+ },
9551
+ {
9552
+ "internalType": "uint256",
9553
+ "name": "reserves",
9554
+ "type": "uint256"
9555
+ }
9556
+ ],
9557
+ "name": "utilizationRate",
9558
+ "outputs": [
9559
+ {
9560
+ "internalType": "uint256",
9561
+ "name": "",
9562
+ "type": "uint256"
9563
+ }
9564
+ ],
9565
+ "payable": false,
9566
+ "stateMutability": "pure",
9567
+ "type": "function"
9568
+ }
9569
+ ]
9570
+ },
9069
9571
  "JumpRateModel_base0bps_slope687bps_jump25000bps_kink8000bps": {
9070
9572
  "address": "0xB105F9B511836cc7dF9F3dD0Ec4873766b5b6660",
9071
9573
  "abi": [
@@ -25,6 +25,8 @@
25
25
  "FIL_Implementation": "0xba5fe23f8a3a24bed3236f05f2fcf35fd0bf0b5c",
26
26
  "FIL_Proxy": "0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153",
27
27
  "InterestRateModelVBNB": "0xF558Be24F2CACb65a4BB41A155631C83B15388F1",
28
+ "JumpRateModel_base0bps_slope10000bps_jump25000bps_kink8000bps": "0x9e8fbACBfbD811Fc561af3Af7df8e38dEd4c52F3",
29
+ "JumpRateModel_base0bps_slope10000bps_jump50000bps_kink8000bps": "0x958F4C84d3ad523Fa9936Dc465A123C7AD43D69B",
28
30
  "JumpRateModel_base0bps_slope687bps_jump25000bps_kink8000bps": "0xB105F9B511836cc7dF9F3dD0Ec4873766b5b6660",
29
31
  "LINK": "0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD",
30
32
  "LTC": "0x4338665CBB7B2485A8855A139b75D5e34AB0DB94",