@curvefi/llamalend-api 1.0.2

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 (125) hide show
  1. package/.eslintrc.json +40 -0
  2. package/.github/workflows/lint.yml +15 -0
  3. package/.github/workflows/publish.yml +55 -0
  4. package/LICENSE +21 -0
  5. package/README.md +1976 -0
  6. package/lib/cache/index.d.ts +14 -0
  7. package/lib/cache/index.js +31 -0
  8. package/lib/constants/L2Networks.d.ts +1 -0
  9. package/lib/constants/L2Networks.js +1 -0
  10. package/lib/constants/abis/Controller.json +1027 -0
  11. package/lib/constants/abis/ERC20.json +222 -0
  12. package/lib/constants/abis/ERC4626.json +1674 -0
  13. package/lib/constants/abis/GaugeController.json +794 -0
  14. package/lib/constants/abis/GaugeFactoryMainnet.json +1 -0
  15. package/lib/constants/abis/GaugeFactorySidechain.json +475 -0
  16. package/lib/constants/abis/GaugeV5.json +958 -0
  17. package/lib/constants/abis/LeverageZap.json +35 -0
  18. package/lib/constants/abis/Llamma.json +984 -0
  19. package/lib/constants/abis/Minter.json +1 -0
  20. package/lib/constants/abis/MonetaryPolicy.json +221 -0
  21. package/lib/constants/abis/OneWayLendingFactoryABI.json +899 -0
  22. package/lib/constants/abis/SidechainGauge.json +939 -0
  23. package/lib/constants/abis/Vault.json +721 -0
  24. package/lib/constants/abis/crvUSD/DeleverageZap.json +248 -0
  25. package/lib/constants/abis/crvUSD/Factory.json +514 -0
  26. package/lib/constants/abis/crvUSD/HealthCalculatorZap.json +54 -0
  27. package/lib/constants/abis/crvUSD/LeverageZap.json +312 -0
  28. package/lib/constants/abis/crvUSD/MonetaryPolicy.json +294 -0
  29. package/lib/constants/abis/crvUSD/MonetaryPolicy2.json +299 -0
  30. package/lib/constants/abis/crvUSD/PegKeeper.json +411 -0
  31. package/lib/constants/abis/crvUSD/controller.json +991 -0
  32. package/lib/constants/abis/crvUSD/llamma.json +984 -0
  33. package/lib/constants/abis/gas_oracle_optimism.json +149 -0
  34. package/lib/constants/abis/gas_oracle_optimism_blob.json +203 -0
  35. package/lib/constants/aliases.d.ts +16 -0
  36. package/lib/constants/aliases.js +124 -0
  37. package/lib/constants/coins.d.ts +16 -0
  38. package/lib/constants/coins.js +24 -0
  39. package/lib/constants/llammas.d.ts +2 -0
  40. package/lib/constants/llammas.js +96 -0
  41. package/lib/constants/utils.d.ts +4 -0
  42. package/lib/constants/utils.js +27 -0
  43. package/lib/external-api.d.ts +13 -0
  44. package/lib/external-api.js +436 -0
  45. package/lib/index.d.ts +104 -0
  46. package/lib/index.js +123 -0
  47. package/lib/interfaces.d.ts +228 -0
  48. package/lib/interfaces.js +1 -0
  49. package/lib/lendMarkets/LendMarketTemplate.d.ts +510 -0
  50. package/lib/lendMarkets/LendMarketTemplate.js +4682 -0
  51. package/lib/lendMarkets/index.d.ts +3 -0
  52. package/lib/lendMarkets/index.js +3 -0
  53. package/lib/lendMarkets/lendMarketConstructor.d.ts +2 -0
  54. package/lib/lendMarkets/lendMarketConstructor.js +6 -0
  55. package/lib/llamalend.d.ts +80 -0
  56. package/lib/llamalend.js +878 -0
  57. package/lib/mintMarkets/MintMarketTemplate.d.ts +308 -0
  58. package/lib/mintMarkets/MintMarketTemplate.js +2998 -0
  59. package/lib/mintMarkets/index.d.ts +3 -0
  60. package/lib/mintMarkets/index.js +3 -0
  61. package/lib/mintMarkets/mintMarketConstructor.d.ts +2 -0
  62. package/lib/mintMarkets/mintMarketConstructor.js +4 -0
  63. package/lib/st-crvUSD.d.ts +35 -0
  64. package/lib/st-crvUSD.js +505 -0
  65. package/lib/utils.d.ts +58 -0
  66. package/lib/utils.js +661 -0
  67. package/package.json +42 -0
  68. package/src/cache/index.ts +41 -0
  69. package/src/constants/L2Networks.ts +1 -0
  70. package/src/constants/abis/Controller.json +1027 -0
  71. package/src/constants/abis/ERC20.json +222 -0
  72. package/src/constants/abis/ERC4626.json +1674 -0
  73. package/src/constants/abis/GaugeController.json +794 -0
  74. package/src/constants/abis/GaugeFactoryMainnet.json +1 -0
  75. package/src/constants/abis/GaugeFactorySidechain.json +475 -0
  76. package/src/constants/abis/GaugeV5.json +958 -0
  77. package/src/constants/abis/LeverageZap.json +35 -0
  78. package/src/constants/abis/Llamma.json +984 -0
  79. package/src/constants/abis/Minter.json +1 -0
  80. package/src/constants/abis/MonetaryPolicy.json +221 -0
  81. package/src/constants/abis/OneWayLendingFactoryABI.json +899 -0
  82. package/src/constants/abis/SidechainGauge.json +939 -0
  83. package/src/constants/abis/Vault.json +721 -0
  84. package/src/constants/abis/crvUSD/DeleverageZap.json +248 -0
  85. package/src/constants/abis/crvUSD/ERC20.json +222 -0
  86. package/src/constants/abis/crvUSD/Factory.json +514 -0
  87. package/src/constants/abis/crvUSD/HealthCalculatorZap.json +54 -0
  88. package/src/constants/abis/crvUSD/LeverageZap.json +312 -0
  89. package/src/constants/abis/crvUSD/MonetaryPolicy.json +294 -0
  90. package/src/constants/abis/crvUSD/MonetaryPolicy2.json +299 -0
  91. package/src/constants/abis/crvUSD/PegKeeper.json +411 -0
  92. package/src/constants/abis/crvUSD/controller.json +991 -0
  93. package/src/constants/abis/crvUSD/llamma.json +984 -0
  94. package/src/constants/abis/gas_oracle_optimism.json +149 -0
  95. package/src/constants/abis/gas_oracle_optimism_blob.json +203 -0
  96. package/src/constants/aliases.ts +141 -0
  97. package/src/constants/coins.ts +41 -0
  98. package/src/constants/llammas.ts +99 -0
  99. package/src/constants/utils.ts +33 -0
  100. package/src/external-api.ts +325 -0
  101. package/src/index.ts +128 -0
  102. package/src/interfaces.ts +237 -0
  103. package/src/lendMarkets/LendMarketTemplate.ts +3022 -0
  104. package/src/lendMarkets/index.ts +7 -0
  105. package/src/lendMarkets/lendMarketConstructor.ts +7 -0
  106. package/src/llamalend.ts +785 -0
  107. package/src/mintMarkets/MintMarketTemplate.ts +1781 -0
  108. package/src/mintMarkets/index.ts +7 -0
  109. package/src/mintMarkets/mintMarketConstructor.ts +5 -0
  110. package/src/st-crvUSD.ts +244 -0
  111. package/src/utils.ts +497 -0
  112. package/test/fetch.test.ts +152 -0
  113. package/test/general.test.ts +216 -0
  114. package/test/leverageBorrowMore.test.ts +245 -0
  115. package/test/leverageCreateLoan.test.ts +236 -0
  116. package/test/leverageRepay.test.ts +240 -0
  117. package/test/readme.test.ts +475 -0
  118. package/test/selfLiquidate.test.ts +57 -0
  119. package/test/selfLiquidateCrvUSD.test.ts +54 -0
  120. package/test/st_crvUSD.test.ts +68 -0
  121. package/test/swap.test.ts +62 -0
  122. package/test/swapCrvUSD.test.ts +56 -0
  123. package/test/vault.test.ts +112 -0
  124. package/tsconfig.build.json +10 -0
  125. package/tsconfig.json +72 -0
@@ -0,0 +1,299 @@
1
+ [
2
+ {
3
+ "name": "SetAdmin",
4
+ "inputs": [
5
+ {
6
+ "name": "admin",
7
+ "type": "address",
8
+ "indexed": false
9
+ }
10
+ ],
11
+ "anonymous": false,
12
+ "type": "event"
13
+ },
14
+ {
15
+ "name": "AddPegKeeper",
16
+ "inputs": [
17
+ {
18
+ "name": "peg_keeper",
19
+ "type": "address",
20
+ "indexed": true
21
+ }
22
+ ],
23
+ "anonymous": false,
24
+ "type": "event"
25
+ },
26
+ {
27
+ "name": "RemovePegKeeper",
28
+ "inputs": [
29
+ {
30
+ "name": "peg_keeper",
31
+ "type": "address",
32
+ "indexed": true
33
+ }
34
+ ],
35
+ "anonymous": false,
36
+ "type": "event"
37
+ },
38
+ {
39
+ "name": "SetRate",
40
+ "inputs": [
41
+ {
42
+ "name": "rate",
43
+ "type": "uint256",
44
+ "indexed": false
45
+ }
46
+ ],
47
+ "anonymous": false,
48
+ "type": "event"
49
+ },
50
+ {
51
+ "name": "SetSigma",
52
+ "inputs": [
53
+ {
54
+ "name": "sigma",
55
+ "type": "uint256",
56
+ "indexed": false
57
+ }
58
+ ],
59
+ "anonymous": false,
60
+ "type": "event"
61
+ },
62
+ {
63
+ "name": "SetTargetDebtFraction",
64
+ "inputs": [
65
+ {
66
+ "name": "target_debt_fraction",
67
+ "type": "uint256",
68
+ "indexed": false
69
+ }
70
+ ],
71
+ "anonymous": false,
72
+ "type": "event"
73
+ },
74
+ {
75
+ "stateMutability": "nonpayable",
76
+ "type": "constructor",
77
+ "inputs": [
78
+ {
79
+ "name": "admin",
80
+ "type": "address"
81
+ },
82
+ {
83
+ "name": "price_oracle",
84
+ "type": "address"
85
+ },
86
+ {
87
+ "name": "controller_factory",
88
+ "type": "address"
89
+ },
90
+ {
91
+ "name": "peg_keepers",
92
+ "type": "address[5]"
93
+ },
94
+ {
95
+ "name": "rate",
96
+ "type": "uint256"
97
+ },
98
+ {
99
+ "name": "sigma",
100
+ "type": "uint256"
101
+ },
102
+ {
103
+ "name": "target_debt_fraction",
104
+ "type": "uint256"
105
+ }
106
+ ],
107
+ "outputs": []
108
+ },
109
+ {
110
+ "stateMutability": "nonpayable",
111
+ "type": "function",
112
+ "name": "set_admin",
113
+ "inputs": [
114
+ {
115
+ "name": "admin",
116
+ "type": "address"
117
+ }
118
+ ],
119
+ "outputs": []
120
+ },
121
+ {
122
+ "stateMutability": "nonpayable",
123
+ "type": "function",
124
+ "name": "add_peg_keeper",
125
+ "inputs": [
126
+ {
127
+ "name": "pk",
128
+ "type": "address"
129
+ }
130
+ ],
131
+ "outputs": []
132
+ },
133
+ {
134
+ "stateMutability": "nonpayable",
135
+ "type": "function",
136
+ "name": "remove_peg_keeper",
137
+ "inputs": [
138
+ {
139
+ "name": "pk",
140
+ "type": "address"
141
+ }
142
+ ],
143
+ "outputs": []
144
+ },
145
+ {
146
+ "stateMutability": "view",
147
+ "type": "function",
148
+ "name": "rate",
149
+ "inputs": [
150
+ {
151
+ "name": "_for",
152
+ "type": "address"
153
+ }
154
+ ],
155
+ "outputs": [
156
+ {
157
+ "name": "",
158
+ "type": "uint256"
159
+ }
160
+ ]
161
+ },
162
+ {
163
+ "stateMutability": "nonpayable",
164
+ "type": "function",
165
+ "name": "rate_write",
166
+ "inputs": [],
167
+ "outputs": [
168
+ {
169
+ "name": "",
170
+ "type": "uint256"
171
+ }
172
+ ]
173
+ },
174
+ {
175
+ "stateMutability": "nonpayable",
176
+ "type": "function",
177
+ "name": "set_rate",
178
+ "inputs": [
179
+ {
180
+ "name": "rate",
181
+ "type": "uint256"
182
+ }
183
+ ],
184
+ "outputs": []
185
+ },
186
+ {
187
+ "stateMutability": "nonpayable",
188
+ "type": "function",
189
+ "name": "set_sigma",
190
+ "inputs": [
191
+ {
192
+ "name": "sigma",
193
+ "type": "uint256"
194
+ }
195
+ ],
196
+ "outputs": []
197
+ },
198
+ {
199
+ "stateMutability": "nonpayable",
200
+ "type": "function",
201
+ "name": "set_target_debt_fraction",
202
+ "inputs": [
203
+ {
204
+ "name": "target_debt_fraction",
205
+ "type": "uint256"
206
+ }
207
+ ],
208
+ "outputs": []
209
+ },
210
+ {
211
+ "stateMutability": "view",
212
+ "type": "function",
213
+ "name": "admin",
214
+ "inputs": [],
215
+ "outputs": [
216
+ {
217
+ "name": "",
218
+ "type": "address"
219
+ }
220
+ ]
221
+ },
222
+ {
223
+ "stateMutability": "view",
224
+ "type": "function",
225
+ "name": "rate0",
226
+ "inputs": [],
227
+ "outputs": [
228
+ {
229
+ "name": "",
230
+ "type": "uint256"
231
+ }
232
+ ]
233
+ },
234
+ {
235
+ "stateMutability": "view",
236
+ "type": "function",
237
+ "name": "sigma",
238
+ "inputs": [],
239
+ "outputs": [
240
+ {
241
+ "name": "",
242
+ "type": "int256"
243
+ }
244
+ ]
245
+ },
246
+ {
247
+ "stateMutability": "view",
248
+ "type": "function",
249
+ "name": "target_debt_fraction",
250
+ "inputs": [],
251
+ "outputs": [
252
+ {
253
+ "name": "",
254
+ "type": "uint256"
255
+ }
256
+ ]
257
+ },
258
+ {
259
+ "stateMutability": "view",
260
+ "type": "function",
261
+ "name": "peg_keepers",
262
+ "inputs": [
263
+ {
264
+ "name": "arg0",
265
+ "type": "uint256"
266
+ }
267
+ ],
268
+ "outputs": [
269
+ {
270
+ "name": "",
271
+ "type": "address"
272
+ }
273
+ ]
274
+ },
275
+ {
276
+ "stateMutability": "view",
277
+ "type": "function",
278
+ "name": "PRICE_ORACLE",
279
+ "inputs": [],
280
+ "outputs": [
281
+ {
282
+ "name": "",
283
+ "type": "address"
284
+ }
285
+ ]
286
+ },
287
+ {
288
+ "stateMutability": "view",
289
+ "type": "function",
290
+ "name": "CONTROLLER_FACTORY",
291
+ "inputs": [],
292
+ "outputs": [
293
+ {
294
+ "name": "",
295
+ "type": "address"
296
+ }
297
+ ]
298
+ }
299
+ ]
@@ -0,0 +1,411 @@
1
+ [
2
+ {
3
+ "name": "Provide",
4
+ "inputs": [
5
+ {
6
+ "name": "amount",
7
+ "type": "uint256",
8
+ "indexed": false
9
+ }
10
+ ],
11
+ "anonymous": false,
12
+ "type": "event"
13
+ },
14
+ {
15
+ "name": "Withdraw",
16
+ "inputs": [
17
+ {
18
+ "name": "amount",
19
+ "type": "uint256",
20
+ "indexed": false
21
+ }
22
+ ],
23
+ "anonymous": false,
24
+ "type": "event"
25
+ },
26
+ {
27
+ "name": "Profit",
28
+ "inputs": [
29
+ {
30
+ "name": "lp_amount",
31
+ "type": "uint256",
32
+ "indexed": false
33
+ }
34
+ ],
35
+ "anonymous": false,
36
+ "type": "event"
37
+ },
38
+ {
39
+ "name": "CommitNewReceiver",
40
+ "inputs": [
41
+ {
42
+ "name": "receiver",
43
+ "type": "address",
44
+ "indexed": false
45
+ }
46
+ ],
47
+ "anonymous": false,
48
+ "type": "event"
49
+ },
50
+ {
51
+ "name": "ApplyNewReceiver",
52
+ "inputs": [
53
+ {
54
+ "name": "receiver",
55
+ "type": "address",
56
+ "indexed": false
57
+ }
58
+ ],
59
+ "anonymous": false,
60
+ "type": "event"
61
+ },
62
+ {
63
+ "name": "CommitNewAdmin",
64
+ "inputs": [
65
+ {
66
+ "name": "admin",
67
+ "type": "address",
68
+ "indexed": false
69
+ }
70
+ ],
71
+ "anonymous": false,
72
+ "type": "event"
73
+ },
74
+ {
75
+ "name": "ApplyNewAdmin",
76
+ "inputs": [
77
+ {
78
+ "name": "admin",
79
+ "type": "address",
80
+ "indexed": false
81
+ }
82
+ ],
83
+ "anonymous": false,
84
+ "type": "event"
85
+ },
86
+ {
87
+ "name": "SetNewCallerShare",
88
+ "inputs": [
89
+ {
90
+ "name": "caller_share",
91
+ "type": "uint256",
92
+ "indexed": false
93
+ }
94
+ ],
95
+ "anonymous": false,
96
+ "type": "event"
97
+ },
98
+ {
99
+ "stateMutability": "nonpayable",
100
+ "type": "constructor",
101
+ "inputs": [
102
+ {
103
+ "name": "_pool",
104
+ "type": "address"
105
+ },
106
+ {
107
+ "name": "_index",
108
+ "type": "uint256"
109
+ },
110
+ {
111
+ "name": "_receiver",
112
+ "type": "address"
113
+ },
114
+ {
115
+ "name": "_caller_share",
116
+ "type": "uint256"
117
+ },
118
+ {
119
+ "name": "_factory",
120
+ "type": "address"
121
+ },
122
+ {
123
+ "name": "_aggregator",
124
+ "type": "address"
125
+ },
126
+ {
127
+ "name": "_admin",
128
+ "type": "address"
129
+ }
130
+ ],
131
+ "outputs": []
132
+ },
133
+ {
134
+ "stateMutability": "pure",
135
+ "type": "function",
136
+ "name": "factory",
137
+ "inputs": [],
138
+ "outputs": [
139
+ {
140
+ "name": "",
141
+ "type": "address"
142
+ }
143
+ ]
144
+ },
145
+ {
146
+ "stateMutability": "pure",
147
+ "type": "function",
148
+ "name": "pegged",
149
+ "inputs": [],
150
+ "outputs": [
151
+ {
152
+ "name": "",
153
+ "type": "address"
154
+ }
155
+ ]
156
+ },
157
+ {
158
+ "stateMutability": "pure",
159
+ "type": "function",
160
+ "name": "pool",
161
+ "inputs": [],
162
+ "outputs": [
163
+ {
164
+ "name": "",
165
+ "type": "address"
166
+ }
167
+ ]
168
+ },
169
+ {
170
+ "stateMutability": "pure",
171
+ "type": "function",
172
+ "name": "aggregator",
173
+ "inputs": [],
174
+ "outputs": [
175
+ {
176
+ "name": "",
177
+ "type": "address"
178
+ }
179
+ ]
180
+ },
181
+ {
182
+ "stateMutability": "view",
183
+ "type": "function",
184
+ "name": "calc_profit",
185
+ "inputs": [],
186
+ "outputs": [
187
+ {
188
+ "name": "",
189
+ "type": "uint256"
190
+ }
191
+ ]
192
+ },
193
+ {
194
+ "stateMutability": "view",
195
+ "type": "function",
196
+ "name": "estimate_caller_profit",
197
+ "inputs": [],
198
+ "outputs": [
199
+ {
200
+ "name": "",
201
+ "type": "uint256"
202
+ }
203
+ ]
204
+ },
205
+ {
206
+ "stateMutability": "nonpayable",
207
+ "type": "function",
208
+ "name": "update",
209
+ "inputs": [],
210
+ "outputs": [
211
+ {
212
+ "name": "",
213
+ "type": "uint256"
214
+ }
215
+ ]
216
+ },
217
+ {
218
+ "stateMutability": "nonpayable",
219
+ "type": "function",
220
+ "name": "update",
221
+ "inputs": [
222
+ {
223
+ "name": "_beneficiary",
224
+ "type": "address"
225
+ }
226
+ ],
227
+ "outputs": [
228
+ {
229
+ "name": "",
230
+ "type": "uint256"
231
+ }
232
+ ]
233
+ },
234
+ {
235
+ "stateMutability": "nonpayable",
236
+ "type": "function",
237
+ "name": "set_new_caller_share",
238
+ "inputs": [
239
+ {
240
+ "name": "_new_caller_share",
241
+ "type": "uint256"
242
+ }
243
+ ],
244
+ "outputs": []
245
+ },
246
+ {
247
+ "stateMutability": "nonpayable",
248
+ "type": "function",
249
+ "name": "withdraw_profit",
250
+ "inputs": [],
251
+ "outputs": [
252
+ {
253
+ "name": "",
254
+ "type": "uint256"
255
+ }
256
+ ]
257
+ },
258
+ {
259
+ "stateMutability": "nonpayable",
260
+ "type": "function",
261
+ "name": "commit_new_admin",
262
+ "inputs": [
263
+ {
264
+ "name": "_new_admin",
265
+ "type": "address"
266
+ }
267
+ ],
268
+ "outputs": []
269
+ },
270
+ {
271
+ "stateMutability": "nonpayable",
272
+ "type": "function",
273
+ "name": "apply_new_admin",
274
+ "inputs": [],
275
+ "outputs": []
276
+ },
277
+ {
278
+ "stateMutability": "nonpayable",
279
+ "type": "function",
280
+ "name": "commit_new_receiver",
281
+ "inputs": [
282
+ {
283
+ "name": "_new_receiver",
284
+ "type": "address"
285
+ }
286
+ ],
287
+ "outputs": []
288
+ },
289
+ {
290
+ "stateMutability": "nonpayable",
291
+ "type": "function",
292
+ "name": "apply_new_receiver",
293
+ "inputs": [],
294
+ "outputs": []
295
+ },
296
+ {
297
+ "stateMutability": "nonpayable",
298
+ "type": "function",
299
+ "name": "revert_new_options",
300
+ "inputs": [],
301
+ "outputs": []
302
+ },
303
+ {
304
+ "stateMutability": "view",
305
+ "type": "function",
306
+ "name": "last_change",
307
+ "inputs": [],
308
+ "outputs": [
309
+ {
310
+ "name": "",
311
+ "type": "uint256"
312
+ }
313
+ ]
314
+ },
315
+ {
316
+ "stateMutability": "view",
317
+ "type": "function",
318
+ "name": "debt",
319
+ "inputs": [],
320
+ "outputs": [
321
+ {
322
+ "name": "",
323
+ "type": "uint256"
324
+ }
325
+ ]
326
+ },
327
+ {
328
+ "stateMutability": "view",
329
+ "type": "function",
330
+ "name": "caller_share",
331
+ "inputs": [],
332
+ "outputs": [
333
+ {
334
+ "name": "",
335
+ "type": "uint256"
336
+ }
337
+ ]
338
+ },
339
+ {
340
+ "stateMutability": "view",
341
+ "type": "function",
342
+ "name": "admin",
343
+ "inputs": [],
344
+ "outputs": [
345
+ {
346
+ "name": "",
347
+ "type": "address"
348
+ }
349
+ ]
350
+ },
351
+ {
352
+ "stateMutability": "view",
353
+ "type": "function",
354
+ "name": "future_admin",
355
+ "inputs": [],
356
+ "outputs": [
357
+ {
358
+ "name": "",
359
+ "type": "address"
360
+ }
361
+ ]
362
+ },
363
+ {
364
+ "stateMutability": "view",
365
+ "type": "function",
366
+ "name": "receiver",
367
+ "inputs": [],
368
+ "outputs": [
369
+ {
370
+ "name": "",
371
+ "type": "address"
372
+ }
373
+ ]
374
+ },
375
+ {
376
+ "stateMutability": "view",
377
+ "type": "function",
378
+ "name": "future_receiver",
379
+ "inputs": [],
380
+ "outputs": [
381
+ {
382
+ "name": "",
383
+ "type": "address"
384
+ }
385
+ ]
386
+ },
387
+ {
388
+ "stateMutability": "view",
389
+ "type": "function",
390
+ "name": "new_admin_deadline",
391
+ "inputs": [],
392
+ "outputs": [
393
+ {
394
+ "name": "",
395
+ "type": "uint256"
396
+ }
397
+ ]
398
+ },
399
+ {
400
+ "stateMutability": "view",
401
+ "type": "function",
402
+ "name": "new_receiver_deadline",
403
+ "inputs": [],
404
+ "outputs": [
405
+ {
406
+ "name": "",
407
+ "type": "uint256"
408
+ }
409
+ ]
410
+ }
411
+ ]