@venusprotocol/isolated-pools 3.8.0-dev.4 → 3.8.0

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.
Files changed (26) hide show
  1. package/deployments/zksyncmainnet/JumpRateModelV2_base0bps_slope687bps_jump25000bps_kink8000bps.json +668 -0
  2. package/deployments/zksyncmainnet/VToken_vwUSDM_Core.json +317 -0
  3. package/deployments/zksyncmainnet/solcInputs/c84b0f085ad65b3aa38a5f0d3790c387.json +448 -0
  4. package/deployments/zksyncmainnet.json +434 -0
  5. package/deployments/zksyncmainnet_addresses.json +3 -1
  6. package/deployments/zksyncsepolia/JumpRateModelV2_base0bps_slope687bps_jump25000bps_kink8000bps.json +668 -0
  7. package/deployments/zksyncsepolia/MockUSDM.json +519 -0
  8. package/deployments/zksyncsepolia/MockwUSDM.json +576 -0
  9. package/deployments/zksyncsepolia/VToken_vwUSDM_Core.json +317 -0
  10. package/deployments/zksyncsepolia/solcInputs/c84b0f085ad65b3aa38a5f0d3790c387.json +448 -0
  11. package/deployments/zksyncsepolia.json +1160 -89
  12. package/deployments/zksyncsepolia_addresses.json +5 -1
  13. package/dist/deploy/001-deploy-mock-tokens.js +3 -2
  14. package/dist/deploy/009-deploy-vtokens.js +10 -1
  15. package/dist/deployments/zksyncmainnet.json +434 -0
  16. package/dist/deployments/zksyncsepolia.json +1160 -89
  17. package/dist/hardhat.config.js +7 -0
  18. package/dist/helpers/deploymentConfig.d.ts +1 -0
  19. package/dist/helpers/deploymentConfig.js +71 -6
  20. package/dist/helpers/deploymentUtils.d.ts +2 -0
  21. package/dist/helpers/deploymentUtils.js +6 -1
  22. package/dist/typechain/factories/PoolRegistryInterface__factory.d.ts +2 -16
  23. package/dist/typechain/factories/PoolRegistryInterface__factory.js +0 -119
  24. package/package.json +1 -1
  25. package/typechain/PoolRegistryInterface.d.ts +0 -178
  26. package/typechain/factories/PoolRegistryInterface__factory.ts +0 -119
@@ -0,0 +1,668 @@
1
+ {
2
+ "address": "0xCD6f2137182affDA1883135C3351D556721B81dE",
3
+ "abi": [
4
+ {
5
+ "inputs": [
6
+ {
7
+ "internalType": "uint256",
8
+ "name": "baseRatePerYear_",
9
+ "type": "uint256"
10
+ },
11
+ {
12
+ "internalType": "uint256",
13
+ "name": "multiplierPerYear_",
14
+ "type": "uint256"
15
+ },
16
+ {
17
+ "internalType": "uint256",
18
+ "name": "jumpMultiplierPerYear_",
19
+ "type": "uint256"
20
+ },
21
+ {
22
+ "internalType": "uint256",
23
+ "name": "kink_",
24
+ "type": "uint256"
25
+ },
26
+ {
27
+ "internalType": "contract IAccessControlManagerV8",
28
+ "name": "accessControlManager_",
29
+ "type": "address"
30
+ },
31
+ {
32
+ "internalType": "bool",
33
+ "name": "timeBased_",
34
+ "type": "bool"
35
+ },
36
+ {
37
+ "internalType": "uint256",
38
+ "name": "blocksPerYear_",
39
+ "type": "uint256"
40
+ }
41
+ ],
42
+ "stateMutability": "nonpayable",
43
+ "type": "constructor"
44
+ },
45
+ {
46
+ "inputs": [],
47
+ "name": "InvalidBlocksPerYear",
48
+ "type": "error"
49
+ },
50
+ {
51
+ "inputs": [],
52
+ "name": "InvalidTimeBasedConfiguration",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "address",
59
+ "name": "sender",
60
+ "type": "address"
61
+ },
62
+ {
63
+ "internalType": "address",
64
+ "name": "calledContract",
65
+ "type": "address"
66
+ },
67
+ {
68
+ "internalType": "string",
69
+ "name": "methodSignature",
70
+ "type": "string"
71
+ }
72
+ ],
73
+ "name": "Unauthorized",
74
+ "type": "error"
75
+ },
76
+ {
77
+ "anonymous": false,
78
+ "inputs": [
79
+ {
80
+ "indexed": false,
81
+ "internalType": "uint256",
82
+ "name": "baseRatePerBlockOrTimestamp",
83
+ "type": "uint256"
84
+ },
85
+ {
86
+ "indexed": false,
87
+ "internalType": "uint256",
88
+ "name": "multiplierPerBlockOrTimestamp",
89
+ "type": "uint256"
90
+ },
91
+ {
92
+ "indexed": false,
93
+ "internalType": "uint256",
94
+ "name": "jumpMultiplierPerBlockOrTimestamp",
95
+ "type": "uint256"
96
+ },
97
+ {
98
+ "indexed": false,
99
+ "internalType": "uint256",
100
+ "name": "kink",
101
+ "type": "uint256"
102
+ }
103
+ ],
104
+ "name": "NewInterestParams",
105
+ "type": "event"
106
+ },
107
+ {
108
+ "inputs": [],
109
+ "name": "accessControlManager",
110
+ "outputs": [
111
+ {
112
+ "internalType": "contract IAccessControlManagerV8",
113
+ "name": "",
114
+ "type": "address"
115
+ }
116
+ ],
117
+ "stateMutability": "view",
118
+ "type": "function"
119
+ },
120
+ {
121
+ "inputs": [],
122
+ "name": "baseRatePerBlock",
123
+ "outputs": [
124
+ {
125
+ "internalType": "uint256",
126
+ "name": "",
127
+ "type": "uint256"
128
+ }
129
+ ],
130
+ "stateMutability": "view",
131
+ "type": "function"
132
+ },
133
+ {
134
+ "inputs": [],
135
+ "name": "blocksOrSecondsPerYear",
136
+ "outputs": [
137
+ {
138
+ "internalType": "uint256",
139
+ "name": "",
140
+ "type": "uint256"
141
+ }
142
+ ],
143
+ "stateMutability": "view",
144
+ "type": "function"
145
+ },
146
+ {
147
+ "inputs": [],
148
+ "name": "getBlockNumberOrTimestamp",
149
+ "outputs": [
150
+ {
151
+ "internalType": "uint256",
152
+ "name": "",
153
+ "type": "uint256"
154
+ }
155
+ ],
156
+ "stateMutability": "view",
157
+ "type": "function"
158
+ },
159
+ {
160
+ "inputs": [
161
+ {
162
+ "internalType": "uint256",
163
+ "name": "cash",
164
+ "type": "uint256"
165
+ },
166
+ {
167
+ "internalType": "uint256",
168
+ "name": "borrows",
169
+ "type": "uint256"
170
+ },
171
+ {
172
+ "internalType": "uint256",
173
+ "name": "reserves",
174
+ "type": "uint256"
175
+ },
176
+ {
177
+ "internalType": "uint256",
178
+ "name": "badDebt",
179
+ "type": "uint256"
180
+ }
181
+ ],
182
+ "name": "getBorrowRate",
183
+ "outputs": [
184
+ {
185
+ "internalType": "uint256",
186
+ "name": "",
187
+ "type": "uint256"
188
+ }
189
+ ],
190
+ "stateMutability": "view",
191
+ "type": "function"
192
+ },
193
+ {
194
+ "inputs": [
195
+ {
196
+ "internalType": "uint256",
197
+ "name": "cash",
198
+ "type": "uint256"
199
+ },
200
+ {
201
+ "internalType": "uint256",
202
+ "name": "borrows",
203
+ "type": "uint256"
204
+ },
205
+ {
206
+ "internalType": "uint256",
207
+ "name": "reserves",
208
+ "type": "uint256"
209
+ },
210
+ {
211
+ "internalType": "uint256",
212
+ "name": "reserveFactorMantissa",
213
+ "type": "uint256"
214
+ },
215
+ {
216
+ "internalType": "uint256",
217
+ "name": "badDebt",
218
+ "type": "uint256"
219
+ }
220
+ ],
221
+ "name": "getSupplyRate",
222
+ "outputs": [
223
+ {
224
+ "internalType": "uint256",
225
+ "name": "",
226
+ "type": "uint256"
227
+ }
228
+ ],
229
+ "stateMutability": "view",
230
+ "type": "function"
231
+ },
232
+ {
233
+ "inputs": [],
234
+ "name": "isInterestRateModel",
235
+ "outputs": [
236
+ {
237
+ "internalType": "bool",
238
+ "name": "",
239
+ "type": "bool"
240
+ }
241
+ ],
242
+ "stateMutability": "pure",
243
+ "type": "function"
244
+ },
245
+ {
246
+ "inputs": [],
247
+ "name": "isTimeBased",
248
+ "outputs": [
249
+ {
250
+ "internalType": "bool",
251
+ "name": "",
252
+ "type": "bool"
253
+ }
254
+ ],
255
+ "stateMutability": "view",
256
+ "type": "function"
257
+ },
258
+ {
259
+ "inputs": [],
260
+ "name": "jumpMultiplierPerBlock",
261
+ "outputs": [
262
+ {
263
+ "internalType": "uint256",
264
+ "name": "",
265
+ "type": "uint256"
266
+ }
267
+ ],
268
+ "stateMutability": "view",
269
+ "type": "function"
270
+ },
271
+ {
272
+ "inputs": [],
273
+ "name": "kink",
274
+ "outputs": [
275
+ {
276
+ "internalType": "uint256",
277
+ "name": "",
278
+ "type": "uint256"
279
+ }
280
+ ],
281
+ "stateMutability": "view",
282
+ "type": "function"
283
+ },
284
+ {
285
+ "inputs": [],
286
+ "name": "multiplierPerBlock",
287
+ "outputs": [
288
+ {
289
+ "internalType": "uint256",
290
+ "name": "",
291
+ "type": "uint256"
292
+ }
293
+ ],
294
+ "stateMutability": "view",
295
+ "type": "function"
296
+ },
297
+ {
298
+ "inputs": [
299
+ {
300
+ "internalType": "uint256",
301
+ "name": "baseRatePerYear",
302
+ "type": "uint256"
303
+ },
304
+ {
305
+ "internalType": "uint256",
306
+ "name": "multiplierPerYear",
307
+ "type": "uint256"
308
+ },
309
+ {
310
+ "internalType": "uint256",
311
+ "name": "jumpMultiplierPerYear",
312
+ "type": "uint256"
313
+ },
314
+ {
315
+ "internalType": "uint256",
316
+ "name": "kink_",
317
+ "type": "uint256"
318
+ }
319
+ ],
320
+ "name": "updateJumpRateModel",
321
+ "outputs": [],
322
+ "stateMutability": "nonpayable",
323
+ "type": "function"
324
+ },
325
+ {
326
+ "inputs": [
327
+ {
328
+ "internalType": "uint256",
329
+ "name": "cash",
330
+ "type": "uint256"
331
+ },
332
+ {
333
+ "internalType": "uint256",
334
+ "name": "borrows",
335
+ "type": "uint256"
336
+ },
337
+ {
338
+ "internalType": "uint256",
339
+ "name": "reserves",
340
+ "type": "uint256"
341
+ },
342
+ {
343
+ "internalType": "uint256",
344
+ "name": "badDebt",
345
+ "type": "uint256"
346
+ }
347
+ ],
348
+ "name": "utilizationRate",
349
+ "outputs": [
350
+ {
351
+ "internalType": "uint256",
352
+ "name": "",
353
+ "type": "uint256"
354
+ }
355
+ ],
356
+ "stateMutability": "pure",
357
+ "type": "function"
358
+ }
359
+ ],
360
+ "transactionHash": "0xc39457e1e7023010e9e8cfea0e71713d31f03bc229a9b4c7a6a776b58afa22c0",
361
+ "receipt": {
362
+ "to": "0x0000000000000000000000000000000000008006",
363
+ "from": "0x2Ce1d0ffD7E869D9DF33e28552b12DdDed326706",
364
+ "contractAddress": "0xCD6f2137182affDA1883135C3351D556721B81dE",
365
+ "transactionIndex": 0,
366
+ "gasUsed": "244674",
367
+ "logsBloom": "0x10000000000400000004000000000000000000000000000000000008000000000000000010000000080000000000000000000000000000000000000000004000000000000000040000000008000040000000000000000000000000000000080000000000000000000000000000000000000000000000000000000010000000000000000000000000000084000000000100000100000000000000000000000000000000000024100000000000800000000000080000000000002000010000000000000002008000000000000000000000040000000100000000000000000000000000000000000000000004000400000000000000000000000000100000000000",
368
+ "blockHash": "0x6da5a7907f0ccca6415590d5166191bf7071ec993d0663000fc6b2c208f8463c",
369
+ "transactionHash": "0xc39457e1e7023010e9e8cfea0e71713d31f03bc229a9b4c7a6a776b58afa22c0",
370
+ "logs": [
371
+ {
372
+ "transactionIndex": 0,
373
+ "blockNumber": 4487758,
374
+ "transactionHash": "0xc39457e1e7023010e9e8cfea0e71713d31f03bc229a9b4c7a6a776b58afa22c0",
375
+ "address": "0x000000000000000000000000000000000000800A",
376
+ "topics": [
377
+ "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
378
+ "0x0000000000000000000000002ce1d0ffd7e869d9df33e28552b12ddded326706",
379
+ "0x0000000000000000000000000000000000000000000000000000000000008001"
380
+ ],
381
+ "data": "0x00000000000000000000000000000000000000000000000000001903c6266000",
382
+ "logIndex": 0,
383
+ "blockHash": "0x6da5a7907f0ccca6415590d5166191bf7071ec993d0663000fc6b2c208f8463c"
384
+ },
385
+ {
386
+ "transactionIndex": 0,
387
+ "blockNumber": 4487758,
388
+ "transactionHash": "0xc39457e1e7023010e9e8cfea0e71713d31f03bc229a9b4c7a6a776b58afa22c0",
389
+ "address": "0xCD6f2137182affDA1883135C3351D556721B81dE",
390
+ "topics": ["0x6960ab234c7ef4b0c9197100f5393cfcde7c453ac910a27bd2000aa1dd4c068d"],
391
+ "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081f0e54600000000000000000000000000000000000000000000000000000012752091570000000000000000000000000000000000000000000000000b1a2bc2ec500000",
392
+ "logIndex": 1,
393
+ "blockHash": "0x6da5a7907f0ccca6415590d5166191bf7071ec993d0663000fc6b2c208f8463c"
394
+ },
395
+ {
396
+ "transactionIndex": 0,
397
+ "blockNumber": 4487758,
398
+ "transactionHash": "0xc39457e1e7023010e9e8cfea0e71713d31f03bc229a9b4c7a6a776b58afa22c0",
399
+ "address": "0x0000000000000000000000000000000000008006",
400
+ "topics": [
401
+ "0x290afdae231a3fc0bbae8b1af63698b0a1d79b21ad17df0342dfb952fe74f8e5",
402
+ "0x0000000000000000000000002ce1d0ffd7e869d9df33e28552b12ddded326706",
403
+ "0x010001090b5a188641ed968b0bb23a652008b2c6b809b917db5555bf4cd1dac0",
404
+ "0x000000000000000000000000cd6f2137182affda1883135c3351d556721b81de"
405
+ ],
406
+ "data": "0x",
407
+ "logIndex": 2,
408
+ "blockHash": "0x6da5a7907f0ccca6415590d5166191bf7071ec993d0663000fc6b2c208f8463c"
409
+ },
410
+ {
411
+ "transactionIndex": 0,
412
+ "blockNumber": 4487758,
413
+ "transactionHash": "0xc39457e1e7023010e9e8cfea0e71713d31f03bc229a9b4c7a6a776b58afa22c0",
414
+ "address": "0x000000000000000000000000000000000000800A",
415
+ "topics": [
416
+ "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
417
+ "0x0000000000000000000000000000000000000000000000000000000000008001",
418
+ "0x0000000000000000000000002ce1d0ffd7e869d9df33e28552b12ddded326706"
419
+ ],
420
+ "data": "0x00000000000000000000000000000000000000000000000000001373957a7f80",
421
+ "logIndex": 3,
422
+ "blockHash": "0x6da5a7907f0ccca6415590d5166191bf7071ec993d0663000fc6b2c208f8463c"
423
+ }
424
+ ],
425
+ "blockNumber": 4487758,
426
+ "cumulativeGasUsed": "0",
427
+ "status": 1,
428
+ "byzantium": true
429
+ },
430
+ "args": [
431
+ "0",
432
+ "68750000000000000",
433
+ "2500000000000000000",
434
+ "800000000000000000",
435
+ "0xD07f543d47c3a8997D6079958308e981AC14CD01",
436
+ true,
437
+ 0
438
+ ],
439
+ "numDeployments": 1,
440
+ "solcInputHash": "c84b0f085ad65b3aa38a5f0d3790c387",
441
+ "metadata": {
442
+ "llvm_options": [],
443
+ "optimizer_settings": {
444
+ "is_debug_logging_enabled": false,
445
+ "is_fallback_to_size_enabled": false,
446
+ "is_verify_each_enabled": false,
447
+ "level_back_end": "Aggressive",
448
+ "level_middle_end": "Aggressive",
449
+ "level_middle_end_size": "Zero"
450
+ },
451
+ "solc_version": "0.8.25",
452
+ "solc_zkvm_edition": "1.0.1",
453
+ "source_metadata": "{\"compiler\":{\"version\":\"0.8.25+commit.47b979f3\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"baseRatePerYear_\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"multiplierPerYear_\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jumpMultiplierPerYear_\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"kink_\",\"type\":\"uint256\"},{\"internalType\":\"contract IAccessControlManagerV8\",\"name\":\"accessControlManager_\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"timeBased_\",\"type\":\"bool\"},{\"internalType\":\"uint256\",\"name\":\"blocksPerYear_\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"InvalidBlocksPerYear\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidTimeBasedConfiguration\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"calledContract\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"methodSignature\",\"type\":\"string\"}],\"name\":\"Unauthorized\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"baseRatePerBlockOrTimestamp\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"multiplierPerBlockOrTimestamp\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"jumpMultiplierPerBlockOrTimestamp\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"kink\",\"type\":\"uint256\"}],\"name\":\"NewInterestParams\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"accessControlManager\",\"outputs\":[{\"internalType\":\"contract IAccessControlManagerV8\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"baseRatePerBlock\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"blocksOrSecondsPerYear\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getBlockNumberOrTimestamp\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"cash\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"borrows\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"reserves\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"badDebt\",\"type\":\"uint256\"}],\"name\":\"getBorrowRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"cash\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"borrows\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"reserves\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"reserveFactorMantissa\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"badDebt\",\"type\":\"uint256\"}],\"name\":\"getSupplyRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isInterestRateModel\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isTimeBased\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"jumpMultiplierPerBlock\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"kink\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"multiplierPerBlock\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"baseRatePerYear\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"multiplierPerYear\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jumpMultiplierPerYear\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"kink_\",\"type\":\"uint256\"}],\"name\":\"updateJumpRateModel\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"cash\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"borrows\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"reserves\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"badDebt\",\"type\":\"uint256\"}],\"name\":\"utilizationRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Compound (modified by Dharma Labs, Arr00 and Venus)\",\"kind\":\"dev\",\"methods\":{\"constructor\":{\"params\":{\"accessControlManager_\":\"The address of the AccessControlManager contract\",\"baseRatePerYear_\":\"The approximate target base APR, as a mantissa (scaled by EXP_SCALE)\",\"blocksPerYear_\":\"The number of blocks per year\",\"jumpMultiplierPerYear_\":\"The multiplier after hitting a specified utilization point\",\"kink_\":\"The utilization point at which the jump multiplier is applied\",\"multiplierPerYear_\":\"The rate of increase in interest rate wrt utilization (scaled by EXP_SCALE)\",\"timeBased_\":\"A boolean indicating whether the contract is based on time or block.\"}},\"getBlockNumberOrTimestamp()\":{\"details\":\"Function to simply retrieve block number or block timestamp\",\"returns\":{\"_0\":\"Current block number or block timestamp\"}},\"getBorrowRate(uint256,uint256,uint256,uint256)\":{\"params\":{\"badDebt\":\"The amount of badDebt in the market\",\"borrows\":\"The amount of borrows in the market\",\"cash\":\"The amount of cash in the market\",\"reserves\":\"The amount of reserves in the market\"},\"returns\":{\"_0\":\"The borrow rate percentage per slot (block or second) as a mantissa (scaled by 1e18)\"}},\"getSupplyRate(uint256,uint256,uint256,uint256,uint256)\":{\"params\":{\"badDebt\":\"The amount of badDebt in the market\",\"borrows\":\"The amount of borrows in the market\",\"cash\":\"The amount of cash in the market\",\"reserveFactorMantissa\":\"The current reserve factor for the market\",\"reserves\":\"The amount of reserves in the market\"},\"returns\":{\"_0\":\"The supply rate percentage per slot (block or second) as a mantissa (scaled by EXP_SCALE)\"}},\"isInterestRateModel()\":{\"returns\":{\"_0\":\"Always true\"}},\"updateJumpRateModel(uint256,uint256,uint256,uint256)\":{\"custom:access\":\"Controlled by AccessControlManager\",\"custom:error\":\"Unauthorized if the sender is not allowed to call this function\",\"params\":{\"baseRatePerYear\":\"The approximate target base APR, as a mantissa (scaled by EXP_SCALE)\",\"jumpMultiplierPerYear\":\"The multiplierPerBlockOrTimestamp after hitting a specified utilization point\",\"kink_\":\"The utilization point at which the jump multiplier is applied\",\"multiplierPerYear\":\"The rate of increase in interest rate wrt utilization (scaled by EXP_SCALE)\"}},\"utilizationRate(uint256,uint256,uint256,uint256)\":{\"params\":{\"badDebt\":\"The amount of badDebt in the market\",\"borrows\":\"The amount of borrows in the market\",\"cash\":\"The amount of cash in the market\",\"reserves\":\"The amount of reserves in the market (currently unused)\"},\"returns\":{\"_0\":\"The utilization rate as a mantissa between [0, MANTISSA_ONE]\"}}},\"title\":\"JumpRateModelV2\",\"version\":1},\"userdoc\":{\"errors\":{\"InvalidBlocksPerYear()\":[{\"notice\":\"Thrown when blocks per year is invalid\"}],\"InvalidTimeBasedConfiguration()\":[{\"notice\":\"Thrown when time based but blocks per year is provided\"}],\"Unauthorized(address,address,string)\":[{\"notice\":\"Thrown when the action is prohibited by AccessControlManager\"}]},\"kind\":\"user\",\"methods\":{\"accessControlManager()\":{\"notice\":\"The address of the AccessControlManager contract\"},\"baseRatePerBlock()\":{\"notice\":\"The base interest rate per block or second which is the y-intercept when utilization rate is 0\"},\"blocksOrSecondsPerYear()\":{\"notice\":\"Stores blocksPerYear if isTimeBased is true else secondsPerYear is stored\"},\"constructor\":{\"notice\":\"Construct an interest rate model\"},\"getBorrowRate(uint256,uint256,uint256,uint256)\":{\"notice\":\"Calculates the current borrow rate per slot (block or second)\"},\"getSupplyRate(uint256,uint256,uint256,uint256,uint256)\":{\"notice\":\"Calculates the current supply rate per slot (block or second)\"},\"isInterestRateModel()\":{\"notice\":\"Indicator that this is an InterestRateModel contract (for inspection)\"},\"isTimeBased()\":{\"notice\":\"Acknowledges if a contract is time based or not\"},\"jumpMultiplierPerBlock()\":{\"notice\":\"The multiplier per block or second after hitting a specified utilization point\"},\"kink()\":{\"notice\":\"The utilization point at which the jump multiplier is applied\"},\"multiplierPerBlock()\":{\"notice\":\"The multiplier of utilization rate per block or second that gives the slope of the interest rate\"},\"updateJumpRateModel(uint256,uint256,uint256,uint256)\":{\"notice\":\"Update the parameters of the interest rate model\"},\"utilizationRate(uint256,uint256,uint256,uint256)\":{\"notice\":\"Calculates the utilization rate of the market: `(borrows + badDebt) / (cash + borrows + badDebt - reserves)`\"}},\"notice\":\"An interest rate model with a steep increase after a certain utilization threshold called **kink** is reached. The parameters of this interest rate model can be adjusted by the owner. Version 2 modifies Version 1 by enabling updateable parameters\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/JumpRateModelV2.sol\":\"JumpRateModelV2\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"details\":{\"constantOptimizer\":false,\"cse\":false,\"deduplicate\":false,\"inliner\":false,\"jumpdestRemover\":false,\"orderLiterals\":false,\"peephole\":false,\"simpleCounterForLoopUncheckedIncrement\":true,\"yul\":true,\"yulDetails\":{\"optimizerSteps\":\"dhfoDgvulfnTUtnIf[xa[r]EscLMcCTUtTOntnfDIulLculVcul [j]Tpeulxa[rul]xa[r]cLgvifCTUca[r]LSsTFOtfDnca[r]Iulc]jmul[jul] VcTOcul jmul:fDnTOcmu\",\"stackAllocation\":true}},\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0x59ce320a585d7e1f163cd70390a0ef2ff9cec832e2aa544293a00692465a7a57\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bb2c137c343ef0c4c7ce7b18c1d108afdc9d315a04e48307288d2d05adcbde3a\",\"dweb:/ipfs/QmUxhrAQM3MM3FF5j7AtcXLXguWCJBHJ14BRdVtuoQc8Fh\"]},\"@venusprotocol/governance-contracts/contracts/Governance/IAccessControlManagerV8.sol\":{\"keccak256\":\"0xaa29b098440d0b3a131c5ecdf25ce548790c1b5ac7bf9b5c0264b6af6f7a1e0b\",\"license\":\"BSD-3-Clause\",\"urls\":[\"bzz-raw://8120bda3990193388d0cc5f551510ef1eab685387a58a88ab607b5149e51acde\",\"dweb:/ipfs/QmNSX9ai6GbN4wQukM29rFkcWDFhqStUTtKe6XtreTvRcN\"]},\"@venusprotocol/solidity-utilities/contracts/TimeManagerV8.sol\":{\"keccak256\":\"0x57a2bbb9b8e02b1c0a5c0e305fef1328a22db56c3d4b148c362010a6e767243c\",\"license\":\"BSD-3-Clause\",\"urls\":[\"bzz-raw://01c6af010cbff93563f2175d48702f5d901beb59b0e3315ed2a5583dfa53ee21\",\"dweb:/ipfs/QmY7sfvoQ1kEQtLhPdSA3bQdV4u3hT563RSvuCtgSrQUmx\"]},\"@venusprotocol/solidity-utilities/contracts/constants.sol\":{\"keccak256\":\"0x14de93ead464da249af31bea0e3bcfb62ec693bea3475fb4d90f055ac81dc5eb\",\"license\":\"BSD-3-Clause\",\"urls\":[\"bzz-raw://6134b92b2bc5bad1c6e088d0d092736eede6dfe2cf7dadc573f1396a9d690274\",\"dweb:/ipfs/QmXwKV4SY7CdCaCaDqXudcLxVLB4vUfbwMiH9kH6HhWpiy\"]},\"contracts/InterestRateModel.sol\":{\"keccak256\":\"0xc4fda1ab75ebe4b187b707c4f10c58780f343cf343c537f641dc75d3cd28ab51\",\"license\":\"BSD-3-Clause\",\"urls\":[\"bzz-raw://8cf703e1c44ebd4977200275e7c8c480081f1f6f54bedb6b0a070af04a8c733d\",\"dweb:/ipfs/QmUNCCcYZxftVaf4SdqXUpjeeyNe9Kqr45dbNguBGY5X1h\"]},\"contracts/JumpRateModelV2.sol\":{\"keccak256\":\"0x926821f88c135be782af42e894cbc733f2d565f720f7b473ac5f37836aace26f\",\"license\":\"BSD-3-Clause\",\"urls\":[\"bzz-raw://f751488f6a8db8cf2684aede8710ddfe52a9ef3c61f8e22f2daf2890f2da9852\",\"dweb:/ipfs/QmNaSDA8tgQXEPfjTrDATojmPQjWpuuL5rNsNg6SoNpApE\"]},\"contracts/lib/constants.sol\":{\"keccak256\":\"0x54ab3a6f3bc87569ed12370f3470a1ec84cea9796d4d0ccf3d07dd4280c044aa\",\"license\":\"BSD-3-Clause\",\"urls\":[\"bzz-raw://be1b725f8bf381f0a0e14b5fc676fcd38fbcbda868f6ec0b5163cfa4cb25e548\",\"dweb:/ipfs/QmdDLtw2sVdVy8RhHWeoNVaEzQJhykgbHdPrGeFRKRcPgw\"]}},\"version\":1}",
454
+ "zk_version": "1.5.3"
455
+ },
456
+ "bytecode": "0x00020000000000020008000000000002000100000001035500000000030100190000006003300270000000d5033001970000000100200190000000330000c13d0000008002000039000000400020043f000000040030008c0000028b0000413d000000000201043b000000e002200270000000e40020009c000000680000a13d000000e50020009c0000009c0000a13d000000e60020009c000000b40000213d000000e90020009c000000bd0000613d000000ea0020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d000000f601000041000000000010044300000000010004120000000400100443000000400100003900000024001004430000000001000414000000d50010009c000000d501008041000000c001100210000000f7011001c700008005020000390350034b0000040f0000000100200190000002650000613d000000000101043b000000010010008c000002390000613d000000020010008c000002460000c13d000000fa01000041000000000010044300000000010004140000023c0000013d0000000002000416000000000002004b0000028b0000c13d0000001f02300039000000d602200197000000e002200039000000400020043f0000001f0430018f000000d705300198000000e002500039000000440000613d000000e006000039000000000701034f000000007807043c0000000006860436000000000026004b000000400000c13d000000000004004b000000510000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000e00030008c0000028b0000413d000001600300043d000000d80030009c0000028b0000213d000001800700043d000000000007004b0000000001000039000000010100c039000000000017004b0000028b0000c13d000001400100043d000001200200043d000001000400043d000000e00600043d000001a00500043d000000000007004b0000011d0000613d000000000005004b000001220000c13d000000db0500004100000001080000390000012b0000013d000000ee0020009c000000a70000213d000000f20020009c000000d00000613d000000f30020009c000000dd0000613d000000f40020009c0000028b0000c13d000000840030008c0000028b0000413d0000000002000416000000000002004b0000028b0000c13d0000006402100370000000000502043b0000004402100370000000000602043b0000002402100370000000000202043b000400000002001d0000000401100370000000000101043b000300000001001d000000e001000039000000400010043f0000003407000039000000800070043f000000fe01000041000000a00010043f000000ff02000041000000c00020043f0000003003000039000000000303041a0000010004000041000000e00040043f0000000008000411000000e40080043f0000004004000039000001040040043f000001240070043f000001440010043f000001640020043f000001780000043f0000000001000414000000d802300197000000040020008c000001770000c13d0000000003000031000000200030008c00000020040000390000000004034019000001a10000013d000000eb0020009c000000f00000613d000000ec0020009c000000f50000613d000000ed0020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d0000003301000039000001190000013d000000ef0020009c000000fe0000613d000000f00020009c000001050000613d000000f10020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d0000000001030019035002970000040f035002b90000040f000000d60000013d000000e70020009c000001150000613d000000e80020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d0000003401000039000001190000013d0000000001000416000000000001004b0000028b0000c13d0000000001000412000600000001001d000500200000003d000080050100003900000044030000390000000004000415000000060440008a0000000504400210000000f602000041035003280000040f000000000001004b0000000001000039000000010100c039000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000000001030019035002970000040f035002dc0000040f000000400200043d0000000000120435000000d50020009c000000d5020080410000004001200210000000fb011001c7000003510001042e000000a40030008c0000028b0000413d0000000002000416000000000002004b0000028b0000c13d0000008402100370000000000202043b0000004403100370000000000303043b0000006404100370000000000504043b000001030050009c000001c50000413d000000fc01000041000000000010043f0000001101000039000000040010043f000000fd0100004100000352000104300000000001000416000000000001004b0000028b0000c13d0000003101000039000001190000013d0000000001000416000000000001004b0000028b0000c13d0000003001000039000000000101041a000000d801100197000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000000101000039000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000000001000412000800000001001d000700000000003d000080050100003900000044030000390000000004000415000000080440008a0000000504400210000000f602000041035003280000040f000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000003201000039000000000101041a000000800010043f000000f501000041000003510001042e000000000005004b0000012a0000c13d000000400100043d000000d902000041000001240000013d000000400100043d000000dc020000410000000000210435000000d50010009c000000d5010080410000004001100210000000da011001c700000352000104300000000208000039000000d809300198000000a00070043f000000800050043f000000c00080043f000000400300043d000001410000c13d0000004401300039000000e1020000410000000000210435000000240130003900000013020000390000000000210435000000e2010000410000000000130435000000040130003900000020020000390000000000210435000000d50030009c000000d5030080410000004001300210000000e3011001c700000352000104300000003007000039000000000807041a000000dd08800197000000000898019f000000000087041b00000000065600d90000003207000039000000000067041b00000000045400d90000003107000039000000000047041b00000000025200d90000003305000039000000000025041b0000003405000039000000000015041b0000006005300039000000000015043500000040013000390000000000210435000000200130003900000000004104350000000000630435000000d50030009c000000d50300804100000040013002100000000002000414000000d50020009c000000d502008041000000c002200210000000000112019f000000de011001c70000800d020000390000000103000039000000df04000041035003460000040f00000001002001900000028b0000613d000000800100043d00000140000004430000016000100443000000a00100043d00000020020000390000018000200443000001a000100443000000c00100043d0000004003000039000001c000300443000001e000100443000001000020044300000003010000390000012000100443000000e001000041000003510001042e000100000006001d000200000005001d000000d50010009c000000d501008041000000c00110021000000101011001c70350034b0000040f000000e00a00003900000000030100190000006003300270000000d503300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000e0057000390000018e0000613d000000000801034f000000008908043c000000000a9a043600000000005a004b0000018a0000c13d000000000006004b0000019b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00000001002001900000000008000411000001ef0000613d000000020500002900000001060000290000001f01400039000000600110018f000000e004100039000000400040043f000000200030008c0000028b0000413d000000e00200043d000000000002004b0000000003000039000000010300c039000000000032004b0000028b0000c13d000000000002004b0000024c0000c13d00000102020000410000000000240435000000e402100039000000000082043500000104021001bf0000000003000410000000000032043500000124021000390000006003000039000000000032043500000144021000390000008001000039000400000004001d035002a70000040f000000040200002900000000012100490000004002200210000000d50010009c000000d5010080410000006001100210000000000121019f00000352000104300000000404100370000000000404043b0000002401100370000000000101043b000000000021001a000000ea0000413d000000000721001a00000000060000190000020d0000c13d000001040660012a0000003207000039000000000707041a000000000067001a000000ea0000413d0000000006670019000001040750009900000000057600a9000000000006004b000001db0000613d00000000066500d9000000000076004b000000ea0000c13d000001040650012a00000000051600a9000000000001004b000001e20000613d00000000071500d9000000000067004b000000ea0000c13d000000000014001a000000ea0000413d0000000001140019000000000021001a000000ea0000413d0000000001210019000000000131004b000000ea0000413d0000025f0000613d00000000011500d9000000800010043f000000f501000041000003510001042e0000001f0530018f000000d706300198000000400200043d0000000004620019000001fa0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000001f60000c13d000000000005004b000002070000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000000d50020009c000000d5020080410000004002200210000000000112019f000003520001043000000104067000d100000000077600d9000001040070009c000000ea0000c13d000000000014001a000000ea0000413d0000000007140019000000000027001a000000ea0000413d0000000007270019000000000737004b000000ea0000413d0000025f0000613d00000000077600d9000001040070009c00000104070080410000003406000039000000000806041a000000000687004b0000028d0000a13d0000003107000039000000000907041a00000000078900a9000000000008004b000002290000613d00000000088700d9000000000098004b000000ea0000c13d000001040770012a0000003208000039000000000808041a000000000078001a000000ea0000413d0000003309000039000000000a09041a00000000096a00a900000000066900d90000000000a6004b000000ea0000c13d0000000006780019000001040790012a000000000067001a000000ea0000413d000001d30000013d000000f80100004100000000001004430000000001000414000000d50010009c000000d501008041000000c001100210000000f9011001c70000800b020000390350034b0000040f0000000100200190000002650000613d000000000101043b000000d60000013d000000fc01000041000000000010043f0000005101000039000000040010043f000000fd010000410000035200010430000100000006001d000200000005001d000000f60100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000000d50010009c000000d501008041000000c001100210000000f7011001c700008005020000390350034b0000040f0000000100200190000002650000613d000000000101043b000000000001004b000002660000c13d000000fc01000041000000000010043f0000001201000039000000040010043f000000fd010000410000035200010430000000000001042f00000003021000f90000003203000039000000000023041b00000004031000f90000003104000039000000000034041b00000001011000f90000003304000039000000000014041b00000002060000290000003404000039000000000064041b000000400400043d0000006005400039000000000065043500000040054000390000000000150435000000200140003900000000003104350000000000240435000000d50040009c000000d50400804100000040014002100000000002000414000000d50020009c000000d502008041000000c002200210000000000112019f000000de011001c70000800d020000390000000103000039000000df04000041035003460000040f00000001002001900000028b0000613d0000000001000019000003510001042e00000000010000190000035200010430000000000007004b0000000006000019000001ce0000613d0000003106000039000000000806041a00000000067800a900000000077600d9000000000087004b000000ea0000c13d000001ce0000013d000001050010009c000002a50000213d000000830010008c000002a50000a13d00000001040003670000000401400370000000000101043b0000002402400370000000000202043b0000004403400370000000000303043b0000006404400370000000000404043b000000000001042d0000000001000019000003520001043000000000430104340000000001320436000000000003004b000002b30000613d000000000200001900000000052100190000000006240019000000000606043300000000006504350000002002200039000000000032004b000002ac0000413d000000000231001900000000000204350000001f0230003900000106022001970000000001210019000000000001042d000000000024001a000002d00000413d000000000624001a000002ce0000613d00000104056000d100000000066500d9000001040060009c000002d00000c13d000000000012001a000002d00000413d0000000001120019000000000041001a000002d00000413d0000000001410019000000000131004b000002d00000413d000002d60000613d00000000011500d9000001040010009c0000010401008041000000000001042d0000000001000019000000000001042d000000fc01000041000000000010043f0000001101000039000000040010043f000000fd010000410000035200010430000000fc01000041000000000010043f0000001201000039000000040010043f000000fd010000410000035200010430000000000024001a0000031b0000413d000000000624001a000003130000613d00000104056000d100000000066500d9000001040060009c0000031b0000c13d000000000012001a0000031b0000413d0000000001120019000000000041001a0000031b0000413d0000000001410019000000000131004b0000031b0000413d000003210000613d00000000021500d9000001040020009c00000104020080410000003401000039000000000301041a000000000132004b0000030a0000a13d0000003102000039000000000402041a00000000023400a9000000000003004b000002fc0000613d00000000033200d9000000000043004b0000031b0000c13d000001040220012a0000003203000039000000000303041a000000000023001a0000031b0000413d0000003304000039000000000504041a00000000041500a900000000011400d9000000000051004b0000031b0000c13d0000000001230019000001040240012a000003170000013d000000000002004b000003130000613d0000003101000039000000000301041a00000000012300a900000000022100d9000000000032004b000003140000613d0000031b0000013d0000000001000019000001040110012a0000003202000039000000000202041a000000000012001a0000031b0000413d0000000001120019000000000001042d000000fc01000041000000000010043f0000001101000039000000040010043f000000fd010000410000035200010430000000fc01000041000000000010043f0000001201000039000000040010043f000000fd010000410000035200010430000000000001042f00000000050100190000000000200443000000050030008c000003360000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b0000032e0000413d000000d50030009c000000d50300804100000060013002100000000002000414000000d50020009c000000d502008041000000c002200210000000000112019f00000107011001c700000000020500190350034b0000040f0000000100200190000003450000613d000000000101043b000000000001042d000000000001042f00000349002104210000000102000039000000000001042d0000000002000019000000000001042d0000034e002104230000000102000039000000000001042d0000000002000019000000000001042d0000035000000432000003510001042e0000035200010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff09c8f7ec0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000001e13380ae0fcab300000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000800000000000000000000000006960ab234c7ef4b0c9197100f5393cfcde7c453ac910a27bd2000aa1dd4c068d0000000200000000000000000000000000000100000001000000000000000000696e76616c69642041434d20616464726573730000000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000000000008726bb8800000000000000000000000000000000000000000000000000000000c7ad089400000000000000000000000000000000000000000000000000000000f14039dd00000000000000000000000000000000000000000000000000000000f14039de00000000000000000000000000000000000000000000000000000000fd2da33900000000000000000000000000000000000000000000000000000000c7ad089500000000000000000000000000000000000000000000000000000000e1d146fb000000000000000000000000000000000000000000000000000000008726bb8900000000000000000000000000000000000000000000000000000000b4a0bdf300000000000000000000000000000000000000000000000000000000b9f9850a000000000000000000000000000000000000000000000000000000002191f929000000000000000000000000000000000000000000000000000000002191f92a000000000000000000000000000000000000000000000000000000006857249c0000000000000000000000000000000000000000000000000000000070d3c43f00000000000000000000000000000000000000000000000000000000073b8a74000000000000000000000000000000000000000000000000000000000cde8d1c000000000000000000000000000000000000000000000000000000002037f3e70000000000000000000000000000000000000020000000800000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0200000200000000000000000000000000000044000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132020000020000000000000000000000000000000400000000000000000000000042cbb15ccdc3cad6266b0e7a08c0454b23bf29dc2df74b6f3c209e9336465bd100000000000000000000000000000000000000200000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000007570646174654a756d70526174654d6f64656c2875696e743235362c75696e743235362c75696e743235362c75696e743235362900000000000000000000000018c5e8ab0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4000000e000000000000000004a3fa293000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a76400010000000000000000000000000000000000000000000000000de0b6b3a76400007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00200000200000000000000000000000000000000000000000000000000000000e3bd261dd87c848e5c4d7311074df7f2e2d7ad3b54833a990d7bc5ba8f2de813",
457
+ "deployedBytecode": "0x00020000000000020008000000000002000100000001035500000000030100190000006003300270000000d5033001970000000100200190000000330000c13d0000008002000039000000400020043f000000040030008c0000028b0000413d000000000201043b000000e002200270000000e40020009c000000680000a13d000000e50020009c0000009c0000a13d000000e60020009c000000b40000213d000000e90020009c000000bd0000613d000000ea0020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d000000f601000041000000000010044300000000010004120000000400100443000000400100003900000024001004430000000001000414000000d50010009c000000d501008041000000c001100210000000f7011001c700008005020000390350034b0000040f0000000100200190000002650000613d000000000101043b000000010010008c000002390000613d000000020010008c000002460000c13d000000fa01000041000000000010044300000000010004140000023c0000013d0000000002000416000000000002004b0000028b0000c13d0000001f02300039000000d602200197000000e002200039000000400020043f0000001f0430018f000000d705300198000000e002500039000000440000613d000000e006000039000000000701034f000000007807043c0000000006860436000000000026004b000000400000c13d000000000004004b000000510000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000e00030008c0000028b0000413d000001600300043d000000d80030009c0000028b0000213d000001800700043d000000000007004b0000000001000039000000010100c039000000000017004b0000028b0000c13d000001400100043d000001200200043d000001000400043d000000e00600043d000001a00500043d000000000007004b0000011d0000613d000000000005004b000001220000c13d000000db0500004100000001080000390000012b0000013d000000ee0020009c000000a70000213d000000f20020009c000000d00000613d000000f30020009c000000dd0000613d000000f40020009c0000028b0000c13d000000840030008c0000028b0000413d0000000002000416000000000002004b0000028b0000c13d0000006402100370000000000502043b0000004402100370000000000602043b0000002402100370000000000202043b000400000002001d0000000401100370000000000101043b000300000001001d000000e001000039000000400010043f0000003407000039000000800070043f000000fe01000041000000a00010043f000000ff02000041000000c00020043f0000003003000039000000000303041a0000010004000041000000e00040043f0000000008000411000000e40080043f0000004004000039000001040040043f000001240070043f000001440010043f000001640020043f000001780000043f0000000001000414000000d802300197000000040020008c000001770000c13d0000000003000031000000200030008c00000020040000390000000004034019000001a10000013d000000eb0020009c000000f00000613d000000ec0020009c000000f50000613d000000ed0020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d0000003301000039000001190000013d000000ef0020009c000000fe0000613d000000f00020009c000001050000613d000000f10020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d0000000001030019035002970000040f035002b90000040f000000d60000013d000000e70020009c000001150000613d000000e80020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d0000003401000039000001190000013d0000000001000416000000000001004b0000028b0000c13d0000000001000412000600000001001d000500200000003d000080050100003900000044030000390000000004000415000000060440008a0000000504400210000000f602000041035003280000040f000000000001004b0000000001000039000000010100c039000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000000001030019035002970000040f035002dc0000040f000000400200043d0000000000120435000000d50020009c000000d5020080410000004001200210000000fb011001c7000003510001042e000000a40030008c0000028b0000413d0000000002000416000000000002004b0000028b0000c13d0000008402100370000000000202043b0000004403100370000000000303043b0000006404100370000000000504043b000001030050009c000001c50000413d000000fc01000041000000000010043f0000001101000039000000040010043f000000fd0100004100000352000104300000000001000416000000000001004b0000028b0000c13d0000003101000039000001190000013d0000000001000416000000000001004b0000028b0000c13d0000003001000039000000000101041a000000d801100197000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000000101000039000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000000001000412000800000001001d000700000000003d000080050100003900000044030000390000000004000415000000080440008a0000000504400210000000f602000041035003280000040f000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000003201000039000000000101041a000000800010043f000000f501000041000003510001042e000000000005004b0000012a0000c13d000000400100043d000000d902000041000001240000013d000000400100043d000000dc020000410000000000210435000000d50010009c000000d5010080410000004001100210000000da011001c700000352000104300000000208000039000000d809300198000000a00070043f000000800050043f000000c00080043f000000400300043d000001410000c13d0000004401300039000000e1020000410000000000210435000000240130003900000013020000390000000000210435000000e2010000410000000000130435000000040130003900000020020000390000000000210435000000d50030009c000000d5030080410000004001300210000000e3011001c700000352000104300000003007000039000000000807041a000000dd08800197000000000898019f000000000087041b00000000065600d90000003207000039000000000067041b00000000045400d90000003107000039000000000047041b00000000025200d90000003305000039000000000025041b0000003405000039000000000015041b0000006005300039000000000015043500000040013000390000000000210435000000200130003900000000004104350000000000630435000000d50030009c000000d50300804100000040013002100000000002000414000000d50020009c000000d502008041000000c002200210000000000112019f000000de011001c70000800d020000390000000103000039000000df04000041035003460000040f00000001002001900000028b0000613d000000800100043d00000140000004430000016000100443000000a00100043d00000020020000390000018000200443000001a000100443000000c00100043d0000004003000039000001c000300443000001e000100443000001000020044300000003010000390000012000100443000000e001000041000003510001042e000100000006001d000200000005001d000000d50010009c000000d501008041000000c00110021000000101011001c70350034b0000040f000000e00a00003900000000030100190000006003300270000000d503300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000e0057000390000018e0000613d000000000801034f000000008908043c000000000a9a043600000000005a004b0000018a0000c13d000000000006004b0000019b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00000001002001900000000008000411000001ef0000613d000000020500002900000001060000290000001f01400039000000600110018f000000e004100039000000400040043f000000200030008c0000028b0000413d000000e00200043d000000000002004b0000000003000039000000010300c039000000000032004b0000028b0000c13d000000000002004b0000024c0000c13d00000102020000410000000000240435000000e402100039000000000082043500000104021001bf0000000003000410000000000032043500000124021000390000006003000039000000000032043500000144021000390000008001000039000400000004001d035002a70000040f000000040200002900000000012100490000004002200210000000d50010009c000000d5010080410000006001100210000000000121019f00000352000104300000000404100370000000000404043b0000002401100370000000000101043b000000000021001a000000ea0000413d000000000721001a00000000060000190000020d0000c13d000001040660012a0000003207000039000000000707041a000000000067001a000000ea0000413d0000000006670019000001040750009900000000057600a9000000000006004b000001db0000613d00000000066500d9000000000076004b000000ea0000c13d000001040650012a00000000051600a9000000000001004b000001e20000613d00000000071500d9000000000067004b000000ea0000c13d000000000014001a000000ea0000413d0000000001140019000000000021001a000000ea0000413d0000000001210019000000000131004b000000ea0000413d0000025f0000613d00000000011500d9000000800010043f000000f501000041000003510001042e0000001f0530018f000000d706300198000000400200043d0000000004620019000001fa0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000001f60000c13d000000000005004b000002070000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000000d50020009c000000d5020080410000004002200210000000000112019f000003520001043000000104067000d100000000077600d9000001040070009c000000ea0000c13d000000000014001a000000ea0000413d0000000007140019000000000027001a000000ea0000413d0000000007270019000000000737004b000000ea0000413d0000025f0000613d00000000077600d9000001040070009c00000104070080410000003406000039000000000806041a000000000687004b0000028d0000a13d0000003107000039000000000907041a00000000078900a9000000000008004b000002290000613d00000000088700d9000000000098004b000000ea0000c13d000001040770012a0000003208000039000000000808041a000000000078001a000000ea0000413d0000003309000039000000000a09041a00000000096a00a900000000066900d90000000000a6004b000000ea0000c13d0000000006780019000001040790012a000000000067001a000000ea0000413d000001d30000013d000000f80100004100000000001004430000000001000414000000d50010009c000000d501008041000000c001100210000000f9011001c70000800b020000390350034b0000040f0000000100200190000002650000613d000000000101043b000000d60000013d000000fc01000041000000000010043f0000005101000039000000040010043f000000fd010000410000035200010430000100000006001d000200000005001d000000f60100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000000d50010009c000000d501008041000000c001100210000000f7011001c700008005020000390350034b0000040f0000000100200190000002650000613d000000000101043b000000000001004b000002660000c13d000000fc01000041000000000010043f0000001201000039000000040010043f000000fd010000410000035200010430000000000001042f00000003021000f90000003203000039000000000023041b00000004031000f90000003104000039000000000034041b00000001011000f90000003304000039000000000014041b00000002060000290000003404000039000000000064041b000000400400043d0000006005400039000000000065043500000040054000390000000000150435000000200140003900000000003104350000000000240435000000d50040009c000000d50400804100000040014002100000000002000414000000d50020009c000000d502008041000000c002200210000000000112019f000000de011001c70000800d020000390000000103000039000000df04000041035003460000040f00000001002001900000028b0000613d0000000001000019000003510001042e00000000010000190000035200010430000000000007004b0000000006000019000001ce0000613d0000003106000039000000000806041a00000000067800a900000000077600d9000000000087004b000000ea0000c13d000001ce0000013d000001050010009c000002a50000213d000000830010008c000002a50000a13d00000001040003670000000401400370000000000101043b0000002402400370000000000202043b0000004403400370000000000303043b0000006404400370000000000404043b000000000001042d0000000001000019000003520001043000000000430104340000000001320436000000000003004b000002b30000613d000000000200001900000000052100190000000006240019000000000606043300000000006504350000002002200039000000000032004b000002ac0000413d000000000231001900000000000204350000001f0230003900000106022001970000000001210019000000000001042d000000000024001a000002d00000413d000000000624001a000002ce0000613d00000104056000d100000000066500d9000001040060009c000002d00000c13d000000000012001a000002d00000413d0000000001120019000000000041001a000002d00000413d0000000001410019000000000131004b000002d00000413d000002d60000613d00000000011500d9000001040010009c0000010401008041000000000001042d0000000001000019000000000001042d000000fc01000041000000000010043f0000001101000039000000040010043f000000fd010000410000035200010430000000fc01000041000000000010043f0000001201000039000000040010043f000000fd010000410000035200010430000000000024001a0000031b0000413d000000000624001a000003130000613d00000104056000d100000000066500d9000001040060009c0000031b0000c13d000000000012001a0000031b0000413d0000000001120019000000000041001a0000031b0000413d0000000001410019000000000131004b0000031b0000413d000003210000613d00000000021500d9000001040020009c00000104020080410000003401000039000000000301041a000000000132004b0000030a0000a13d0000003102000039000000000402041a00000000023400a9000000000003004b000002fc0000613d00000000033200d9000000000043004b0000031b0000c13d000001040220012a0000003203000039000000000303041a000000000023001a0000031b0000413d0000003304000039000000000504041a00000000041500a900000000011400d9000000000051004b0000031b0000c13d0000000001230019000001040240012a000003170000013d000000000002004b000003130000613d0000003101000039000000000301041a00000000012300a900000000022100d9000000000032004b000003140000613d0000031b0000013d0000000001000019000001040110012a0000003202000039000000000202041a000000000012001a0000031b0000413d0000000001120019000000000001042d000000fc01000041000000000010043f0000001101000039000000040010043f000000fd010000410000035200010430000000fc01000041000000000010043f0000001201000039000000040010043f000000fd010000410000035200010430000000000001042f00000000050100190000000000200443000000050030008c000003360000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b0000032e0000413d000000d50030009c000000d50300804100000060013002100000000002000414000000d50020009c000000d502008041000000c002200210000000000112019f00000107011001c700000000020500190350034b0000040f0000000100200190000003450000613d000000000101043b000000000001042d000000000001042f00000349002104210000000102000039000000000001042d0000000002000019000000000001042d0000034e002104230000000102000039000000000001042d0000000002000019000000000001042d0000035000000432000003510001042e0000035200010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff09c8f7ec0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000001e13380ae0fcab300000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000800000000000000000000000006960ab234c7ef4b0c9197100f5393cfcde7c453ac910a27bd2000aa1dd4c068d0000000200000000000000000000000000000100000001000000000000000000696e76616c69642041434d20616464726573730000000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000000000008726bb8800000000000000000000000000000000000000000000000000000000c7ad089400000000000000000000000000000000000000000000000000000000f14039dd00000000000000000000000000000000000000000000000000000000f14039de00000000000000000000000000000000000000000000000000000000fd2da33900000000000000000000000000000000000000000000000000000000c7ad089500000000000000000000000000000000000000000000000000000000e1d146fb000000000000000000000000000000000000000000000000000000008726bb8900000000000000000000000000000000000000000000000000000000b4a0bdf300000000000000000000000000000000000000000000000000000000b9f9850a000000000000000000000000000000000000000000000000000000002191f929000000000000000000000000000000000000000000000000000000002191f92a000000000000000000000000000000000000000000000000000000006857249c0000000000000000000000000000000000000000000000000000000070d3c43f00000000000000000000000000000000000000000000000000000000073b8a74000000000000000000000000000000000000000000000000000000000cde8d1c000000000000000000000000000000000000000000000000000000002037f3e70000000000000000000000000000000000000020000000800000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0200000200000000000000000000000000000044000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132020000020000000000000000000000000000000400000000000000000000000042cbb15ccdc3cad6266b0e7a08c0454b23bf29dc2df74b6f3c209e9336465bd100000000000000000000000000000000000000200000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000007570646174654a756d70526174654d6f64656c2875696e743235362c75696e743235362c75696e743235362c75696e743235362900000000000000000000000018c5e8ab0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4000000e000000000000000004a3fa293000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a76400010000000000000000000000000000000000000000000000000de0b6b3a76400007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00200000200000000000000000000000000000000000000000000000000000000e3bd261dd87c848e5c4d7311074df7f2e2d7ad3b54833a990d7bc5ba8f2de813",
458
+ "devdoc": {
459
+ "author": "Compound (modified by Dharma Labs, Arr00 and Venus)",
460
+ "kind": "dev",
461
+ "methods": {
462
+ "constructor": {
463
+ "params": {
464
+ "accessControlManager_": "The address of the AccessControlManager contract",
465
+ "baseRatePerYear_": "The approximate target base APR, as a mantissa (scaled by EXP_SCALE)",
466
+ "blocksPerYear_": "The number of blocks per year",
467
+ "jumpMultiplierPerYear_": "The multiplier after hitting a specified utilization point",
468
+ "kink_": "The utilization point at which the jump multiplier is applied",
469
+ "multiplierPerYear_": "The rate of increase in interest rate wrt utilization (scaled by EXP_SCALE)",
470
+ "timeBased_": "A boolean indicating whether the contract is based on time or block."
471
+ }
472
+ },
473
+ "getBlockNumberOrTimestamp()": {
474
+ "details": "Function to simply retrieve block number or block timestamp",
475
+ "returns": {
476
+ "_0": "Current block number or block timestamp"
477
+ }
478
+ },
479
+ "getBorrowRate(uint256,uint256,uint256,uint256)": {
480
+ "params": {
481
+ "badDebt": "The amount of badDebt in the market",
482
+ "borrows": "The amount of borrows in the market",
483
+ "cash": "The amount of cash in the market",
484
+ "reserves": "The amount of reserves in the market"
485
+ },
486
+ "returns": {
487
+ "_0": "The borrow rate percentage per slot (block or second) as a mantissa (scaled by 1e18)"
488
+ }
489
+ },
490
+ "getSupplyRate(uint256,uint256,uint256,uint256,uint256)": {
491
+ "params": {
492
+ "badDebt": "The amount of badDebt in the market",
493
+ "borrows": "The amount of borrows in the market",
494
+ "cash": "The amount of cash in the market",
495
+ "reserveFactorMantissa": "The current reserve factor for the market",
496
+ "reserves": "The amount of reserves in the market"
497
+ },
498
+ "returns": {
499
+ "_0": "The supply rate percentage per slot (block or second) as a mantissa (scaled by EXP_SCALE)"
500
+ }
501
+ },
502
+ "isInterestRateModel()": {
503
+ "returns": {
504
+ "_0": "Always true"
505
+ }
506
+ },
507
+ "updateJumpRateModel(uint256,uint256,uint256,uint256)": {
508
+ "custom:access": "Controlled by AccessControlManager",
509
+ "custom:error": "Unauthorized if the sender is not allowed to call this function",
510
+ "params": {
511
+ "baseRatePerYear": "The approximate target base APR, as a mantissa (scaled by EXP_SCALE)",
512
+ "jumpMultiplierPerYear": "The multiplierPerBlockOrTimestamp after hitting a specified utilization point",
513
+ "kink_": "The utilization point at which the jump multiplier is applied",
514
+ "multiplierPerYear": "The rate of increase in interest rate wrt utilization (scaled by EXP_SCALE)"
515
+ }
516
+ },
517
+ "utilizationRate(uint256,uint256,uint256,uint256)": {
518
+ "params": {
519
+ "badDebt": "The amount of badDebt in the market",
520
+ "borrows": "The amount of borrows in the market",
521
+ "cash": "The amount of cash in the market",
522
+ "reserves": "The amount of reserves in the market (currently unused)"
523
+ },
524
+ "returns": {
525
+ "_0": "The utilization rate as a mantissa between [0, MANTISSA_ONE]"
526
+ }
527
+ }
528
+ },
529
+ "title": "JumpRateModelV2",
530
+ "version": 1
531
+ },
532
+ "userdoc": {
533
+ "errors": {
534
+ "InvalidBlocksPerYear()": [
535
+ {
536
+ "notice": "Thrown when blocks per year is invalid"
537
+ }
538
+ ],
539
+ "InvalidTimeBasedConfiguration()": [
540
+ {
541
+ "notice": "Thrown when time based but blocks per year is provided"
542
+ }
543
+ ],
544
+ "Unauthorized(address,address,string)": [
545
+ {
546
+ "notice": "Thrown when the action is prohibited by AccessControlManager"
547
+ }
548
+ ]
549
+ },
550
+ "kind": "user",
551
+ "methods": {
552
+ "accessControlManager()": {
553
+ "notice": "The address of the AccessControlManager contract"
554
+ },
555
+ "baseRatePerBlock()": {
556
+ "notice": "The base interest rate per block or second which is the y-intercept when utilization rate is 0"
557
+ },
558
+ "blocksOrSecondsPerYear()": {
559
+ "notice": "Stores blocksPerYear if isTimeBased is true else secondsPerYear is stored"
560
+ },
561
+ "constructor": {
562
+ "notice": "Construct an interest rate model"
563
+ },
564
+ "getBorrowRate(uint256,uint256,uint256,uint256)": {
565
+ "notice": "Calculates the current borrow rate per slot (block or second)"
566
+ },
567
+ "getSupplyRate(uint256,uint256,uint256,uint256,uint256)": {
568
+ "notice": "Calculates the current supply rate per slot (block or second)"
569
+ },
570
+ "isInterestRateModel()": {
571
+ "notice": "Indicator that this is an InterestRateModel contract (for inspection)"
572
+ },
573
+ "isTimeBased()": {
574
+ "notice": "Acknowledges if a contract is time based or not"
575
+ },
576
+ "jumpMultiplierPerBlock()": {
577
+ "notice": "The multiplier per block or second after hitting a specified utilization point"
578
+ },
579
+ "kink()": {
580
+ "notice": "The utilization point at which the jump multiplier is applied"
581
+ },
582
+ "multiplierPerBlock()": {
583
+ "notice": "The multiplier of utilization rate per block or second that gives the slope of the interest rate"
584
+ },
585
+ "updateJumpRateModel(uint256,uint256,uint256,uint256)": {
586
+ "notice": "Update the parameters of the interest rate model"
587
+ },
588
+ "utilizationRate(uint256,uint256,uint256,uint256)": {
589
+ "notice": "Calculates the utilization rate of the market: `(borrows + badDebt) / (cash + borrows + badDebt - reserves)`"
590
+ }
591
+ },
592
+ "notice": "An interest rate model with a steep increase after a certain utilization threshold called **kink** is reached. The parameters of this interest rate model can be adjusted by the owner. Version 2 modifies Version 1 by enabling updateable parameters",
593
+ "version": 1
594
+ },
595
+ "storageLayout": {
596
+ "storage": [
597
+ {
598
+ "astId": 10243,
599
+ "contract": "contracts/JumpRateModelV2.sol:JumpRateModelV2",
600
+ "label": "__gap",
601
+ "offset": 0,
602
+ "slot": "0",
603
+ "type": "t_array(t_uint256)48_storage"
604
+ },
605
+ {
606
+ "astId": 22283,
607
+ "contract": "contracts/JumpRateModelV2.sol:JumpRateModelV2",
608
+ "label": "accessControlManager",
609
+ "offset": 0,
610
+ "slot": "48",
611
+ "type": "t_contract(IAccessControlManagerV8)7974"
612
+ },
613
+ {
614
+ "astId": 22286,
615
+ "contract": "contracts/JumpRateModelV2.sol:JumpRateModelV2",
616
+ "label": "multiplierPerBlock",
617
+ "offset": 0,
618
+ "slot": "49",
619
+ "type": "t_uint256"
620
+ },
621
+ {
622
+ "astId": 22289,
623
+ "contract": "contracts/JumpRateModelV2.sol:JumpRateModelV2",
624
+ "label": "baseRatePerBlock",
625
+ "offset": 0,
626
+ "slot": "50",
627
+ "type": "t_uint256"
628
+ },
629
+ {
630
+ "astId": 22292,
631
+ "contract": "contracts/JumpRateModelV2.sol:JumpRateModelV2",
632
+ "label": "jumpMultiplierPerBlock",
633
+ "offset": 0,
634
+ "slot": "51",
635
+ "type": "t_uint256"
636
+ },
637
+ {
638
+ "astId": 22295,
639
+ "contract": "contracts/JumpRateModelV2.sol:JumpRateModelV2",
640
+ "label": "kink",
641
+ "offset": 0,
642
+ "slot": "52",
643
+ "type": "t_uint256"
644
+ }
645
+ ],
646
+ "types": {
647
+ "t_array(t_uint256)48_storage": {
648
+ "base": "t_uint256",
649
+ "encoding": "inplace",
650
+ "label": "uint256[48]",
651
+ "numberOfBytes": "1536"
652
+ },
653
+ "t_contract(IAccessControlManagerV8)7974": {
654
+ "encoding": "inplace",
655
+ "label": "contract IAccessControlManagerV8",
656
+ "numberOfBytes": "20"
657
+ },
658
+ "t_uint256": {
659
+ "encoding": "inplace",
660
+ "label": "uint256",
661
+ "numberOfBytes": "32"
662
+ }
663
+ }
664
+ },
665
+ "factoryDeps": [
666
+ "0x00020000000000020008000000000002000100000001035500000000030100190000006003300270000000d5033001970000000100200190000000330000c13d0000008002000039000000400020043f000000040030008c0000028b0000413d000000000201043b000000e002200270000000e40020009c000000680000a13d000000e50020009c0000009c0000a13d000000e60020009c000000b40000213d000000e90020009c000000bd0000613d000000ea0020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d000000f601000041000000000010044300000000010004120000000400100443000000400100003900000024001004430000000001000414000000d50010009c000000d501008041000000c001100210000000f7011001c700008005020000390350034b0000040f0000000100200190000002650000613d000000000101043b000000010010008c000002390000613d000000020010008c000002460000c13d000000fa01000041000000000010044300000000010004140000023c0000013d0000000002000416000000000002004b0000028b0000c13d0000001f02300039000000d602200197000000e002200039000000400020043f0000001f0430018f000000d705300198000000e002500039000000440000613d000000e006000039000000000701034f000000007807043c0000000006860436000000000026004b000000400000c13d000000000004004b000000510000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000e00030008c0000028b0000413d000001600300043d000000d80030009c0000028b0000213d000001800700043d000000000007004b0000000001000039000000010100c039000000000017004b0000028b0000c13d000001400100043d000001200200043d000001000400043d000000e00600043d000001a00500043d000000000007004b0000011d0000613d000000000005004b000001220000c13d000000db0500004100000001080000390000012b0000013d000000ee0020009c000000a70000213d000000f20020009c000000d00000613d000000f30020009c000000dd0000613d000000f40020009c0000028b0000c13d000000840030008c0000028b0000413d0000000002000416000000000002004b0000028b0000c13d0000006402100370000000000502043b0000004402100370000000000602043b0000002402100370000000000202043b000400000002001d0000000401100370000000000101043b000300000001001d000000e001000039000000400010043f0000003407000039000000800070043f000000fe01000041000000a00010043f000000ff02000041000000c00020043f0000003003000039000000000303041a0000010004000041000000e00040043f0000000008000411000000e40080043f0000004004000039000001040040043f000001240070043f000001440010043f000001640020043f000001780000043f0000000001000414000000d802300197000000040020008c000001770000c13d0000000003000031000000200030008c00000020040000390000000004034019000001a10000013d000000eb0020009c000000f00000613d000000ec0020009c000000f50000613d000000ed0020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d0000003301000039000001190000013d000000ef0020009c000000fe0000613d000000f00020009c000001050000613d000000f10020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d0000000001030019035002970000040f035002b90000040f000000d60000013d000000e70020009c000001150000613d000000e80020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d0000003401000039000001190000013d0000000001000416000000000001004b0000028b0000c13d0000000001000412000600000001001d000500200000003d000080050100003900000044030000390000000004000415000000060440008a0000000504400210000000f602000041035003280000040f000000000001004b0000000001000039000000010100c039000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000000001030019035002970000040f035002dc0000040f000000400200043d0000000000120435000000d50020009c000000d5020080410000004001200210000000fb011001c7000003510001042e000000a40030008c0000028b0000413d0000000002000416000000000002004b0000028b0000c13d0000008402100370000000000202043b0000004403100370000000000303043b0000006404100370000000000504043b000001030050009c000001c50000413d000000fc01000041000000000010043f0000001101000039000000040010043f000000fd0100004100000352000104300000000001000416000000000001004b0000028b0000c13d0000003101000039000001190000013d0000000001000416000000000001004b0000028b0000c13d0000003001000039000000000101041a000000d801100197000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000000101000039000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000000001000412000800000001001d000700000000003d000080050100003900000044030000390000000004000415000000080440008a0000000504400210000000f602000041035003280000040f000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000003201000039000000000101041a000000800010043f000000f501000041000003510001042e000000000005004b0000012a0000c13d000000400100043d000000d902000041000001240000013d000000400100043d000000dc020000410000000000210435000000d50010009c000000d5010080410000004001100210000000da011001c700000352000104300000000208000039000000d809300198000000a00070043f000000800050043f000000c00080043f000000400300043d000001410000c13d0000004401300039000000e1020000410000000000210435000000240130003900000013020000390000000000210435000000e2010000410000000000130435000000040130003900000020020000390000000000210435000000d50030009c000000d5030080410000004001300210000000e3011001c700000352000104300000003007000039000000000807041a000000dd08800197000000000898019f000000000087041b00000000065600d90000003207000039000000000067041b00000000045400d90000003107000039000000000047041b00000000025200d90000003305000039000000000025041b0000003405000039000000000015041b0000006005300039000000000015043500000040013000390000000000210435000000200130003900000000004104350000000000630435000000d50030009c000000d50300804100000040013002100000000002000414000000d50020009c000000d502008041000000c002200210000000000112019f000000de011001c70000800d020000390000000103000039000000df04000041035003460000040f00000001002001900000028b0000613d000000800100043d00000140000004430000016000100443000000a00100043d00000020020000390000018000200443000001a000100443000000c00100043d0000004003000039000001c000300443000001e000100443000001000020044300000003010000390000012000100443000000e001000041000003510001042e000100000006001d000200000005001d000000d50010009c000000d501008041000000c00110021000000101011001c70350034b0000040f000000e00a00003900000000030100190000006003300270000000d503300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000e0057000390000018e0000613d000000000801034f000000008908043c000000000a9a043600000000005a004b0000018a0000c13d000000000006004b0000019b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00000001002001900000000008000411000001ef0000613d000000020500002900000001060000290000001f01400039000000600110018f000000e004100039000000400040043f000000200030008c0000028b0000413d000000e00200043d000000000002004b0000000003000039000000010300c039000000000032004b0000028b0000c13d000000000002004b0000024c0000c13d00000102020000410000000000240435000000e402100039000000000082043500000104021001bf0000000003000410000000000032043500000124021000390000006003000039000000000032043500000144021000390000008001000039000400000004001d035002a70000040f000000040200002900000000012100490000004002200210000000d50010009c000000d5010080410000006001100210000000000121019f00000352000104300000000404100370000000000404043b0000002401100370000000000101043b000000000021001a000000ea0000413d000000000721001a00000000060000190000020d0000c13d000001040660012a0000003207000039000000000707041a000000000067001a000000ea0000413d0000000006670019000001040750009900000000057600a9000000000006004b000001db0000613d00000000066500d9000000000076004b000000ea0000c13d000001040650012a00000000051600a9000000000001004b000001e20000613d00000000071500d9000000000067004b000000ea0000c13d000000000014001a000000ea0000413d0000000001140019000000000021001a000000ea0000413d0000000001210019000000000131004b000000ea0000413d0000025f0000613d00000000011500d9000000800010043f000000f501000041000003510001042e0000001f0530018f000000d706300198000000400200043d0000000004620019000001fa0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000001f60000c13d000000000005004b000002070000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000000d50020009c000000d5020080410000004002200210000000000112019f000003520001043000000104067000d100000000077600d9000001040070009c000000ea0000c13d000000000014001a000000ea0000413d0000000007140019000000000027001a000000ea0000413d0000000007270019000000000737004b000000ea0000413d0000025f0000613d00000000077600d9000001040070009c00000104070080410000003406000039000000000806041a000000000687004b0000028d0000a13d0000003107000039000000000907041a00000000078900a9000000000008004b000002290000613d00000000088700d9000000000098004b000000ea0000c13d000001040770012a0000003208000039000000000808041a000000000078001a000000ea0000413d0000003309000039000000000a09041a00000000096a00a900000000066900d90000000000a6004b000000ea0000c13d0000000006780019000001040790012a000000000067001a000000ea0000413d000001d30000013d000000f80100004100000000001004430000000001000414000000d50010009c000000d501008041000000c001100210000000f9011001c70000800b020000390350034b0000040f0000000100200190000002650000613d000000000101043b000000d60000013d000000fc01000041000000000010043f0000005101000039000000040010043f000000fd010000410000035200010430000100000006001d000200000005001d000000f60100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000000d50010009c000000d501008041000000c001100210000000f7011001c700008005020000390350034b0000040f0000000100200190000002650000613d000000000101043b000000000001004b000002660000c13d000000fc01000041000000000010043f0000001201000039000000040010043f000000fd010000410000035200010430000000000001042f00000003021000f90000003203000039000000000023041b00000004031000f90000003104000039000000000034041b00000001011000f90000003304000039000000000014041b00000002060000290000003404000039000000000064041b000000400400043d0000006005400039000000000065043500000040054000390000000000150435000000200140003900000000003104350000000000240435000000d50040009c000000d50400804100000040014002100000000002000414000000d50020009c000000d502008041000000c002200210000000000112019f000000de011001c70000800d020000390000000103000039000000df04000041035003460000040f00000001002001900000028b0000613d0000000001000019000003510001042e00000000010000190000035200010430000000000007004b0000000006000019000001ce0000613d0000003106000039000000000806041a00000000067800a900000000077600d9000000000087004b000000ea0000c13d000001ce0000013d000001050010009c000002a50000213d000000830010008c000002a50000a13d00000001040003670000000401400370000000000101043b0000002402400370000000000202043b0000004403400370000000000303043b0000006404400370000000000404043b000000000001042d0000000001000019000003520001043000000000430104340000000001320436000000000003004b000002b30000613d000000000200001900000000052100190000000006240019000000000606043300000000006504350000002002200039000000000032004b000002ac0000413d000000000231001900000000000204350000001f0230003900000106022001970000000001210019000000000001042d000000000024001a000002d00000413d000000000624001a000002ce0000613d00000104056000d100000000066500d9000001040060009c000002d00000c13d000000000012001a000002d00000413d0000000001120019000000000041001a000002d00000413d0000000001410019000000000131004b000002d00000413d000002d60000613d00000000011500d9000001040010009c0000010401008041000000000001042d0000000001000019000000000001042d000000fc01000041000000000010043f0000001101000039000000040010043f000000fd010000410000035200010430000000fc01000041000000000010043f0000001201000039000000040010043f000000fd010000410000035200010430000000000024001a0000031b0000413d000000000624001a000003130000613d00000104056000d100000000066500d9000001040060009c0000031b0000c13d000000000012001a0000031b0000413d0000000001120019000000000041001a0000031b0000413d0000000001410019000000000131004b0000031b0000413d000003210000613d00000000021500d9000001040020009c00000104020080410000003401000039000000000301041a000000000132004b0000030a0000a13d0000003102000039000000000402041a00000000023400a9000000000003004b000002fc0000613d00000000033200d9000000000043004b0000031b0000c13d000001040220012a0000003203000039000000000303041a000000000023001a0000031b0000413d0000003304000039000000000504041a00000000041500a900000000011400d9000000000051004b0000031b0000c13d0000000001230019000001040240012a000003170000013d000000000002004b000003130000613d0000003101000039000000000301041a00000000012300a900000000022100d9000000000032004b000003140000613d0000031b0000013d0000000001000019000001040110012a0000003202000039000000000202041a000000000012001a0000031b0000413d0000000001120019000000000001042d000000fc01000041000000000010043f0000001101000039000000040010043f000000fd010000410000035200010430000000fc01000041000000000010043f0000001201000039000000040010043f000000fd010000410000035200010430000000000001042f00000000050100190000000000200443000000050030008c000003360000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b0000032e0000413d000000d50030009c000000d50300804100000060013002100000000002000414000000d50020009c000000d502008041000000c002200210000000000112019f00000107011001c700000000020500190350034b0000040f0000000100200190000003450000613d000000000101043b000000000001042d000000000001042f00000349002104210000000102000039000000000001042d0000000002000019000000000001042d0000034e002104230000000102000039000000000001042d0000000002000019000000000001042d0000035000000432000003510001042e0000035200010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff09c8f7ec0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000001e13380ae0fcab300000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000800000000000000000000000006960ab234c7ef4b0c9197100f5393cfcde7c453ac910a27bd2000aa1dd4c068d0000000200000000000000000000000000000100000001000000000000000000696e76616c69642041434d20616464726573730000000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000000000008726bb8800000000000000000000000000000000000000000000000000000000c7ad089400000000000000000000000000000000000000000000000000000000f14039dd00000000000000000000000000000000000000000000000000000000f14039de00000000000000000000000000000000000000000000000000000000fd2da33900000000000000000000000000000000000000000000000000000000c7ad089500000000000000000000000000000000000000000000000000000000e1d146fb000000000000000000000000000000000000000000000000000000008726bb8900000000000000000000000000000000000000000000000000000000b4a0bdf300000000000000000000000000000000000000000000000000000000b9f9850a000000000000000000000000000000000000000000000000000000002191f929000000000000000000000000000000000000000000000000000000002191f92a000000000000000000000000000000000000000000000000000000006857249c0000000000000000000000000000000000000000000000000000000070d3c43f00000000000000000000000000000000000000000000000000000000073b8a74000000000000000000000000000000000000000000000000000000000cde8d1c000000000000000000000000000000000000000000000000000000002037f3e70000000000000000000000000000000000000020000000800000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0200000200000000000000000000000000000044000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132020000020000000000000000000000000000000400000000000000000000000042cbb15ccdc3cad6266b0e7a08c0454b23bf29dc2df74b6f3c209e9336465bd100000000000000000000000000000000000000200000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000007570646174654a756d70526174654d6f64656c2875696e743235362c75696e743235362c75696e743235362c75696e743235362900000000000000000000000018c5e8ab0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4000000e000000000000000004a3fa293000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a76400010000000000000000000000000000000000000000000000000de0b6b3a76400007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00200000200000000000000000000000000000000000000000000000000000000e3bd261dd87c848e5c4d7311074df7f2e2d7ad3b54833a990d7bc5ba8f2de813"
667
+ ]
668
+ }