@venusprotocol/isolated-pools 3.7.0-dev.3 → 3.7.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.
@@ -3937,6 +3937,366 @@
3937
3937
  }
3938
3938
  ]
3939
3939
  },
3940
+ "JumpRateModelV2_base0bps_slope450bps_jump20000bps_kink4500bps": {
3941
+ "address": "0xDaFA3B350288cEb448e0E03077D932f8EF561391",
3942
+ "abi": [
3943
+ {
3944
+ "inputs": [
3945
+ {
3946
+ "internalType": "uint256",
3947
+ "name": "baseRatePerYear_",
3948
+ "type": "uint256"
3949
+ },
3950
+ {
3951
+ "internalType": "uint256",
3952
+ "name": "multiplierPerYear_",
3953
+ "type": "uint256"
3954
+ },
3955
+ {
3956
+ "internalType": "uint256",
3957
+ "name": "jumpMultiplierPerYear_",
3958
+ "type": "uint256"
3959
+ },
3960
+ {
3961
+ "internalType": "uint256",
3962
+ "name": "kink_",
3963
+ "type": "uint256"
3964
+ },
3965
+ {
3966
+ "internalType": "contract IAccessControlManagerV8",
3967
+ "name": "accessControlManager_",
3968
+ "type": "address"
3969
+ },
3970
+ {
3971
+ "internalType": "bool",
3972
+ "name": "timeBased_",
3973
+ "type": "bool"
3974
+ },
3975
+ {
3976
+ "internalType": "uint256",
3977
+ "name": "blocksPerYear_",
3978
+ "type": "uint256"
3979
+ }
3980
+ ],
3981
+ "stateMutability": "nonpayable",
3982
+ "type": "constructor"
3983
+ },
3984
+ {
3985
+ "inputs": [],
3986
+ "name": "InvalidBlocksPerYear",
3987
+ "type": "error"
3988
+ },
3989
+ {
3990
+ "inputs": [],
3991
+ "name": "InvalidTimeBasedConfiguration",
3992
+ "type": "error"
3993
+ },
3994
+ {
3995
+ "inputs": [
3996
+ {
3997
+ "internalType": "address",
3998
+ "name": "sender",
3999
+ "type": "address"
4000
+ },
4001
+ {
4002
+ "internalType": "address",
4003
+ "name": "calledContract",
4004
+ "type": "address"
4005
+ },
4006
+ {
4007
+ "internalType": "string",
4008
+ "name": "methodSignature",
4009
+ "type": "string"
4010
+ }
4011
+ ],
4012
+ "name": "Unauthorized",
4013
+ "type": "error"
4014
+ },
4015
+ {
4016
+ "anonymous": false,
4017
+ "inputs": [
4018
+ {
4019
+ "indexed": false,
4020
+ "internalType": "uint256",
4021
+ "name": "baseRatePerBlockOrTimestamp",
4022
+ "type": "uint256"
4023
+ },
4024
+ {
4025
+ "indexed": false,
4026
+ "internalType": "uint256",
4027
+ "name": "multiplierPerBlockOrTimestamp",
4028
+ "type": "uint256"
4029
+ },
4030
+ {
4031
+ "indexed": false,
4032
+ "internalType": "uint256",
4033
+ "name": "jumpMultiplierPerBlockOrTimestamp",
4034
+ "type": "uint256"
4035
+ },
4036
+ {
4037
+ "indexed": false,
4038
+ "internalType": "uint256",
4039
+ "name": "kink",
4040
+ "type": "uint256"
4041
+ }
4042
+ ],
4043
+ "name": "NewInterestParams",
4044
+ "type": "event"
4045
+ },
4046
+ {
4047
+ "inputs": [],
4048
+ "name": "accessControlManager",
4049
+ "outputs": [
4050
+ {
4051
+ "internalType": "contract IAccessControlManagerV8",
4052
+ "name": "",
4053
+ "type": "address"
4054
+ }
4055
+ ],
4056
+ "stateMutability": "view",
4057
+ "type": "function"
4058
+ },
4059
+ {
4060
+ "inputs": [],
4061
+ "name": "baseRatePerBlock",
4062
+ "outputs": [
4063
+ {
4064
+ "internalType": "uint256",
4065
+ "name": "",
4066
+ "type": "uint256"
4067
+ }
4068
+ ],
4069
+ "stateMutability": "view",
4070
+ "type": "function"
4071
+ },
4072
+ {
4073
+ "inputs": [],
4074
+ "name": "blocksOrSecondsPerYear",
4075
+ "outputs": [
4076
+ {
4077
+ "internalType": "uint256",
4078
+ "name": "",
4079
+ "type": "uint256"
4080
+ }
4081
+ ],
4082
+ "stateMutability": "view",
4083
+ "type": "function"
4084
+ },
4085
+ {
4086
+ "inputs": [],
4087
+ "name": "getBlockNumberOrTimestamp",
4088
+ "outputs": [
4089
+ {
4090
+ "internalType": "uint256",
4091
+ "name": "",
4092
+ "type": "uint256"
4093
+ }
4094
+ ],
4095
+ "stateMutability": "view",
4096
+ "type": "function"
4097
+ },
4098
+ {
4099
+ "inputs": [
4100
+ {
4101
+ "internalType": "uint256",
4102
+ "name": "cash",
4103
+ "type": "uint256"
4104
+ },
4105
+ {
4106
+ "internalType": "uint256",
4107
+ "name": "borrows",
4108
+ "type": "uint256"
4109
+ },
4110
+ {
4111
+ "internalType": "uint256",
4112
+ "name": "reserves",
4113
+ "type": "uint256"
4114
+ },
4115
+ {
4116
+ "internalType": "uint256",
4117
+ "name": "badDebt",
4118
+ "type": "uint256"
4119
+ }
4120
+ ],
4121
+ "name": "getBorrowRate",
4122
+ "outputs": [
4123
+ {
4124
+ "internalType": "uint256",
4125
+ "name": "",
4126
+ "type": "uint256"
4127
+ }
4128
+ ],
4129
+ "stateMutability": "view",
4130
+ "type": "function"
4131
+ },
4132
+ {
4133
+ "inputs": [
4134
+ {
4135
+ "internalType": "uint256",
4136
+ "name": "cash",
4137
+ "type": "uint256"
4138
+ },
4139
+ {
4140
+ "internalType": "uint256",
4141
+ "name": "borrows",
4142
+ "type": "uint256"
4143
+ },
4144
+ {
4145
+ "internalType": "uint256",
4146
+ "name": "reserves",
4147
+ "type": "uint256"
4148
+ },
4149
+ {
4150
+ "internalType": "uint256",
4151
+ "name": "reserveFactorMantissa",
4152
+ "type": "uint256"
4153
+ },
4154
+ {
4155
+ "internalType": "uint256",
4156
+ "name": "badDebt",
4157
+ "type": "uint256"
4158
+ }
4159
+ ],
4160
+ "name": "getSupplyRate",
4161
+ "outputs": [
4162
+ {
4163
+ "internalType": "uint256",
4164
+ "name": "",
4165
+ "type": "uint256"
4166
+ }
4167
+ ],
4168
+ "stateMutability": "view",
4169
+ "type": "function"
4170
+ },
4171
+ {
4172
+ "inputs": [],
4173
+ "name": "isInterestRateModel",
4174
+ "outputs": [
4175
+ {
4176
+ "internalType": "bool",
4177
+ "name": "",
4178
+ "type": "bool"
4179
+ }
4180
+ ],
4181
+ "stateMutability": "pure",
4182
+ "type": "function"
4183
+ },
4184
+ {
4185
+ "inputs": [],
4186
+ "name": "isTimeBased",
4187
+ "outputs": [
4188
+ {
4189
+ "internalType": "bool",
4190
+ "name": "",
4191
+ "type": "bool"
4192
+ }
4193
+ ],
4194
+ "stateMutability": "view",
4195
+ "type": "function"
4196
+ },
4197
+ {
4198
+ "inputs": [],
4199
+ "name": "jumpMultiplierPerBlock",
4200
+ "outputs": [
4201
+ {
4202
+ "internalType": "uint256",
4203
+ "name": "",
4204
+ "type": "uint256"
4205
+ }
4206
+ ],
4207
+ "stateMutability": "view",
4208
+ "type": "function"
4209
+ },
4210
+ {
4211
+ "inputs": [],
4212
+ "name": "kink",
4213
+ "outputs": [
4214
+ {
4215
+ "internalType": "uint256",
4216
+ "name": "",
4217
+ "type": "uint256"
4218
+ }
4219
+ ],
4220
+ "stateMutability": "view",
4221
+ "type": "function"
4222
+ },
4223
+ {
4224
+ "inputs": [],
4225
+ "name": "multiplierPerBlock",
4226
+ "outputs": [
4227
+ {
4228
+ "internalType": "uint256",
4229
+ "name": "",
4230
+ "type": "uint256"
4231
+ }
4232
+ ],
4233
+ "stateMutability": "view",
4234
+ "type": "function"
4235
+ },
4236
+ {
4237
+ "inputs": [
4238
+ {
4239
+ "internalType": "uint256",
4240
+ "name": "baseRatePerYear",
4241
+ "type": "uint256"
4242
+ },
4243
+ {
4244
+ "internalType": "uint256",
4245
+ "name": "multiplierPerYear",
4246
+ "type": "uint256"
4247
+ },
4248
+ {
4249
+ "internalType": "uint256",
4250
+ "name": "jumpMultiplierPerYear",
4251
+ "type": "uint256"
4252
+ },
4253
+ {
4254
+ "internalType": "uint256",
4255
+ "name": "kink_",
4256
+ "type": "uint256"
4257
+ }
4258
+ ],
4259
+ "name": "updateJumpRateModel",
4260
+ "outputs": [],
4261
+ "stateMutability": "nonpayable",
4262
+ "type": "function"
4263
+ },
4264
+ {
4265
+ "inputs": [
4266
+ {
4267
+ "internalType": "uint256",
4268
+ "name": "cash",
4269
+ "type": "uint256"
4270
+ },
4271
+ {
4272
+ "internalType": "uint256",
4273
+ "name": "borrows",
4274
+ "type": "uint256"
4275
+ },
4276
+ {
4277
+ "internalType": "uint256",
4278
+ "name": "reserves",
4279
+ "type": "uint256"
4280
+ },
4281
+ {
4282
+ "internalType": "uint256",
4283
+ "name": "badDebt",
4284
+ "type": "uint256"
4285
+ }
4286
+ ],
4287
+ "name": "utilizationRate",
4288
+ "outputs": [
4289
+ {
4290
+ "internalType": "uint256",
4291
+ "name": "",
4292
+ "type": "uint256"
4293
+ }
4294
+ ],
4295
+ "stateMutability": "pure",
4296
+ "type": "function"
4297
+ }
4298
+ ]
4299
+ },
3940
4300
  "JumpRateModelV2_base0bps_slope450bps_jump8000bps_kink8000bps": {
3941
4301
  "address": "0xFCaBF5b76968e010b8BC310486bE418b9d16fEb2",
3942
4302
  "abi": [
@@ -30064,6 +30424,80 @@
30064
30424
  }
30065
30425
  ]
30066
30426
  },
30427
+ "VToken_vpufETH_LiquidStakedETH": {
30428
+ "address": "0xE0ee5dDeBFe0abe0a4Af50299D68b74Cec31668e",
30429
+ "abi": [
30430
+ {
30431
+ "inputs": [
30432
+ {
30433
+ "internalType": "address",
30434
+ "name": "beacon",
30435
+ "type": "address"
30436
+ },
30437
+ {
30438
+ "internalType": "bytes",
30439
+ "name": "data",
30440
+ "type": "bytes"
30441
+ }
30442
+ ],
30443
+ "stateMutability": "payable",
30444
+ "type": "constructor"
30445
+ },
30446
+ {
30447
+ "anonymous": false,
30448
+ "inputs": [
30449
+ {
30450
+ "indexed": false,
30451
+ "internalType": "address",
30452
+ "name": "previousAdmin",
30453
+ "type": "address"
30454
+ },
30455
+ {
30456
+ "indexed": false,
30457
+ "internalType": "address",
30458
+ "name": "newAdmin",
30459
+ "type": "address"
30460
+ }
30461
+ ],
30462
+ "name": "AdminChanged",
30463
+ "type": "event"
30464
+ },
30465
+ {
30466
+ "anonymous": false,
30467
+ "inputs": [
30468
+ {
30469
+ "indexed": true,
30470
+ "internalType": "address",
30471
+ "name": "beacon",
30472
+ "type": "address"
30473
+ }
30474
+ ],
30475
+ "name": "BeaconUpgraded",
30476
+ "type": "event"
30477
+ },
30478
+ {
30479
+ "anonymous": false,
30480
+ "inputs": [
30481
+ {
30482
+ "indexed": true,
30483
+ "internalType": "address",
30484
+ "name": "implementation",
30485
+ "type": "address"
30486
+ }
30487
+ ],
30488
+ "name": "Upgraded",
30489
+ "type": "event"
30490
+ },
30491
+ {
30492
+ "stateMutability": "payable",
30493
+ "type": "fallback"
30494
+ },
30495
+ {
30496
+ "stateMutability": "payable",
30497
+ "type": "receive"
30498
+ }
30499
+ ]
30500
+ },
30067
30501
  "VToken_vrsETH_LiquidStakedETH": {
30068
30502
  "address": "0xDB6C345f864883a8F4cae87852Ac342589E76D1B",
30069
30503
  "abi": [
@@ -12,6 +12,7 @@
12
12
  "JumpRateModelV2_base0bps_slope1500bps_jump25000bps_kink8000bps": "0x244dBE6d11Ae9AadBaD552E6BD8901B680028E31",
13
13
  "JumpRateModelV2_base0bps_slope300bps_jump8000bps_kink9000bps": "0xe1747F8D64C297DBB482c4FD8fd11EA73F7Dc85a",
14
14
  "JumpRateModelV2_base0bps_slope350bps_jump8000bps_kink8000bps": "0x01E002C218D70dD374566cc40D9fCA1429AB7E65",
15
+ "JumpRateModelV2_base0bps_slope450bps_jump20000bps_kink4500bps": "0xDaFA3B350288cEb448e0E03077D932f8EF561391",
15
16
  "JumpRateModelV2_base0bps_slope450bps_jump8000bps_kink8000bps": "0xFCaBF5b76968e010b8BC310486bE418b9d16fEb2",
16
17
  "JumpRateModelV2_base0bps_slope450bps_jump8000bps_kink9000bps": "0x834078D691d431aAdC80197f7a61239F9F89547b",
17
18
  "JumpRateModelV2_base0bps_slope500bps_jump8000bps_kink7500bps": "0x07a912CD58CbB5736d015608F424c43B2CAd0B5e",
@@ -71,6 +72,7 @@
71
72
  "VToken_vcrvUSD_Curve": "0x2d499800239C4CD3012473Cb1EAE33562F0A6933",
72
73
  "VToken_veBTC": "0x325cEB02fe1C2fF816A83a5770eA0E88e2faEcF2",
73
74
  "VToken_vezETH_LiquidStakedETH": "0xA854D35664c658280fFf27B6eDC6C4195c3229B3",
75
+ "VToken_vpufETH_LiquidStakedETH": "0xE0ee5dDeBFe0abe0a4Af50299D68b74Cec31668e",
74
76
  "VToken_vrsETH_LiquidStakedETH": "0xDB6C345f864883a8F4cae87852Ac342589E76D1B",
75
77
  "VToken_vsFRAX_Core": "0x17142a05fe678e9584FA1d88EfAC1bF181bF7ABe",
76
78
  "VToken_vsfrxETH_LiquidStakedETH": "0xF9E9Fe17C00a8B96a8ac20c4E344C8688D7b947E",