|
9 | 9 | "type": "address", |
10 | 10 | "name": "_token" |
11 | 11 | }, |
12 | | - { |
13 | | - "type": "address", |
14 | | - "name": "_keepStakingContract" |
15 | | - }, |
16 | | - { |
17 | | - "type": "address", |
18 | | - "name": "_nucypherStakingContract" |
19 | | - }, |
20 | | - { |
21 | | - "type": "address", |
22 | | - "name": "_keepVendingMachine" |
23 | | - }, |
24 | 12 | { |
25 | 13 | "type": "address", |
26 | 14 | "name": "_nucypherVendingMachine" |
27 | | - }, |
28 | | - { |
29 | | - "type": "address", |
30 | | - "name": "_keepStake" |
31 | 15 | } |
32 | 16 | ] |
33 | 17 | }, |
|
173 | 157 | } |
174 | 158 | ] |
175 | 159 | }, |
| 160 | + { |
| 161 | + "type": "event", |
| 162 | + "anonymous": false, |
| 163 | + "name": "AutoIncreaseToggled", |
| 164 | + "inputs": [ |
| 165 | + { |
| 166 | + "type": "address", |
| 167 | + "name": "stakingProvider", |
| 168 | + "indexed": true |
| 169 | + }, |
| 170 | + { |
| 171 | + "type": "bool", |
| 172 | + "name": "autoIncrease", |
| 173 | + "indexed": false |
| 174 | + } |
| 175 | + ] |
| 176 | + }, |
176 | 177 | { |
177 | 178 | "type": "event", |
178 | 179 | "anonymous": false, |
|
304 | 305 | } |
305 | 306 | ] |
306 | 307 | }, |
307 | | - { |
308 | | - "type": "event", |
309 | | - "anonymous": false, |
310 | | - "name": "OwnerRefreshed", |
311 | | - "inputs": [ |
312 | | - { |
313 | | - "type": "address", |
314 | | - "name": "stakingProvider", |
315 | | - "indexed": true |
316 | | - }, |
317 | | - { |
318 | | - "type": "address", |
319 | | - "name": "oldOwner", |
320 | | - "indexed": true |
321 | | - }, |
322 | | - { |
323 | | - "type": "address", |
324 | | - "name": "newOwner", |
325 | | - "indexed": true |
326 | | - } |
327 | | - ] |
328 | | - }, |
329 | 308 | { |
330 | 309 | "type": "event", |
331 | 310 | "anonymous": false, |
|
365 | 344 | } |
366 | 345 | ] |
367 | 346 | }, |
368 | | - { |
369 | | - "type": "event", |
370 | | - "anonymous": false, |
371 | | - "name": "StakeDiscrepancyPenaltySet", |
372 | | - "inputs": [ |
373 | | - { |
374 | | - "type": "uint96", |
375 | | - "name": "penalty", |
376 | | - "indexed": false |
377 | | - }, |
378 | | - { |
379 | | - "type": "uint256", |
380 | | - "name": "rewardMultiplier", |
381 | | - "indexed": false |
382 | | - } |
383 | | - ] |
384 | | - }, |
385 | 347 | { |
386 | 348 | "type": "event", |
387 | 349 | "anonymous": false, |
|
677 | 639 | ], |
678 | 640 | "outputs": [] |
679 | 641 | }, |
| 642 | + { |
| 643 | + "type": "function", |
| 644 | + "name": "forceUnstakeLegacy", |
| 645 | + "constant": false, |
| 646 | + "payable": false, |
| 647 | + "inputs": [ |
| 648 | + { |
| 649 | + "type": "address", |
| 650 | + "name": "stakingProvider" |
| 651 | + } |
| 652 | + ], |
| 653 | + "outputs": [] |
| 654 | + }, |
| 655 | + { |
| 656 | + "type": "function", |
| 657 | + "name": "forceUnstakeLegacy", |
| 658 | + "constant": false, |
| 659 | + "payable": false, |
| 660 | + "inputs": [ |
| 661 | + { |
| 662 | + "type": "address[]", |
| 663 | + "name": "_stakingProviders" |
| 664 | + } |
| 665 | + ], |
| 666 | + "outputs": [] |
| 667 | + }, |
680 | 668 | { |
681 | 669 | "type": "function", |
682 | 670 | "name": "getApplicationsLength", |
|
690 | 678 | } |
691 | 679 | ] |
692 | 680 | }, |
| 681 | + { |
| 682 | + "type": "function", |
| 683 | + "name": "getAutoIncreaseFlag", |
| 684 | + "constant": true, |
| 685 | + "stateMutability": "view", |
| 686 | + "payable": false, |
| 687 | + "inputs": [ |
| 688 | + { |
| 689 | + "type": "address", |
| 690 | + "name": "stakingProvider" |
| 691 | + } |
| 692 | + ], |
| 693 | + "outputs": [ |
| 694 | + { |
| 695 | + "type": "bool" |
| 696 | + } |
| 697 | + ] |
| 698 | + }, |
693 | 699 | { |
694 | 700 | "type": "function", |
695 | 701 | "name": "getAvailableToAuthorize", |
|
905 | 911 | } |
906 | 912 | ] |
907 | 913 | }, |
908 | | - { |
909 | | - "type": "function", |
910 | | - "name": "notifyKeepStakeDiscrepancy", |
911 | | - "constant": false, |
912 | | - "payable": false, |
913 | | - "inputs": [ |
914 | | - { |
915 | | - "type": "address", |
916 | | - "name": "stakingProvider" |
917 | | - } |
918 | | - ], |
919 | | - "outputs": [] |
920 | | - }, |
921 | | - { |
922 | | - "type": "function", |
923 | | - "name": "notifyNuStakeDiscrepancy", |
924 | | - "constant": false, |
925 | | - "payable": false, |
926 | | - "inputs": [ |
927 | | - { |
928 | | - "type": "address", |
929 | | - "name": "stakingProvider" |
930 | | - } |
931 | | - ], |
932 | | - "outputs": [] |
933 | | - }, |
934 | 914 | { |
935 | 915 | "type": "function", |
936 | 916 | "name": "numCheckpoints", |
|
1130 | 1110 | ], |
1131 | 1111 | "outputs": [] |
1132 | 1112 | }, |
1133 | | - { |
1134 | | - "type": "function", |
1135 | | - "name": "setStakeDiscrepancyPenalty", |
1136 | | - "constant": false, |
1137 | | - "payable": false, |
1138 | | - "inputs": [ |
1139 | | - { |
1140 | | - "type": "uint96", |
1141 | | - "name": "penalty" |
1142 | | - }, |
1143 | | - { |
1144 | | - "type": "uint256", |
1145 | | - "name": "rewardMultiplier" |
1146 | | - } |
1147 | | - ], |
1148 | | - "outputs": [] |
1149 | | - }, |
1150 | 1113 | { |
1151 | 1114 | "type": "function", |
1152 | 1115 | "name": "slash", |
|
1224 | 1187 | ], |
1225 | 1188 | "outputs": [] |
1226 | 1189 | }, |
1227 | | - { |
1228 | | - "type": "function", |
1229 | | - "name": "stakeDiscrepancyPenalty", |
1230 | | - "constant": true, |
1231 | | - "stateMutability": "view", |
1232 | | - "payable": false, |
1233 | | - "inputs": [], |
1234 | | - "outputs": [ |
1235 | | - { |
1236 | | - "type": "uint96" |
1237 | | - } |
1238 | | - ] |
1239 | | - }, |
1240 | | - { |
1241 | | - "type": "function", |
1242 | | - "name": "stakeDiscrepancyRewardMultiplier", |
1243 | | - "constant": true, |
1244 | | - "stateMutability": "view", |
1245 | | - "payable": false, |
1246 | | - "inputs": [], |
1247 | | - "outputs": [ |
1248 | | - { |
1249 | | - "type": "uint256" |
1250 | | - } |
1251 | | - ] |
1252 | | - }, |
1253 | | - { |
1254 | | - "type": "function", |
1255 | | - "name": "stakeKeep", |
1256 | | - "constant": false, |
1257 | | - "payable": false, |
1258 | | - "inputs": [ |
1259 | | - { |
1260 | | - "type": "address", |
1261 | | - "name": "stakingProvider" |
1262 | | - } |
1263 | | - ], |
1264 | | - "outputs": [] |
1265 | | - }, |
1266 | | - { |
1267 | | - "type": "function", |
1268 | | - "name": "stakeNu", |
1269 | | - "constant": false, |
1270 | | - "payable": false, |
1271 | | - "inputs": [ |
1272 | | - { |
1273 | | - "type": "address", |
1274 | | - "name": "stakingProvider" |
1275 | | - }, |
1276 | | - { |
1277 | | - "type": "address", |
1278 | | - "name": "beneficiary" |
1279 | | - }, |
1280 | | - { |
1281 | | - "type": "address", |
1282 | | - "name": "authorizer" |
1283 | | - } |
1284 | | - ], |
1285 | | - "outputs": [] |
1286 | | - }, |
1287 | 1190 | { |
1288 | 1191 | "type": "function", |
1289 | 1192 | "name": "stakedNu", |
|
1332 | 1235 | }, |
1333 | 1236 | { |
1334 | 1237 | "type": "function", |
1335 | | - "name": "topUp", |
| 1238 | + "name": "toggleAutoAuthorizationIncrease", |
1336 | 1239 | "constant": false, |
1337 | 1240 | "payable": false, |
1338 | 1241 | "inputs": [ |
1339 | 1242 | { |
1340 | 1243 | "type": "address", |
1341 | 1244 | "name": "stakingProvider" |
1342 | | - }, |
1343 | | - { |
1344 | | - "type": "uint96", |
1345 | | - "name": "amount" |
1346 | 1245 | } |
1347 | 1246 | ], |
1348 | 1247 | "outputs": [] |
1349 | 1248 | }, |
1350 | 1249 | { |
1351 | 1250 | "type": "function", |
1352 | | - "name": "topUpKeep", |
| 1251 | + "name": "topUp", |
1353 | 1252 | "constant": false, |
1354 | 1253 | "payable": false, |
1355 | 1254 | "inputs": [ |
1356 | 1255 | { |
1357 | 1256 | "type": "address", |
1358 | 1257 | "name": "stakingProvider" |
1359 | | - } |
1360 | | - ], |
1361 | | - "outputs": [] |
1362 | | - }, |
1363 | | - { |
1364 | | - "type": "function", |
1365 | | - "name": "topUpNu", |
1366 | | - "constant": false, |
1367 | | - "payable": false, |
1368 | | - "inputs": [ |
| 1258 | + }, |
1369 | 1259 | { |
1370 | | - "type": "address", |
1371 | | - "name": "stakingProvider" |
| 1260 | + "type": "uint96", |
| 1261 | + "name": "amount" |
1372 | 1262 | } |
1373 | 1263 | ], |
1374 | 1264 | "outputs": [] |
|
1421 | 1311 | { |
1422 | 1312 | "type": "address", |
1423 | 1313 | "name": "stakingProvider" |
1424 | | - }, |
1425 | | - { |
1426 | | - "type": "uint96", |
1427 | | - "name": "amount" |
1428 | 1314 | } |
1429 | 1315 | ], |
1430 | 1316 | "outputs": [] |
|
0 commit comments