@lidofinance/lsv-cli 1.0.0-alpha.13 → 1.0.0-alpha.15

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 (143) hide show
  1. package/README.md +244 -120
  2. package/dist/abi/CLProofVerifier.js +279 -0
  3. package/dist/abi/CLProofVerifier.js.map +1 -0
  4. package/dist/abi/Dashboard.js +1060 -942
  5. package/dist/abi/Dashboard.js.map +1 -1
  6. package/dist/abi/Delegation.js +1260 -1129
  7. package/dist/abi/Delegation.js.map +1 -1
  8. package/dist/abi/LidoLocator.js +311 -270
  9. package/dist/abi/LidoLocator.js.map +1 -1
  10. package/dist/abi/PredepositGuarantee.js +1733 -0
  11. package/dist/abi/PredepositGuarantee.js.map +1 -0
  12. package/dist/abi/StakingVault.js +723 -528
  13. package/dist/abi/StakingVault.js.map +1 -1
  14. package/dist/abi/VaultFactory.js +164 -144
  15. package/dist/abi/VaultFactory.js.map +1 -1
  16. package/dist/abi/VaultHubViewer.js +297 -0
  17. package/dist/abi/VaultHubViewer.js.map +1 -0
  18. package/dist/abi/index.js +12 -9
  19. package/dist/abi/index.js.map +1 -1
  20. package/dist/configs/constants.js +2 -2
  21. package/dist/configs/constants.js.map +1 -1
  22. package/dist/contracts/clProofVerifier.js +29 -0
  23. package/dist/contracts/clProofVerifier.js.map +1 -0
  24. package/dist/contracts/dashboard.js.map +1 -1
  25. package/dist/contracts/index.js +12 -9
  26. package/dist/contracts/index.js.map +1 -1
  27. package/dist/contracts/locator.js +2 -2
  28. package/dist/contracts/locator.js.map +1 -1
  29. package/dist/contracts/pdg.js +17 -0
  30. package/dist/contracts/pdg.js.map +1 -0
  31. package/dist/contracts/vault-factory.js +5 -9
  32. package/dist/contracts/vault-factory.js.map +1 -1
  33. package/dist/contracts/vault-hub-viewer.js +14 -0
  34. package/dist/contracts/vault-hub-viewer.js.map +1 -0
  35. package/dist/features/dashboard-delegation.js +4 -1
  36. package/dist/features/dashboard-delegation.js.map +1 -1
  37. package/dist/features/vault-factory.js +6 -10
  38. package/dist/features/vault-factory.js.map +1 -1
  39. package/dist/features/voting.js +6 -14
  40. package/dist/features/voting.js.map +1 -1
  41. package/dist/index.js +6 -3
  42. package/dist/index.js.map +1 -1
  43. package/dist/programs/account.js +3 -1
  44. package/dist/programs/account.js.map +1 -1
  45. package/dist/programs/dashboard/config.js +65 -0
  46. package/dist/programs/dashboard/config.js.map +1 -0
  47. package/dist/programs/dashboard/index.js +4 -0
  48. package/dist/programs/dashboard/index.js.map +1 -0
  49. package/dist/programs/dashboard/main.js +12 -0
  50. package/dist/programs/dashboard/main.js.map +1 -0
  51. package/dist/programs/dashboard/read.js +25 -0
  52. package/dist/programs/dashboard/read.js.map +1 -0
  53. package/dist/programs/{dashboard.js → dashboard/write.js} +78 -136
  54. package/dist/programs/dashboard/write.js.map +1 -0
  55. package/dist/programs/delegation/config.js +33 -0
  56. package/dist/programs/delegation/config.js.map +1 -0
  57. package/dist/programs/delegation/index.js +4 -0
  58. package/dist/programs/delegation/index.js.map +1 -0
  59. package/dist/programs/delegation/main.js +12 -0
  60. package/dist/programs/delegation/main.js.map +1 -0
  61. package/dist/programs/delegation/read.js +98 -0
  62. package/dist/programs/delegation/read.js.map +1 -0
  63. package/dist/programs/delegation/write.js +327 -0
  64. package/dist/programs/delegation/write.js.map +1 -0
  65. package/dist/programs/index.js +7 -4
  66. package/dist/programs/index.js.map +1 -1
  67. package/dist/programs/pdg/config.js +2 -0
  68. package/dist/programs/pdg/config.js.map +1 -0
  69. package/dist/programs/pdg/index.js +4 -0
  70. package/dist/programs/pdg/index.js.map +1 -0
  71. package/dist/programs/pdg/main.js +12 -0
  72. package/dist/programs/pdg/main.js.map +1 -0
  73. package/dist/programs/pdg/read.js +7 -0
  74. package/dist/programs/pdg/read.js.map +1 -0
  75. package/dist/programs/pdg/write.js +64 -0
  76. package/dist/programs/pdg/write.js.map +1 -0
  77. package/dist/programs/pdg-helpers.js +73 -0
  78. package/dist/programs/pdg-helpers.js.map +1 -0
  79. package/dist/programs/vault/config.js +66 -0
  80. package/dist/programs/vault/config.js.map +1 -0
  81. package/dist/programs/vault/index.js +4 -0
  82. package/dist/programs/vault/index.js.map +1 -0
  83. package/dist/programs/vault/main.js +10 -0
  84. package/dist/programs/vault/main.js.map +1 -0
  85. package/dist/programs/vault/read.js +53 -0
  86. package/dist/programs/vault/read.js.map +1 -0
  87. package/dist/programs/vault/write.js +123 -0
  88. package/dist/programs/vault/write.js.map +1 -0
  89. package/dist/programs/vault-factory/config.js +2 -0
  90. package/dist/programs/vault-factory/config.js.map +1 -0
  91. package/dist/programs/vault-factory/index.js +4 -0
  92. package/dist/programs/vault-factory/index.js.map +1 -0
  93. package/dist/programs/vault-factory/main.js +12 -0
  94. package/dist/programs/vault-factory/main.js.map +1 -0
  95. package/dist/programs/vault-factory/read.js +26 -0
  96. package/dist/programs/vault-factory/read.js.map +1 -0
  97. package/dist/programs/{vault-factory.js → vault-factory/write.js} +22 -37
  98. package/dist/programs/vault-factory/write.js.map +1 -0
  99. package/dist/programs/vault-hub-viewer.js +52 -0
  100. package/dist/programs/vault-hub-viewer.js.map +1 -0
  101. package/dist/programs/vault-hub.js +20 -52
  102. package/dist/programs/vault-hub.js.map +1 -1
  103. package/dist/programs/voting.js +11 -33
  104. package/dist/programs/voting.js.map +1 -1
  105. package/dist/utils/contract.js +63 -2
  106. package/dist/utils/contract.js.map +1 -1
  107. package/dist/utils/get-commands.js +11 -0
  108. package/dist/utils/get-commands.js.map +1 -0
  109. package/dist/utils/index.js +5 -0
  110. package/dist/utils/index.js.map +1 -1
  111. package/dist/utils/prompts/default.js +17 -0
  112. package/dist/utils/prompts/default.js.map +1 -0
  113. package/dist/utils/prompts/delegation-dashboard.js +29 -0
  114. package/dist/utils/prompts/delegation-dashboard.js.map +1 -0
  115. package/dist/utils/prompts/index.js +4 -0
  116. package/dist/utils/prompts/index.js.map +1 -0
  117. package/dist/utils/prompts/predeposit-guarantee.js +25 -0
  118. package/dist/utils/prompts/predeposit-guarantee.js.map +1 -0
  119. package/dist/utils/proof/create-proof.js +62 -0
  120. package/dist/utils/proof/create-proof.js.map +1 -0
  121. package/dist/utils/proof/first-validator-gindex.js +26 -0
  122. package/dist/utils/proof/first-validator-gindex.js.map +1 -0
  123. package/dist/utils/proof/index.js +4 -0
  124. package/dist/utils/proof/index.js.map +1 -0
  125. package/dist/utils/proof/merkle-utils.js +131 -0
  126. package/dist/utils/proof/merkle-utils.js.map +1 -0
  127. package/dist/utils/proof/proofs.js +52 -0
  128. package/dist/utils/proof/proofs.js.map +1 -0
  129. package/dist/utils/read-programs-by-abi.js +83 -0
  130. package/dist/utils/read-programs-by-abi.js.map +1 -0
  131. package/dist/utils/spinner/index.js +2 -0
  132. package/dist/utils/spinner/index.js.map +1 -0
  133. package/dist/utils/spinner/spinners.js +16 -0
  134. package/dist/utils/spinner/spinners.js.map +1 -0
  135. package/dist/utils/spinner/spinners.json +119 -0
  136. package/dist/version/index.js +1 -1
  137. package/package.json +11 -4
  138. package/dist/programs/dashboard.js.map +0 -1
  139. package/dist/programs/delegation.js +0 -581
  140. package/dist/programs/delegation.js.map +0 -1
  141. package/dist/programs/vault-factory.js.map +0 -1
  142. package/dist/programs/vault.js +0 -375
  143. package/dist/programs/vault.js.map +0 -1
@@ -1,1655 +1,1786 @@
1
1
  export const DelegationAbi = [
2
2
  {
3
- "inputs": [
3
+ inputs: [
4
4
  {
5
- "internalType": "address",
6
- "name": "_weth",
7
- "type": "address"
5
+ internalType: 'address',
6
+ name: '_weth',
7
+ type: 'address',
8
8
  },
9
9
  {
10
- "internalType": "address",
11
- "name": "_lidoLocator",
12
- "type": "address"
13
- }
10
+ internalType: 'address',
11
+ name: '_lidoLocator',
12
+ type: 'address',
13
+ },
14
14
  ],
15
- "stateMutability": "nonpayable",
16
- "type": "constructor"
15
+ stateMutability: 'nonpayable',
16
+ type: 'constructor',
17
17
  },
18
18
  {
19
- "inputs": [],
20
- "name": "AccessControlBadConfirmation",
21
- "type": "error"
19
+ inputs: [],
20
+ name: 'AccessControlBadConfirmation',
21
+ type: 'error',
22
22
  },
23
23
  {
24
- "inputs": [
24
+ inputs: [
25
25
  {
26
- "internalType": "address",
27
- "name": "account",
28
- "type": "address"
26
+ internalType: 'address',
27
+ name: 'account',
28
+ type: 'address',
29
29
  },
30
30
  {
31
- "internalType": "bytes32",
32
- "name": "neededRole",
33
- "type": "bytes32"
34
- }
31
+ internalType: 'bytes32',
32
+ name: 'neededRole',
33
+ type: 'bytes32',
34
+ },
35
35
  ],
36
- "name": "AccessControlUnauthorizedAccount",
37
- "type": "error"
36
+ name: 'AccessControlUnauthorizedAccount',
37
+ type: 'error',
38
+ },
39
+ {
40
+ inputs: [],
41
+ name: 'AlreadyInitialized',
42
+ type: 'error',
38
43
  },
39
44
  {
40
- "inputs": [],
41
- "name": "AlreadyInitialized",
42
- "type": "error"
45
+ inputs: [],
46
+ name: 'CombinedFeesExceed100Percent',
47
+ type: 'error',
43
48
  },
44
49
  {
45
- "inputs": [],
46
- "name": "CombinedFeesExceed100Percent",
47
- "type": "error"
50
+ inputs: [],
51
+ name: 'ConfirmExpiryOutOfBounds',
52
+ type: 'error',
48
53
  },
49
54
  {
50
- "inputs": [],
51
- "name": "CuratorFeeUnclaimed",
52
- "type": "error"
55
+ inputs: [],
56
+ name: 'CuratorFeeUnclaimed',
57
+ type: 'error',
53
58
  },
54
59
  {
55
- "inputs": [
60
+ inputs: [
56
61
  {
57
- "internalType": "address",
58
- "name": "recipient",
59
- "type": "address"
62
+ internalType: 'address',
63
+ name: 'recipient',
64
+ type: 'address',
60
65
  },
61
66
  {
62
- "internalType": "uint256",
63
- "name": "amount",
64
- "type": "uint256"
65
- }
67
+ internalType: 'uint256',
68
+ name: 'amount',
69
+ type: 'uint256',
70
+ },
66
71
  ],
67
- "name": "EthTransferFailed",
68
- "type": "error"
72
+ name: 'EthTransferFailed',
73
+ type: 'error',
69
74
  },
70
75
  {
71
- "inputs": [
76
+ inputs: [
72
77
  {
73
- "internalType": "address",
74
- "name": "token",
75
- "type": "address"
76
- }
78
+ internalType: 'address',
79
+ name: 'token',
80
+ type: 'address',
81
+ },
77
82
  ],
78
- "name": "InvalidPermit",
79
- "type": "error"
83
+ name: 'InvalidPermit',
84
+ type: 'error',
80
85
  },
81
86
  {
82
- "inputs": [],
83
- "name": "NodeOperatorFeeUnclaimed",
84
- "type": "error"
87
+ inputs: [],
88
+ name: 'NodeOperatorFeeUnclaimed',
89
+ type: 'error',
85
90
  },
86
91
  {
87
- "inputs": [],
88
- "name": "NonProxyCallsForbidden",
89
- "type": "error"
92
+ inputs: [],
93
+ name: 'NonProxyCallsForbidden',
94
+ type: 'error',
90
95
  },
91
96
  {
92
- "inputs": [],
93
- "name": "NotACommitteeMember",
94
- "type": "error"
97
+ inputs: [],
98
+ name: 'RequestedAmountExceedsUnreserved',
99
+ type: 'error',
95
100
  },
96
101
  {
97
- "inputs": [],
98
- "name": "RequestedAmountExceedsUnreserved",
99
- "type": "error"
100
- },
101
- {
102
- "inputs": [
102
+ inputs: [
103
103
  {
104
- "internalType": "address",
105
- "name": "token",
106
- "type": "address"
107
- }
104
+ internalType: 'address',
105
+ name: 'token',
106
+ type: 'address',
107
+ },
108
108
  ],
109
- "name": "SafeERC20FailedOperation",
110
- "type": "error"
109
+ name: 'SafeERC20FailedOperation',
110
+ type: 'error',
111
111
  },
112
112
  {
113
- "inputs": [],
114
- "name": "VoteLifetimeCannotBeZero",
115
- "type": "error"
113
+ inputs: [],
114
+ name: 'SenderNotMember',
115
+ type: 'error',
116
+ },
117
+ {
118
+ inputs: [
119
+ {
120
+ internalType: 'string',
121
+ name: 'argument',
122
+ type: 'string',
123
+ },
124
+ ],
125
+ name: 'ZeroArgument',
126
+ type: 'error',
116
127
  },
117
128
  {
118
- "inputs": [],
119
- "name": "VoteLifetimeNotSet",
120
- "type": "error"
129
+ inputs: [],
130
+ name: 'ZeroConfirmingRoles',
131
+ type: 'error',
121
132
  },
122
133
  {
123
- "inputs": [
134
+ anonymous: false,
135
+ inputs: [
136
+ {
137
+ indexed: true,
138
+ internalType: 'address',
139
+ name: 'sender',
140
+ type: 'address',
141
+ },
142
+ {
143
+ indexed: false,
144
+ internalType: 'uint256',
145
+ name: 'oldConfirmExpiry',
146
+ type: 'uint256',
147
+ },
124
148
  {
125
- "internalType": "string",
126
- "name": "argument",
127
- "type": "string"
128
- }
149
+ indexed: false,
150
+ internalType: 'uint256',
151
+ name: 'newConfirmExpiry',
152
+ type: 'uint256',
153
+ },
129
154
  ],
130
- "name": "ZeroArgument",
131
- "type": "error"
155
+ name: 'ConfirmExpirySet',
156
+ type: 'event',
132
157
  },
133
158
  {
134
- "anonymous": false,
135
- "inputs": [
159
+ anonymous: false,
160
+ inputs: [
136
161
  {
137
- "indexed": true,
138
- "internalType": "address",
139
- "name": "sender",
140
- "type": "address"
162
+ indexed: true,
163
+ internalType: 'address',
164
+ name: 'sender',
165
+ type: 'address',
141
166
  },
142
167
  {
143
- "indexed": false,
144
- "internalType": "uint256",
145
- "name": "oldCuratorFeeBP",
146
- "type": "uint256"
168
+ indexed: false,
169
+ internalType: 'uint256',
170
+ name: 'oldCuratorFeeBP',
171
+ type: 'uint256',
147
172
  },
148
173
  {
149
- "indexed": false,
150
- "internalType": "uint256",
151
- "name": "newCuratorFeeBP",
152
- "type": "uint256"
153
- }
174
+ indexed: false,
175
+ internalType: 'uint256',
176
+ name: 'newCuratorFeeBP',
177
+ type: 'uint256',
178
+ },
154
179
  ],
155
- "name": "CuratorFeeBPSet",
156
- "type": "event"
180
+ name: 'CuratorFeeBPSet',
181
+ type: 'event',
157
182
  },
158
183
  {
159
- "anonymous": false,
160
- "inputs": [
184
+ anonymous: false,
185
+ inputs: [
161
186
  {
162
- "indexed": true,
163
- "internalType": "address",
164
- "name": "to",
165
- "type": "address"
187
+ indexed: true,
188
+ internalType: 'address',
189
+ name: 'to',
190
+ type: 'address',
166
191
  },
167
192
  {
168
- "indexed": true,
169
- "internalType": "address",
170
- "name": "token",
171
- "type": "address"
193
+ indexed: true,
194
+ internalType: 'address',
195
+ name: 'token',
196
+ type: 'address',
172
197
  },
173
198
  {
174
- "indexed": false,
175
- "internalType": "uint256",
176
- "name": "amount",
177
- "type": "uint256"
178
- }
199
+ indexed: false,
200
+ internalType: 'uint256',
201
+ name: 'amount',
202
+ type: 'uint256',
203
+ },
179
204
  ],
180
- "name": "ERC20Recovered",
181
- "type": "event"
205
+ name: 'ERC20Recovered',
206
+ type: 'event',
182
207
  },
183
208
  {
184
- "anonymous": false,
185
- "inputs": [
209
+ anonymous: false,
210
+ inputs: [
186
211
  {
187
- "indexed": true,
188
- "internalType": "address",
189
- "name": "to",
190
- "type": "address"
212
+ indexed: true,
213
+ internalType: 'address',
214
+ name: 'to',
215
+ type: 'address',
191
216
  },
192
217
  {
193
- "indexed": true,
194
- "internalType": "address",
195
- "name": "token",
196
- "type": "address"
218
+ indexed: true,
219
+ internalType: 'address',
220
+ name: 'token',
221
+ type: 'address',
197
222
  },
198
223
  {
199
- "indexed": false,
200
- "internalType": "uint256",
201
- "name": "tokenId",
202
- "type": "uint256"
203
- }
224
+ indexed: false,
225
+ internalType: 'uint256',
226
+ name: 'tokenId',
227
+ type: 'uint256',
228
+ },
204
229
  ],
205
- "name": "ERC721Recovered",
206
- "type": "event"
230
+ name: 'ERC721Recovered',
231
+ type: 'event',
207
232
  },
208
233
  {
209
- "anonymous": false,
210
- "inputs": [],
211
- "name": "Initialized",
212
- "type": "event"
234
+ anonymous: false,
235
+ inputs: [
236
+ {
237
+ indexed: false,
238
+ internalType: 'address',
239
+ name: '_defaultAdmin',
240
+ type: 'address',
241
+ },
242
+ ],
243
+ name: 'Initialized',
244
+ type: 'event',
213
245
  },
214
246
  {
215
- "anonymous": false,
216
- "inputs": [
247
+ anonymous: false,
248
+ inputs: [
217
249
  {
218
- "indexed": true,
219
- "internalType": "address",
220
- "name": "sender",
221
- "type": "address"
250
+ indexed: true,
251
+ internalType: 'address',
252
+ name: 'sender',
253
+ type: 'address',
222
254
  },
223
255
  {
224
- "indexed": false,
225
- "internalType": "uint256",
226
- "name": "oldNodeOperatorFeeBP",
227
- "type": "uint256"
256
+ indexed: false,
257
+ internalType: 'uint256',
258
+ name: 'oldNodeOperatorFeeBP',
259
+ type: 'uint256',
228
260
  },
229
261
  {
230
- "indexed": false,
231
- "internalType": "uint256",
232
- "name": "newNodeOperatorFeeBP",
233
- "type": "uint256"
234
- }
262
+ indexed: false,
263
+ internalType: 'uint256',
264
+ name: 'newNodeOperatorFeeBP',
265
+ type: 'uint256',
266
+ },
235
267
  ],
236
- "name": "NodeOperatorFeeBPSet",
237
- "type": "event"
268
+ name: 'NodeOperatorFeeBPSet',
269
+ type: 'event',
238
270
  },
239
271
  {
240
- "anonymous": false,
241
- "inputs": [
272
+ anonymous: false,
273
+ inputs: [
242
274
  {
243
- "indexed": true,
244
- "internalType": "bytes32",
245
- "name": "role",
246
- "type": "bytes32"
275
+ indexed: true,
276
+ internalType: 'bytes32',
277
+ name: 'role',
278
+ type: 'bytes32',
247
279
  },
248
280
  {
249
- "indexed": true,
250
- "internalType": "bytes32",
251
- "name": "previousAdminRole",
252
- "type": "bytes32"
281
+ indexed: true,
282
+ internalType: 'bytes32',
283
+ name: 'previousAdminRole',
284
+ type: 'bytes32',
253
285
  },
254
286
  {
255
- "indexed": true,
256
- "internalType": "bytes32",
257
- "name": "newAdminRole",
258
- "type": "bytes32"
259
- }
287
+ indexed: true,
288
+ internalType: 'bytes32',
289
+ name: 'newAdminRole',
290
+ type: 'bytes32',
291
+ },
260
292
  ],
261
- "name": "RoleAdminChanged",
262
- "type": "event"
293
+ name: 'RoleAdminChanged',
294
+ type: 'event',
263
295
  },
264
296
  {
265
- "anonymous": false,
266
- "inputs": [
297
+ anonymous: false,
298
+ inputs: [
267
299
  {
268
- "indexed": true,
269
- "internalType": "bytes32",
270
- "name": "role",
271
- "type": "bytes32"
300
+ indexed: true,
301
+ internalType: 'bytes32',
302
+ name: 'role',
303
+ type: 'bytes32',
272
304
  },
273
305
  {
274
- "indexed": true,
275
- "internalType": "address",
276
- "name": "account",
277
- "type": "address"
306
+ indexed: true,
307
+ internalType: 'address',
308
+ name: 'account',
309
+ type: 'address',
278
310
  },
279
311
  {
280
- "indexed": true,
281
- "internalType": "address",
282
- "name": "sender",
283
- "type": "address"
284
- }
312
+ indexed: true,
313
+ internalType: 'address',
314
+ name: 'sender',
315
+ type: 'address',
316
+ },
285
317
  ],
286
- "name": "RoleGranted",
287
- "type": "event"
318
+ name: 'RoleGranted',
319
+ type: 'event',
288
320
  },
289
321
  {
290
- "anonymous": false,
291
- "inputs": [
322
+ anonymous: false,
323
+ inputs: [
292
324
  {
293
- "indexed": true,
294
- "internalType": "address",
295
- "name": "member",
296
- "type": "address"
325
+ indexed: true,
326
+ internalType: 'address',
327
+ name: 'member',
328
+ type: 'address',
297
329
  },
298
330
  {
299
- "indexed": true,
300
- "internalType": "bytes32",
301
- "name": "role",
302
- "type": "bytes32"
331
+ indexed: true,
332
+ internalType: 'bytes32',
333
+ name: 'role',
334
+ type: 'bytes32',
303
335
  },
304
336
  {
305
- "indexed": false,
306
- "internalType": "uint256",
307
- "name": "timestamp",
308
- "type": "uint256"
337
+ indexed: false,
338
+ internalType: 'uint256',
339
+ name: 'expiryTimestamp',
340
+ type: 'uint256',
309
341
  },
310
342
  {
311
- "indexed": false,
312
- "internalType": "bytes",
313
- "name": "data",
314
- "type": "bytes"
315
- }
343
+ indexed: false,
344
+ internalType: 'bytes',
345
+ name: 'data',
346
+ type: 'bytes',
347
+ },
316
348
  ],
317
- "name": "RoleMemberVoted",
318
- "type": "event"
349
+ name: 'RoleMemberConfirmed',
350
+ type: 'event',
319
351
  },
320
352
  {
321
- "anonymous": false,
322
- "inputs": [
353
+ anonymous: false,
354
+ inputs: [
355
+ {
356
+ indexed: true,
357
+ internalType: 'bytes32',
358
+ name: 'role',
359
+ type: 'bytes32',
360
+ },
323
361
  {
324
- "indexed": true,
325
- "internalType": "bytes32",
326
- "name": "role",
327
- "type": "bytes32"
362
+ indexed: true,
363
+ internalType: 'address',
364
+ name: 'account',
365
+ type: 'address',
328
366
  },
329
367
  {
330
- "indexed": true,
331
- "internalType": "address",
332
- "name": "account",
333
- "type": "address"
368
+ indexed: true,
369
+ internalType: 'address',
370
+ name: 'sender',
371
+ type: 'address',
334
372
  },
373
+ ],
374
+ name: 'RoleRevoked',
375
+ type: 'event',
376
+ },
377
+ {
378
+ inputs: [],
379
+ name: 'ASSET_RECOVERY_ROLE',
380
+ outputs: [
335
381
  {
336
- "indexed": true,
337
- "internalType": "address",
338
- "name": "sender",
339
- "type": "address"
340
- }
382
+ internalType: 'bytes32',
383
+ name: '',
384
+ type: 'bytes32',
385
+ },
341
386
  ],
342
- "name": "RoleRevoked",
343
- "type": "event"
387
+ stateMutability: 'view',
388
+ type: 'function',
344
389
  },
345
390
  {
346
- "anonymous": false,
347
- "inputs": [
391
+ inputs: [],
392
+ name: 'BURN_ROLE',
393
+ outputs: [
348
394
  {
349
- "indexed": true,
350
- "internalType": "address",
351
- "name": "sender",
352
- "type": "address"
395
+ internalType: 'bytes32',
396
+ name: '',
397
+ type: 'bytes32',
353
398
  },
399
+ ],
400
+ stateMutability: 'view',
401
+ type: 'function',
402
+ },
403
+ {
404
+ inputs: [],
405
+ name: 'CURATOR_FEE_CLAIM_ROLE',
406
+ outputs: [
407
+ {
408
+ internalType: 'bytes32',
409
+ name: '',
410
+ type: 'bytes32',
411
+ },
412
+ ],
413
+ stateMutability: 'view',
414
+ type: 'function',
415
+ },
416
+ {
417
+ inputs: [],
418
+ name: 'CURATOR_FEE_SET_ROLE',
419
+ outputs: [
420
+ {
421
+ internalType: 'bytes32',
422
+ name: '',
423
+ type: 'bytes32',
424
+ },
425
+ ],
426
+ stateMutability: 'view',
427
+ type: 'function',
428
+ },
429
+ {
430
+ inputs: [],
431
+ name: 'DEFAULT_ADMIN_ROLE',
432
+ outputs: [
354
433
  {
355
- "indexed": false,
356
- "internalType": "uint256",
357
- "name": "oldVoteLifetime",
358
- "type": "uint256"
434
+ internalType: 'bytes32',
435
+ name: '',
436
+ type: 'bytes32',
359
437
  },
438
+ ],
439
+ stateMutability: 'view',
440
+ type: 'function',
441
+ },
442
+ {
443
+ inputs: [],
444
+ name: 'ETH',
445
+ outputs: [
360
446
  {
361
- "indexed": false,
362
- "internalType": "uint256",
363
- "name": "newVoteLifetime",
364
- "type": "uint256"
365
- }
447
+ internalType: 'address',
448
+ name: '',
449
+ type: 'address',
450
+ },
366
451
  ],
367
- "name": "VoteLifetimeSet",
368
- "type": "event"
452
+ stateMutability: 'view',
453
+ type: 'function',
369
454
  },
370
455
  {
371
- "inputs": [],
372
- "name": "BURN_ROLE",
373
- "outputs": [
456
+ inputs: [],
457
+ name: 'FUND_ROLE',
458
+ outputs: [
374
459
  {
375
- "internalType": "bytes32",
376
- "name": "",
377
- "type": "bytes32"
378
- }
460
+ internalType: 'bytes32',
461
+ name: '',
462
+ type: 'bytes32',
463
+ },
379
464
  ],
380
- "stateMutability": "view",
381
- "type": "function"
465
+ stateMutability: 'view',
466
+ type: 'function',
382
467
  },
383
468
  {
384
- "inputs": [],
385
- "name": "CURATOR_ROLE",
386
- "outputs": [
469
+ inputs: [],
470
+ name: 'MAX_CONFIRM_EXPIRY',
471
+ outputs: [
387
472
  {
388
- "internalType": "bytes32",
389
- "name": "",
390
- "type": "bytes32"
391
- }
473
+ internalType: 'uint256',
474
+ name: '',
475
+ type: 'uint256',
476
+ },
392
477
  ],
393
- "stateMutability": "view",
394
- "type": "function"
478
+ stateMutability: 'view',
479
+ type: 'function',
395
480
  },
396
481
  {
397
- "inputs": [],
398
- "name": "DEFAULT_ADMIN_ROLE",
399
- "outputs": [
482
+ inputs: [],
483
+ name: 'MINT_ROLE',
484
+ outputs: [
400
485
  {
401
- "internalType": "bytes32",
402
- "name": "",
403
- "type": "bytes32"
404
- }
486
+ internalType: 'bytes32',
487
+ name: '',
488
+ type: 'bytes32',
489
+ },
405
490
  ],
406
- "stateMutability": "view",
407
- "type": "function"
491
+ stateMutability: 'view',
492
+ type: 'function',
408
493
  },
409
494
  {
410
- "inputs": [],
411
- "name": "ETH",
412
- "outputs": [
495
+ inputs: [],
496
+ name: 'MIN_CONFIRM_EXPIRY',
497
+ outputs: [
413
498
  {
414
- "internalType": "address",
415
- "name": "",
416
- "type": "address"
417
- }
499
+ internalType: 'uint256',
500
+ name: '',
501
+ type: 'uint256',
502
+ },
418
503
  ],
419
- "stateMutability": "view",
420
- "type": "function"
504
+ stateMutability: 'view',
505
+ type: 'function',
421
506
  },
422
507
  {
423
- "inputs": [],
424
- "name": "FUND_ROLE",
425
- "outputs": [
508
+ inputs: [],
509
+ name: 'NODE_OPERATOR_FEE_CLAIM_ROLE',
510
+ outputs: [
426
511
  {
427
- "internalType": "bytes32",
428
- "name": "",
429
- "type": "bytes32"
430
- }
512
+ internalType: 'bytes32',
513
+ name: '',
514
+ type: 'bytes32',
515
+ },
431
516
  ],
432
- "stateMutability": "view",
433
- "type": "function"
517
+ stateMutability: 'view',
518
+ type: 'function',
434
519
  },
435
520
  {
436
- "inputs": [],
437
- "name": "MINT_ROLE",
438
- "outputs": [
521
+ inputs: [],
522
+ name: 'NODE_OPERATOR_MANAGER_ROLE',
523
+ outputs: [
439
524
  {
440
- "internalType": "bytes32",
441
- "name": "",
442
- "type": "bytes32"
443
- }
525
+ internalType: 'bytes32',
526
+ name: '',
527
+ type: 'bytes32',
528
+ },
444
529
  ],
445
- "stateMutability": "view",
446
- "type": "function"
530
+ stateMutability: 'view',
531
+ type: 'function',
447
532
  },
448
533
  {
449
- "inputs": [],
450
- "name": "NODE_OPERATOR_FEE_CLAIMER_ROLE",
451
- "outputs": [
534
+ inputs: [],
535
+ name: 'PAUSE_BEACON_CHAIN_DEPOSITS_ROLE',
536
+ outputs: [
452
537
  {
453
- "internalType": "bytes32",
454
- "name": "",
455
- "type": "bytes32"
456
- }
538
+ internalType: 'bytes32',
539
+ name: '',
540
+ type: 'bytes32',
541
+ },
457
542
  ],
458
- "stateMutability": "view",
459
- "type": "function"
543
+ stateMutability: 'view',
544
+ type: 'function',
460
545
  },
461
546
  {
462
- "inputs": [],
463
- "name": "NODE_OPERATOR_MANAGER_ROLE",
464
- "outputs": [
547
+ inputs: [],
548
+ name: 'PDG_WITHDRAWAL_ROLE',
549
+ outputs: [
465
550
  {
466
- "internalType": "bytes32",
467
- "name": "",
468
- "type": "bytes32"
469
- }
551
+ internalType: 'bytes32',
552
+ name: '',
553
+ type: 'bytes32',
554
+ },
470
555
  ],
471
- "stateMutability": "view",
472
- "type": "function"
556
+ stateMutability: 'view',
557
+ type: 'function',
473
558
  },
474
559
  {
475
- "inputs": [],
476
- "name": "PAUSE_BEACON_CHAIN_DEPOSITS_ROLE",
477
- "outputs": [
560
+ inputs: [],
561
+ name: 'REBALANCE_ROLE',
562
+ outputs: [
478
563
  {
479
- "internalType": "bytes32",
480
- "name": "",
481
- "type": "bytes32"
482
- }
564
+ internalType: 'bytes32',
565
+ name: '',
566
+ type: 'bytes32',
567
+ },
483
568
  ],
484
- "stateMutability": "view",
485
- "type": "function"
569
+ stateMutability: 'view',
570
+ type: 'function',
486
571
  },
487
572
  {
488
- "inputs": [],
489
- "name": "REBALANCE_ROLE",
490
- "outputs": [
573
+ inputs: [],
574
+ name: 'REQUEST_VALIDATOR_EXIT_ROLE',
575
+ outputs: [
491
576
  {
492
- "internalType": "bytes32",
493
- "name": "",
494
- "type": "bytes32"
495
- }
577
+ internalType: 'bytes32',
578
+ name: '',
579
+ type: 'bytes32',
580
+ },
496
581
  ],
497
- "stateMutability": "view",
498
- "type": "function"
582
+ stateMutability: 'view',
583
+ type: 'function',
499
584
  },
500
585
  {
501
- "inputs": [],
502
- "name": "REQUEST_VALIDATOR_EXIT_ROLE",
503
- "outputs": [
586
+ inputs: [],
587
+ name: 'RESUME_BEACON_CHAIN_DEPOSITS_ROLE',
588
+ outputs: [
504
589
  {
505
- "internalType": "bytes32",
506
- "name": "",
507
- "type": "bytes32"
508
- }
590
+ internalType: 'bytes32',
591
+ name: '',
592
+ type: 'bytes32',
593
+ },
509
594
  ],
510
- "stateMutability": "view",
511
- "type": "function"
595
+ stateMutability: 'view',
596
+ type: 'function',
512
597
  },
513
598
  {
514
- "inputs": [],
515
- "name": "RESUME_BEACON_CHAIN_DEPOSITS_ROLE",
516
- "outputs": [
599
+ inputs: [],
600
+ name: 'STETH',
601
+ outputs: [
517
602
  {
518
- "internalType": "bytes32",
519
- "name": "",
520
- "type": "bytes32"
521
- }
603
+ internalType: 'contract ILido',
604
+ name: '',
605
+ type: 'address',
606
+ },
522
607
  ],
523
- "stateMutability": "view",
524
- "type": "function"
608
+ stateMutability: 'view',
609
+ type: 'function',
525
610
  },
526
611
  {
527
- "inputs": [],
528
- "name": "STETH",
529
- "outputs": [
612
+ inputs: [],
613
+ name: 'TRIGGER_VALIDATOR_WITHDRAWAL_ROLE',
614
+ outputs: [
530
615
  {
531
- "internalType": "contract ILido",
532
- "name": "",
533
- "type": "address"
534
- }
616
+ internalType: 'bytes32',
617
+ name: '',
618
+ type: 'bytes32',
619
+ },
535
620
  ],
536
- "stateMutability": "view",
537
- "type": "function"
621
+ stateMutability: 'view',
622
+ type: 'function',
538
623
  },
539
624
  {
540
- "inputs": [],
541
- "name": "VOLUNTARY_DISCONNECT_ROLE",
542
- "outputs": [
625
+ inputs: [],
626
+ name: 'VOLUNTARY_DISCONNECT_ROLE',
627
+ outputs: [
543
628
  {
544
- "internalType": "bytes32",
545
- "name": "",
546
- "type": "bytes32"
547
- }
629
+ internalType: 'bytes32',
630
+ name: '',
631
+ type: 'bytes32',
632
+ },
548
633
  ],
549
- "stateMutability": "view",
550
- "type": "function"
634
+ stateMutability: 'view',
635
+ type: 'function',
551
636
  },
552
637
  {
553
- "inputs": [],
554
- "name": "WETH",
555
- "outputs": [
638
+ inputs: [],
639
+ name: 'WETH',
640
+ outputs: [
556
641
  {
557
- "internalType": "contract IWETH9",
558
- "name": "",
559
- "type": "address"
560
- }
642
+ internalType: 'contract IWETH9',
643
+ name: '',
644
+ type: 'address',
645
+ },
561
646
  ],
562
- "stateMutability": "view",
563
- "type": "function"
647
+ stateMutability: 'view',
648
+ type: 'function',
564
649
  },
565
650
  {
566
- "inputs": [],
567
- "name": "WITHDRAW_ROLE",
568
- "outputs": [
651
+ inputs: [],
652
+ name: 'WITHDRAW_ROLE',
653
+ outputs: [
569
654
  {
570
- "internalType": "bytes32",
571
- "name": "",
572
- "type": "bytes32"
573
- }
655
+ internalType: 'bytes32',
656
+ name: '',
657
+ type: 'bytes32',
658
+ },
574
659
  ],
575
- "stateMutability": "view",
576
- "type": "function"
660
+ stateMutability: 'view',
661
+ type: 'function',
577
662
  },
578
663
  {
579
- "inputs": [],
580
- "name": "WSTETH",
581
- "outputs": [
664
+ inputs: [],
665
+ name: 'WSTETH',
666
+ outputs: [
582
667
  {
583
- "internalType": "contract IWstETH",
584
- "name": "",
585
- "type": "address"
586
- }
668
+ internalType: 'contract IWstETH',
669
+ name: '',
670
+ type: 'address',
671
+ },
587
672
  ],
588
- "stateMutability": "view",
589
- "type": "function"
673
+ stateMutability: 'view',
674
+ type: 'function',
590
675
  },
591
676
  {
592
- "inputs": [
677
+ inputs: [
593
678
  {
594
- "internalType": "uint256",
595
- "name": "_amountOfShares",
596
- "type": "uint256"
597
- }
679
+ internalType: 'uint256',
680
+ name: '_amountOfShares',
681
+ type: 'uint256',
682
+ },
598
683
  ],
599
- "name": "burnShares",
600
- "outputs": [],
601
- "stateMutability": "nonpayable",
602
- "type": "function"
684
+ name: 'burnShares',
685
+ outputs: [],
686
+ stateMutability: 'nonpayable',
687
+ type: 'function',
603
688
  },
604
689
  {
605
- "inputs": [
690
+ inputs: [
606
691
  {
607
- "internalType": "uint256",
608
- "name": "_amountOfShares",
609
- "type": "uint256"
692
+ internalType: 'uint256',
693
+ name: '_amountOfShares',
694
+ type: 'uint256',
610
695
  },
611
696
  {
612
- "components": [
697
+ components: [
613
698
  {
614
- "internalType": "uint256",
615
- "name": "value",
616
- "type": "uint256"
699
+ internalType: 'uint256',
700
+ name: 'value',
701
+ type: 'uint256',
617
702
  },
618
703
  {
619
- "internalType": "uint256",
620
- "name": "deadline",
621
- "type": "uint256"
704
+ internalType: 'uint256',
705
+ name: 'deadline',
706
+ type: 'uint256',
622
707
  },
623
708
  {
624
- "internalType": "uint8",
625
- "name": "v",
626
- "type": "uint8"
709
+ internalType: 'uint8',
710
+ name: 'v',
711
+ type: 'uint8',
627
712
  },
628
713
  {
629
- "internalType": "bytes32",
630
- "name": "r",
631
- "type": "bytes32"
714
+ internalType: 'bytes32',
715
+ name: 'r',
716
+ type: 'bytes32',
632
717
  },
633
718
  {
634
- "internalType": "bytes32",
635
- "name": "s",
636
- "type": "bytes32"
637
- }
719
+ internalType: 'bytes32',
720
+ name: 's',
721
+ type: 'bytes32',
722
+ },
638
723
  ],
639
- "internalType": "struct Dashboard.PermitInput",
640
- "name": "_permit",
641
- "type": "tuple"
642
- }
724
+ internalType: 'struct Dashboard.PermitInput',
725
+ name: '_permit',
726
+ type: 'tuple',
727
+ },
643
728
  ],
644
- "name": "burnSharesWithPermit",
645
- "outputs": [],
646
- "stateMutability": "nonpayable",
647
- "type": "function"
729
+ name: 'burnSharesWithPermit',
730
+ outputs: [],
731
+ stateMutability: 'nonpayable',
732
+ type: 'function',
648
733
  },
649
734
  {
650
- "inputs": [
735
+ inputs: [
651
736
  {
652
- "internalType": "uint256",
653
- "name": "_amountOfStETH",
654
- "type": "uint256"
655
- }
737
+ internalType: 'uint256',
738
+ name: '_amountOfStETH',
739
+ type: 'uint256',
740
+ },
656
741
  ],
657
- "name": "burnStETH",
658
- "outputs": [],
659
- "stateMutability": "nonpayable",
660
- "type": "function"
742
+ name: 'burnStETH',
743
+ outputs: [],
744
+ stateMutability: 'nonpayable',
745
+ type: 'function',
661
746
  },
662
747
  {
663
- "inputs": [
748
+ inputs: [
664
749
  {
665
- "internalType": "uint256",
666
- "name": "_amountOfStETH",
667
- "type": "uint256"
750
+ internalType: 'uint256',
751
+ name: '_amountOfStETH',
752
+ type: 'uint256',
668
753
  },
669
754
  {
670
- "components": [
755
+ components: [
671
756
  {
672
- "internalType": "uint256",
673
- "name": "value",
674
- "type": "uint256"
757
+ internalType: 'uint256',
758
+ name: 'value',
759
+ type: 'uint256',
675
760
  },
676
761
  {
677
- "internalType": "uint256",
678
- "name": "deadline",
679
- "type": "uint256"
762
+ internalType: 'uint256',
763
+ name: 'deadline',
764
+ type: 'uint256',
680
765
  },
681
766
  {
682
- "internalType": "uint8",
683
- "name": "v",
684
- "type": "uint8"
767
+ internalType: 'uint8',
768
+ name: 'v',
769
+ type: 'uint8',
685
770
  },
686
771
  {
687
- "internalType": "bytes32",
688
- "name": "r",
689
- "type": "bytes32"
772
+ internalType: 'bytes32',
773
+ name: 'r',
774
+ type: 'bytes32',
690
775
  },
691
776
  {
692
- "internalType": "bytes32",
693
- "name": "s",
694
- "type": "bytes32"
695
- }
777
+ internalType: 'bytes32',
778
+ name: 's',
779
+ type: 'bytes32',
780
+ },
696
781
  ],
697
- "internalType": "struct Dashboard.PermitInput",
698
- "name": "_permit",
699
- "type": "tuple"
700
- }
782
+ internalType: 'struct Dashboard.PermitInput',
783
+ name: '_permit',
784
+ type: 'tuple',
785
+ },
701
786
  ],
702
- "name": "burnStETHWithPermit",
703
- "outputs": [],
704
- "stateMutability": "nonpayable",
705
- "type": "function"
787
+ name: 'burnStETHWithPermit',
788
+ outputs: [],
789
+ stateMutability: 'nonpayable',
790
+ type: 'function',
706
791
  },
707
792
  {
708
- "inputs": [
793
+ inputs: [
709
794
  {
710
- "internalType": "uint256",
711
- "name": "_amountOfWstETH",
712
- "type": "uint256"
713
- }
795
+ internalType: 'uint256',
796
+ name: '_amountOfWstETH',
797
+ type: 'uint256',
798
+ },
714
799
  ],
715
- "name": "burnWstETH",
716
- "outputs": [],
717
- "stateMutability": "nonpayable",
718
- "type": "function"
800
+ name: 'burnWstETH',
801
+ outputs: [],
802
+ stateMutability: 'nonpayable',
803
+ type: 'function',
719
804
  },
720
805
  {
721
- "inputs": [
806
+ inputs: [
722
807
  {
723
- "internalType": "uint256",
724
- "name": "_amountOfWstETH",
725
- "type": "uint256"
808
+ internalType: 'uint256',
809
+ name: '_amountOfWstETH',
810
+ type: 'uint256',
726
811
  },
727
812
  {
728
- "components": [
813
+ components: [
729
814
  {
730
- "internalType": "uint256",
731
- "name": "value",
732
- "type": "uint256"
815
+ internalType: 'uint256',
816
+ name: 'value',
817
+ type: 'uint256',
733
818
  },
734
819
  {
735
- "internalType": "uint256",
736
- "name": "deadline",
737
- "type": "uint256"
820
+ internalType: 'uint256',
821
+ name: 'deadline',
822
+ type: 'uint256',
738
823
  },
739
824
  {
740
- "internalType": "uint8",
741
- "name": "v",
742
- "type": "uint8"
825
+ internalType: 'uint8',
826
+ name: 'v',
827
+ type: 'uint8',
743
828
  },
744
829
  {
745
- "internalType": "bytes32",
746
- "name": "r",
747
- "type": "bytes32"
830
+ internalType: 'bytes32',
831
+ name: 'r',
832
+ type: 'bytes32',
748
833
  },
749
834
  {
750
- "internalType": "bytes32",
751
- "name": "s",
752
- "type": "bytes32"
753
- }
835
+ internalType: 'bytes32',
836
+ name: 's',
837
+ type: 'bytes32',
838
+ },
754
839
  ],
755
- "internalType": "struct Dashboard.PermitInput",
756
- "name": "_permit",
757
- "type": "tuple"
758
- }
840
+ internalType: 'struct Dashboard.PermitInput',
841
+ name: '_permit',
842
+ type: 'tuple',
843
+ },
759
844
  ],
760
- "name": "burnWstETHWithPermit",
761
- "outputs": [],
762
- "stateMutability": "nonpayable",
763
- "type": "function"
845
+ name: 'burnWstETHWithPermit',
846
+ outputs: [],
847
+ stateMutability: 'nonpayable',
848
+ type: 'function',
764
849
  },
765
850
  {
766
- "inputs": [
851
+ inputs: [
767
852
  {
768
- "internalType": "address",
769
- "name": "_recipient",
770
- "type": "address"
771
- }
853
+ internalType: 'address',
854
+ name: '_recipient',
855
+ type: 'address',
856
+ },
772
857
  ],
773
- "name": "claimCuratorFee",
774
- "outputs": [],
775
- "stateMutability": "nonpayable",
776
- "type": "function"
858
+ name: 'claimCuratorFee',
859
+ outputs: [],
860
+ stateMutability: 'nonpayable',
861
+ type: 'function',
777
862
  },
778
863
  {
779
- "inputs": [
864
+ inputs: [
780
865
  {
781
- "internalType": "address",
782
- "name": "_recipient",
783
- "type": "address"
784
- }
866
+ internalType: 'address',
867
+ name: '_recipient',
868
+ type: 'address',
869
+ },
785
870
  ],
786
- "name": "claimNodeOperatorFee",
787
- "outputs": [],
788
- "stateMutability": "nonpayable",
789
- "type": "function"
871
+ name: 'claimNodeOperatorFee',
872
+ outputs: [],
873
+ stateMutability: 'nonpayable',
874
+ type: 'function',
790
875
  },
791
876
  {
792
- "inputs": [],
793
- "name": "curatorFeeBP",
794
- "outputs": [
877
+ inputs: [
795
878
  {
796
- "internalType": "uint256",
797
- "name": "",
798
- "type": "uint256"
799
- }
879
+ internalType: 'bytes',
880
+ name: '_pubkey',
881
+ type: 'bytes',
882
+ },
883
+ {
884
+ internalType: 'address',
885
+ name: '_recipient',
886
+ type: 'address',
887
+ },
800
888
  ],
801
- "stateMutability": "view",
802
- "type": "function"
889
+ name: 'compensateDisprovenPredepositFromPDG',
890
+ outputs: [],
891
+ stateMutability: 'nonpayable',
892
+ type: 'function',
803
893
  },
804
894
  {
805
- "inputs": [],
806
- "name": "curatorFeeClaimedReport",
807
- "outputs": [
895
+ inputs: [
808
896
  {
809
- "internalType": "uint128",
810
- "name": "valuation",
811
- "type": "uint128"
897
+ internalType: 'bytes',
898
+ name: 'callData',
899
+ type: 'bytes',
812
900
  },
813
901
  {
814
- "internalType": "int128",
815
- "name": "inOutDelta",
816
- "type": "int128"
817
- }
902
+ internalType: 'bytes32',
903
+ name: 'role',
904
+ type: 'bytes32',
905
+ },
906
+ ],
907
+ name: 'confirmations',
908
+ outputs: [
909
+ {
910
+ internalType: 'uint256',
911
+ name: 'expiryTimestamp',
912
+ type: 'uint256',
913
+ },
818
914
  ],
819
- "stateMutability": "view",
820
- "type": "function"
915
+ stateMutability: 'view',
916
+ type: 'function',
821
917
  },
822
918
  {
823
- "inputs": [],
824
- "name": "curatorUnclaimedFee",
825
- "outputs": [
919
+ inputs: [],
920
+ name: 'confirmingRoles',
921
+ outputs: [
826
922
  {
827
- "internalType": "uint256",
828
- "name": "",
829
- "type": "uint256"
830
- }
923
+ internalType: 'bytes32[]',
924
+ name: '',
925
+ type: 'bytes32[]',
926
+ },
831
927
  ],
832
- "stateMutability": "view",
833
- "type": "function"
928
+ stateMutability: 'pure',
929
+ type: 'function',
834
930
  },
835
931
  {
836
- "inputs": [],
837
- "name": "fund",
838
- "outputs": [],
839
- "stateMutability": "payable",
840
- "type": "function"
932
+ inputs: [],
933
+ name: 'curatorFeeBP',
934
+ outputs: [
935
+ {
936
+ internalType: 'uint256',
937
+ name: '',
938
+ type: 'uint256',
939
+ },
940
+ ],
941
+ stateMutability: 'view',
942
+ type: 'function',
841
943
  },
842
944
  {
843
- "inputs": [
945
+ inputs: [],
946
+ name: 'curatorFeeClaimedReport',
947
+ outputs: [
844
948
  {
845
- "internalType": "uint256",
846
- "name": "_amountOfWETH",
847
- "type": "uint256"
848
- }
949
+ internalType: 'uint128',
950
+ name: 'valuation',
951
+ type: 'uint128',
952
+ },
953
+ {
954
+ internalType: 'int128',
955
+ name: 'inOutDelta',
956
+ type: 'int128',
957
+ },
849
958
  ],
850
- "name": "fundWeth",
851
- "outputs": [],
852
- "stateMutability": "nonpayable",
853
- "type": "function"
959
+ stateMutability: 'view',
960
+ type: 'function',
854
961
  },
855
962
  {
856
- "inputs": [
963
+ inputs: [],
964
+ name: 'curatorUnclaimedFee',
965
+ outputs: [
857
966
  {
858
- "internalType": "bytes32",
859
- "name": "role",
860
- "type": "bytes32"
861
- }
967
+ internalType: 'uint256',
968
+ name: '',
969
+ type: 'uint256',
970
+ },
862
971
  ],
863
- "name": "getRoleAdmin",
864
- "outputs": [
972
+ stateMutability: 'view',
973
+ type: 'function',
974
+ },
975
+ {
976
+ inputs: [],
977
+ name: 'fund',
978
+ outputs: [],
979
+ stateMutability: 'payable',
980
+ type: 'function',
981
+ },
982
+ {
983
+ inputs: [
865
984
  {
866
- "internalType": "bytes32",
867
- "name": "",
868
- "type": "bytes32"
869
- }
985
+ internalType: 'uint256',
986
+ name: '_amountOfWETH',
987
+ type: 'uint256',
988
+ },
870
989
  ],
871
- "stateMutability": "view",
872
- "type": "function"
990
+ name: 'fundWeth',
991
+ outputs: [],
992
+ stateMutability: 'nonpayable',
993
+ type: 'function',
873
994
  },
874
995
  {
875
- "inputs": [
996
+ inputs: [],
997
+ name: 'getConfirmExpiry',
998
+ outputs: [
876
999
  {
877
- "internalType": "bytes32",
878
- "name": "role",
879
- "type": "bytes32"
1000
+ internalType: 'uint256',
1001
+ name: '',
1002
+ type: 'uint256',
880
1003
  },
1004
+ ],
1005
+ stateMutability: 'view',
1006
+ type: 'function',
1007
+ },
1008
+ {
1009
+ inputs: [
881
1010
  {
882
- "internalType": "uint256",
883
- "name": "index",
884
- "type": "uint256"
885
- }
1011
+ internalType: 'bytes32',
1012
+ name: 'role',
1013
+ type: 'bytes32',
1014
+ },
886
1015
  ],
887
- "name": "getRoleMember",
888
- "outputs": [
1016
+ name: 'getRoleAdmin',
1017
+ outputs: [
889
1018
  {
890
- "internalType": "address",
891
- "name": "",
892
- "type": "address"
893
- }
1019
+ internalType: 'bytes32',
1020
+ name: '',
1021
+ type: 'bytes32',
1022
+ },
894
1023
  ],
895
- "stateMutability": "view",
896
- "type": "function"
1024
+ stateMutability: 'view',
1025
+ type: 'function',
897
1026
  },
898
1027
  {
899
- "inputs": [
1028
+ inputs: [
1029
+ {
1030
+ internalType: 'bytes32',
1031
+ name: 'role',
1032
+ type: 'bytes32',
1033
+ },
900
1034
  {
901
- "internalType": "bytes32",
902
- "name": "role",
903
- "type": "bytes32"
904
- }
1035
+ internalType: 'uint256',
1036
+ name: 'index',
1037
+ type: 'uint256',
1038
+ },
905
1039
  ],
906
- "name": "getRoleMemberCount",
907
- "outputs": [
1040
+ name: 'getRoleMember',
1041
+ outputs: [
908
1042
  {
909
- "internalType": "uint256",
910
- "name": "",
911
- "type": "uint256"
912
- }
1043
+ internalType: 'address',
1044
+ name: '',
1045
+ type: 'address',
1046
+ },
913
1047
  ],
914
- "stateMutability": "view",
915
- "type": "function"
1048
+ stateMutability: 'view',
1049
+ type: 'function',
916
1050
  },
917
1051
  {
918
- "inputs": [
1052
+ inputs: [
919
1053
  {
920
- "internalType": "bytes32",
921
- "name": "role",
922
- "type": "bytes32"
923
- }
1054
+ internalType: 'bytes32',
1055
+ name: 'role',
1056
+ type: 'bytes32',
1057
+ },
924
1058
  ],
925
- "name": "getRoleMembers",
926
- "outputs": [
1059
+ name: 'getRoleMemberCount',
1060
+ outputs: [
927
1061
  {
928
- "internalType": "address[]",
929
- "name": "",
930
- "type": "address[]"
931
- }
1062
+ internalType: 'uint256',
1063
+ name: '',
1064
+ type: 'uint256',
1065
+ },
932
1066
  ],
933
- "stateMutability": "view",
934
- "type": "function"
1067
+ stateMutability: 'view',
1068
+ type: 'function',
935
1069
  },
936
1070
  {
937
- "inputs": [
1071
+ inputs: [
938
1072
  {
939
- "internalType": "bytes32",
940
- "name": "role",
941
- "type": "bytes32"
1073
+ internalType: 'bytes32',
1074
+ name: 'role',
1075
+ type: 'bytes32',
942
1076
  },
1077
+ ],
1078
+ name: 'getRoleMembers',
1079
+ outputs: [
943
1080
  {
944
- "internalType": "address",
945
- "name": "account",
946
- "type": "address"
947
- }
1081
+ internalType: 'address[]',
1082
+ name: '',
1083
+ type: 'address[]',
1084
+ },
948
1085
  ],
949
- "name": "grantRole",
950
- "outputs": [],
951
- "stateMutability": "nonpayable",
952
- "type": "function"
1086
+ stateMutability: 'view',
1087
+ type: 'function',
953
1088
  },
954
1089
  {
955
- "inputs": [
1090
+ inputs: [
1091
+ {
1092
+ internalType: 'bytes32',
1093
+ name: 'role',
1094
+ type: 'bytes32',
1095
+ },
956
1096
  {
957
- "components": [
1097
+ internalType: 'address',
1098
+ name: 'account',
1099
+ type: 'address',
1100
+ },
1101
+ ],
1102
+ name: 'grantRole',
1103
+ outputs: [],
1104
+ stateMutability: 'nonpayable',
1105
+ type: 'function',
1106
+ },
1107
+ {
1108
+ inputs: [
1109
+ {
1110
+ components: [
958
1111
  {
959
- "internalType": "address",
960
- "name": "account",
961
- "type": "address"
1112
+ internalType: 'address',
1113
+ name: 'account',
1114
+ type: 'address',
962
1115
  },
963
1116
  {
964
- "internalType": "bytes32",
965
- "name": "role",
966
- "type": "bytes32"
967
- }
1117
+ internalType: 'bytes32',
1118
+ name: 'role',
1119
+ type: 'bytes32',
1120
+ },
968
1121
  ],
969
- "internalType": "struct Dashboard.RoleAssignment[]",
970
- "name": "_assignments",
971
- "type": "tuple[]"
972
- }
1122
+ internalType: 'struct Permissions.RoleAssignment[]',
1123
+ name: '_assignments',
1124
+ type: 'tuple[]',
1125
+ },
973
1126
  ],
974
- "name": "grantRoles",
975
- "outputs": [],
976
- "stateMutability": "nonpayable",
977
- "type": "function"
1127
+ name: 'grantRoles',
1128
+ outputs: [],
1129
+ stateMutability: 'nonpayable',
1130
+ type: 'function',
978
1131
  },
979
1132
  {
980
- "inputs": [
1133
+ inputs: [
981
1134
  {
982
- "internalType": "bytes32",
983
- "name": "role",
984
- "type": "bytes32"
1135
+ internalType: 'bytes32',
1136
+ name: 'role',
1137
+ type: 'bytes32',
985
1138
  },
986
1139
  {
987
- "internalType": "address",
988
- "name": "account",
989
- "type": "address"
990
- }
1140
+ internalType: 'address',
1141
+ name: 'account',
1142
+ type: 'address',
1143
+ },
991
1144
  ],
992
- "name": "hasRole",
993
- "outputs": [
1145
+ name: 'hasRole',
1146
+ outputs: [
994
1147
  {
995
- "internalType": "bool",
996
- "name": "",
997
- "type": "bool"
998
- }
1148
+ internalType: 'bool',
1149
+ name: '',
1150
+ type: 'bool',
1151
+ },
999
1152
  ],
1000
- "stateMutability": "view",
1001
- "type": "function"
1153
+ stateMutability: 'view',
1154
+ type: 'function',
1002
1155
  },
1003
1156
  {
1004
- "inputs": [
1157
+ inputs: [
1005
1158
  {
1006
- "internalType": "address",
1007
- "name": "_defaultAdmin",
1008
- "type": "address"
1009
- }
1159
+ internalType: 'address',
1160
+ name: '_defaultAdmin',
1161
+ type: 'address',
1162
+ },
1163
+ {
1164
+ internalType: 'uint256',
1165
+ name: '_confirmExpiry',
1166
+ type: 'uint256',
1167
+ },
1010
1168
  ],
1011
- "name": "initialize",
1012
- "outputs": [],
1013
- "stateMutability": "nonpayable",
1014
- "type": "function"
1169
+ name: 'initialize',
1170
+ outputs: [],
1171
+ stateMutability: 'nonpayable',
1172
+ type: 'function',
1015
1173
  },
1016
1174
  {
1017
- "inputs": [],
1018
- "name": "initialized",
1019
- "outputs": [
1175
+ inputs: [],
1176
+ name: 'initialized',
1177
+ outputs: [
1020
1178
  {
1021
- "internalType": "bool",
1022
- "name": "",
1023
- "type": "bool"
1024
- }
1179
+ internalType: 'bool',
1180
+ name: '',
1181
+ type: 'bool',
1182
+ },
1025
1183
  ],
1026
- "stateMutability": "view",
1027
- "type": "function"
1184
+ stateMutability: 'view',
1185
+ type: 'function',
1028
1186
  },
1029
1187
  {
1030
- "inputs": [
1188
+ inputs: [
1031
1189
  {
1032
- "internalType": "address",
1033
- "name": "_recipient",
1034
- "type": "address"
1190
+ internalType: 'address',
1191
+ name: '_recipient',
1192
+ type: 'address',
1035
1193
  },
1036
1194
  {
1037
- "internalType": "uint256",
1038
- "name": "_amountOfShares",
1039
- "type": "uint256"
1040
- }
1195
+ internalType: 'uint256',
1196
+ name: '_amountOfShares',
1197
+ type: 'uint256',
1198
+ },
1041
1199
  ],
1042
- "name": "mintShares",
1043
- "outputs": [],
1044
- "stateMutability": "payable",
1045
- "type": "function"
1200
+ name: 'mintShares',
1201
+ outputs: [],
1202
+ stateMutability: 'payable',
1203
+ type: 'function',
1046
1204
  },
1047
1205
  {
1048
- "inputs": [
1206
+ inputs: [
1049
1207
  {
1050
- "internalType": "address",
1051
- "name": "_recipient",
1052
- "type": "address"
1208
+ internalType: 'address',
1209
+ name: '_recipient',
1210
+ type: 'address',
1053
1211
  },
1054
1212
  {
1055
- "internalType": "uint256",
1056
- "name": "_amountOfStETH",
1057
- "type": "uint256"
1058
- }
1213
+ internalType: 'uint256',
1214
+ name: '_amountOfStETH',
1215
+ type: 'uint256',
1216
+ },
1059
1217
  ],
1060
- "name": "mintStETH",
1061
- "outputs": [],
1062
- "stateMutability": "payable",
1063
- "type": "function"
1218
+ name: 'mintStETH',
1219
+ outputs: [],
1220
+ stateMutability: 'payable',
1221
+ type: 'function',
1064
1222
  },
1065
1223
  {
1066
- "inputs": [
1224
+ inputs: [
1067
1225
  {
1068
- "internalType": "address",
1069
- "name": "_recipient",
1070
- "type": "address"
1226
+ internalType: 'address',
1227
+ name: '_recipient',
1228
+ type: 'address',
1071
1229
  },
1072
1230
  {
1073
- "internalType": "uint256",
1074
- "name": "_amountOfWstETH",
1075
- "type": "uint256"
1076
- }
1231
+ internalType: 'uint256',
1232
+ name: '_amountOfWstETH',
1233
+ type: 'uint256',
1234
+ },
1077
1235
  ],
1078
- "name": "mintWstETH",
1079
- "outputs": [],
1080
- "stateMutability": "payable",
1081
- "type": "function"
1236
+ name: 'mintWstETH',
1237
+ outputs: [],
1238
+ stateMutability: 'payable',
1239
+ type: 'function',
1082
1240
  },
1083
1241
  {
1084
- "inputs": [],
1085
- "name": "nodeOperatorFeeBP",
1086
- "outputs": [
1242
+ inputs: [],
1243
+ name: 'nodeOperatorFeeBP',
1244
+ outputs: [
1087
1245
  {
1088
- "internalType": "uint256",
1089
- "name": "",
1090
- "type": "uint256"
1091
- }
1246
+ internalType: 'uint256',
1247
+ name: '',
1248
+ type: 'uint256',
1249
+ },
1092
1250
  ],
1093
- "stateMutability": "view",
1094
- "type": "function"
1251
+ stateMutability: 'view',
1252
+ type: 'function',
1095
1253
  },
1096
1254
  {
1097
- "inputs": [],
1098
- "name": "nodeOperatorFeeClaimedReport",
1099
- "outputs": [
1255
+ inputs: [],
1256
+ name: 'nodeOperatorFeeClaimedReport',
1257
+ outputs: [
1100
1258
  {
1101
- "internalType": "uint128",
1102
- "name": "valuation",
1103
- "type": "uint128"
1259
+ internalType: 'uint128',
1260
+ name: 'valuation',
1261
+ type: 'uint128',
1104
1262
  },
1105
1263
  {
1106
- "internalType": "int128",
1107
- "name": "inOutDelta",
1108
- "type": "int128"
1109
- }
1264
+ internalType: 'int128',
1265
+ name: 'inOutDelta',
1266
+ type: 'int128',
1267
+ },
1110
1268
  ],
1111
- "stateMutability": "view",
1112
- "type": "function"
1269
+ stateMutability: 'view',
1270
+ type: 'function',
1113
1271
  },
1114
1272
  {
1115
- "inputs": [],
1116
- "name": "nodeOperatorUnclaimedFee",
1117
- "outputs": [
1273
+ inputs: [],
1274
+ name: 'nodeOperatorUnclaimedFee',
1275
+ outputs: [
1118
1276
  {
1119
- "internalType": "uint256",
1120
- "name": "",
1121
- "type": "uint256"
1122
- }
1277
+ internalType: 'uint256',
1278
+ name: '',
1279
+ type: 'uint256',
1280
+ },
1123
1281
  ],
1124
- "stateMutability": "view",
1125
- "type": "function"
1282
+ stateMutability: 'view',
1283
+ type: 'function',
1126
1284
  },
1127
1285
  {
1128
- "inputs": [],
1129
- "name": "pauseBeaconChainDeposits",
1130
- "outputs": [],
1131
- "stateMutability": "nonpayable",
1132
- "type": "function"
1286
+ inputs: [],
1287
+ name: 'pauseBeaconChainDeposits',
1288
+ outputs: [],
1289
+ stateMutability: 'nonpayable',
1290
+ type: 'function',
1133
1291
  },
1134
1292
  {
1135
- "inputs": [
1293
+ inputs: [
1136
1294
  {
1137
- "internalType": "uint256",
1138
- "name": "_etherToFund",
1139
- "type": "uint256"
1140
- }
1295
+ internalType: 'uint256',
1296
+ name: '_etherToFund',
1297
+ type: 'uint256',
1298
+ },
1141
1299
  ],
1142
- "name": "projectedNewMintableShares",
1143
- "outputs": [
1300
+ name: 'projectedNewMintableShares',
1301
+ outputs: [
1144
1302
  {
1145
- "internalType": "uint256",
1146
- "name": "",
1147
- "type": "uint256"
1148
- }
1303
+ internalType: 'uint256',
1304
+ name: '',
1305
+ type: 'uint256',
1306
+ },
1149
1307
  ],
1150
- "stateMutability": "view",
1151
- "type": "function"
1308
+ stateMutability: 'view',
1309
+ type: 'function',
1152
1310
  },
1153
1311
  {
1154
- "inputs": [
1312
+ inputs: [],
1313
+ name: 'rebalanceThresholdBP',
1314
+ outputs: [
1155
1315
  {
1156
- "internalType": "uint256",
1157
- "name": "_ether",
1158
- "type": "uint256"
1159
- }
1316
+ internalType: 'uint16',
1317
+ name: '',
1318
+ type: 'uint16',
1319
+ },
1160
1320
  ],
1161
- "name": "rebalanceVault",
1162
- "outputs": [],
1163
- "stateMutability": "payable",
1164
- "type": "function"
1321
+ stateMutability: 'view',
1322
+ type: 'function',
1165
1323
  },
1166
1324
  {
1167
- "inputs": [
1325
+ inputs: [
1168
1326
  {
1169
- "internalType": "address",
1170
- "name": "_token",
1171
- "type": "address"
1327
+ internalType: 'uint256',
1328
+ name: '_ether',
1329
+ type: 'uint256',
1172
1330
  },
1331
+ ],
1332
+ name: 'rebalanceVault',
1333
+ outputs: [],
1334
+ stateMutability: 'payable',
1335
+ type: 'function',
1336
+ },
1337
+ {
1338
+ inputs: [
1173
1339
  {
1174
- "internalType": "address",
1175
- "name": "_recipient",
1176
- "type": "address"
1340
+ internalType: 'address',
1341
+ name: '_token',
1342
+ type: 'address',
1177
1343
  },
1178
1344
  {
1179
- "internalType": "uint256",
1180
- "name": "_amount",
1181
- "type": "uint256"
1182
- }
1345
+ internalType: 'address',
1346
+ name: '_recipient',
1347
+ type: 'address',
1348
+ },
1349
+ {
1350
+ internalType: 'uint256',
1351
+ name: '_amount',
1352
+ type: 'uint256',
1353
+ },
1183
1354
  ],
1184
- "name": "recoverERC20",
1185
- "outputs": [],
1186
- "stateMutability": "nonpayable",
1187
- "type": "function"
1355
+ name: 'recoverERC20',
1356
+ outputs: [],
1357
+ stateMutability: 'nonpayable',
1358
+ type: 'function',
1188
1359
  },
1189
1360
  {
1190
- "inputs": [
1361
+ inputs: [
1191
1362
  {
1192
- "internalType": "address",
1193
- "name": "_token",
1194
- "type": "address"
1363
+ internalType: 'address',
1364
+ name: '_token',
1365
+ type: 'address',
1195
1366
  },
1196
1367
  {
1197
- "internalType": "uint256",
1198
- "name": "_tokenId",
1199
- "type": "uint256"
1368
+ internalType: 'uint256',
1369
+ name: '_tokenId',
1370
+ type: 'uint256',
1200
1371
  },
1201
1372
  {
1202
- "internalType": "address",
1203
- "name": "_recipient",
1204
- "type": "address"
1205
- }
1373
+ internalType: 'address',
1374
+ name: '_recipient',
1375
+ type: 'address',
1376
+ },
1206
1377
  ],
1207
- "name": "recoverERC721",
1208
- "outputs": [],
1209
- "stateMutability": "nonpayable",
1210
- "type": "function"
1378
+ name: 'recoverERC721',
1379
+ outputs: [],
1380
+ stateMutability: 'nonpayable',
1381
+ type: 'function',
1211
1382
  },
1212
1383
  {
1213
- "inputs": [
1384
+ inputs: [
1214
1385
  {
1215
- "internalType": "bytes32",
1216
- "name": "role",
1217
- "type": "bytes32"
1386
+ internalType: 'bytes32',
1387
+ name: 'role',
1388
+ type: 'bytes32',
1218
1389
  },
1219
1390
  {
1220
- "internalType": "address",
1221
- "name": "callerConfirmation",
1222
- "type": "address"
1223
- }
1391
+ internalType: 'address',
1392
+ name: 'callerConfirmation',
1393
+ type: 'address',
1394
+ },
1224
1395
  ],
1225
- "name": "renounceRole",
1226
- "outputs": [],
1227
- "stateMutability": "nonpayable",
1228
- "type": "function"
1396
+ name: 'renounceRole',
1397
+ outputs: [],
1398
+ stateMutability: 'nonpayable',
1399
+ type: 'function',
1229
1400
  },
1230
1401
  {
1231
- "inputs": [
1402
+ inputs: [
1232
1403
  {
1233
- "internalType": "bytes",
1234
- "name": "_validatorPublicKey",
1235
- "type": "bytes"
1236
- }
1404
+ internalType: 'bytes',
1405
+ name: '_pubkeys',
1406
+ type: 'bytes',
1407
+ },
1237
1408
  ],
1238
- "name": "requestValidatorExit",
1239
- "outputs": [],
1240
- "stateMutability": "nonpayable",
1241
- "type": "function"
1409
+ name: 'requestValidatorExit',
1410
+ outputs: [],
1411
+ stateMutability: 'nonpayable',
1412
+ type: 'function',
1242
1413
  },
1243
1414
  {
1244
- "inputs": [],
1245
- "name": "reserveRatioBP",
1246
- "outputs": [
1415
+ inputs: [],
1416
+ name: 'reserveRatioBP',
1417
+ outputs: [
1247
1418
  {
1248
- "internalType": "uint16",
1249
- "name": "",
1250
- "type": "uint16"
1251
- }
1419
+ internalType: 'uint16',
1420
+ name: '',
1421
+ type: 'uint16',
1422
+ },
1252
1423
  ],
1253
- "stateMutability": "view",
1254
- "type": "function"
1424
+ stateMutability: 'view',
1425
+ type: 'function',
1255
1426
  },
1256
1427
  {
1257
- "inputs": [],
1258
- "name": "resumeBeaconChainDeposits",
1259
- "outputs": [],
1260
- "stateMutability": "nonpayable",
1261
- "type": "function"
1428
+ inputs: [],
1429
+ name: 'resumeBeaconChainDeposits',
1430
+ outputs: [],
1431
+ stateMutability: 'nonpayable',
1432
+ type: 'function',
1262
1433
  },
1263
1434
  {
1264
- "inputs": [
1435
+ inputs: [
1265
1436
  {
1266
- "internalType": "bytes32",
1267
- "name": "role",
1268
- "type": "bytes32"
1437
+ internalType: 'bytes32',
1438
+ name: 'role',
1439
+ type: 'bytes32',
1269
1440
  },
1270
1441
  {
1271
- "internalType": "address",
1272
- "name": "account",
1273
- "type": "address"
1274
- }
1442
+ internalType: 'address',
1443
+ name: 'account',
1444
+ type: 'address',
1445
+ },
1275
1446
  ],
1276
- "name": "revokeRole",
1277
- "outputs": [],
1278
- "stateMutability": "nonpayable",
1279
- "type": "function"
1447
+ name: 'revokeRole',
1448
+ outputs: [],
1449
+ stateMutability: 'nonpayable',
1450
+ type: 'function',
1280
1451
  },
1281
1452
  {
1282
- "inputs": [
1453
+ inputs: [
1283
1454
  {
1284
- "components": [
1455
+ components: [
1285
1456
  {
1286
- "internalType": "address",
1287
- "name": "account",
1288
- "type": "address"
1457
+ internalType: 'address',
1458
+ name: 'account',
1459
+ type: 'address',
1289
1460
  },
1290
1461
  {
1291
- "internalType": "bytes32",
1292
- "name": "role",
1293
- "type": "bytes32"
1294
- }
1462
+ internalType: 'bytes32',
1463
+ name: 'role',
1464
+ type: 'bytes32',
1465
+ },
1295
1466
  ],
1296
- "internalType": "struct Dashboard.RoleAssignment[]",
1297
- "name": "_assignments",
1298
- "type": "tuple[]"
1299
- }
1467
+ internalType: 'struct Permissions.RoleAssignment[]',
1468
+ name: '_assignments',
1469
+ type: 'tuple[]',
1470
+ },
1300
1471
  ],
1301
- "name": "revokeRoles",
1302
- "outputs": [],
1303
- "stateMutability": "nonpayable",
1304
- "type": "function"
1472
+ name: 'revokeRoles',
1473
+ outputs: [],
1474
+ stateMutability: 'nonpayable',
1475
+ type: 'function',
1305
1476
  },
1306
1477
  {
1307
- "inputs": [
1478
+ inputs: [
1308
1479
  {
1309
- "internalType": "uint256",
1310
- "name": "_newCuratorFeeBP",
1311
- "type": "uint256"
1312
- }
1480
+ internalType: 'uint256',
1481
+ name: '_newConfirmExpiry',
1482
+ type: 'uint256',
1483
+ },
1313
1484
  ],
1314
- "name": "setCuratorFeeBP",
1315
- "outputs": [],
1316
- "stateMutability": "nonpayable",
1317
- "type": "function"
1485
+ name: 'setConfirmExpiry',
1486
+ outputs: [],
1487
+ stateMutability: 'nonpayable',
1488
+ type: 'function',
1318
1489
  },
1319
1490
  {
1320
- "inputs": [
1491
+ inputs: [
1321
1492
  {
1322
- "internalType": "uint256",
1323
- "name": "_newNodeOperatorFeeBP",
1324
- "type": "uint256"
1325
- }
1493
+ internalType: 'uint256',
1494
+ name: '_newCuratorFeeBP',
1495
+ type: 'uint256',
1496
+ },
1326
1497
  ],
1327
- "name": "setNodeOperatorFeeBP",
1328
- "outputs": [],
1329
- "stateMutability": "nonpayable",
1330
- "type": "function"
1498
+ name: 'setCuratorFeeBP',
1499
+ outputs: [],
1500
+ stateMutability: 'nonpayable',
1501
+ type: 'function',
1331
1502
  },
1332
1503
  {
1333
- "inputs": [
1504
+ inputs: [
1334
1505
  {
1335
- "internalType": "uint256",
1336
- "name": "_newVoteLifetime",
1337
- "type": "uint256"
1338
- }
1506
+ internalType: 'uint256',
1507
+ name: '_newNodeOperatorFeeBP',
1508
+ type: 'uint256',
1509
+ },
1339
1510
  ],
1340
- "name": "setVoteLifetime",
1341
- "outputs": [],
1342
- "stateMutability": "nonpayable",
1343
- "type": "function"
1511
+ name: 'setNodeOperatorFeeBP',
1512
+ outputs: [],
1513
+ stateMutability: 'nonpayable',
1514
+ type: 'function',
1344
1515
  },
1345
1516
  {
1346
- "inputs": [],
1347
- "name": "shareLimit",
1348
- "outputs": [
1517
+ inputs: [],
1518
+ name: 'shareLimit',
1519
+ outputs: [
1349
1520
  {
1350
- "internalType": "uint96",
1351
- "name": "",
1352
- "type": "uint96"
1353
- }
1521
+ internalType: 'uint96',
1522
+ name: '',
1523
+ type: 'uint96',
1524
+ },
1354
1525
  ],
1355
- "stateMutability": "view",
1356
- "type": "function"
1526
+ stateMutability: 'view',
1527
+ type: 'function',
1357
1528
  },
1358
1529
  {
1359
- "inputs": [],
1360
- "name": "sharesMinted",
1361
- "outputs": [
1530
+ inputs: [],
1531
+ name: 'sharesMinted',
1532
+ outputs: [
1362
1533
  {
1363
- "internalType": "uint96",
1364
- "name": "",
1365
- "type": "uint96"
1366
- }
1534
+ internalType: 'uint96',
1535
+ name: '',
1536
+ type: 'uint96',
1537
+ },
1367
1538
  ],
1368
- "stateMutability": "view",
1369
- "type": "function"
1539
+ stateMutability: 'view',
1540
+ type: 'function',
1370
1541
  },
1371
1542
  {
1372
- "inputs": [],
1373
- "name": "stakingVault",
1374
- "outputs": [
1543
+ inputs: [],
1544
+ name: 'stakingVault',
1545
+ outputs: [
1375
1546
  {
1376
- "internalType": "contract IStakingVault",
1377
- "name": "",
1378
- "type": "address"
1379
- }
1547
+ internalType: 'contract IStakingVault',
1548
+ name: '',
1549
+ type: 'address',
1550
+ },
1380
1551
  ],
1381
- "stateMutability": "view",
1382
- "type": "function"
1552
+ stateMutability: 'view',
1553
+ type: 'function',
1383
1554
  },
1384
1555
  {
1385
- "inputs": [
1556
+ inputs: [
1386
1557
  {
1387
- "internalType": "bytes4",
1388
- "name": "interfaceId",
1389
- "type": "bytes4"
1390
- }
1558
+ internalType: 'bytes4',
1559
+ name: 'interfaceId',
1560
+ type: 'bytes4',
1561
+ },
1391
1562
  ],
1392
- "name": "supportsInterface",
1393
- "outputs": [
1563
+ name: 'supportsInterface',
1564
+ outputs: [
1394
1565
  {
1395
- "internalType": "bool",
1396
- "name": "",
1397
- "type": "bool"
1398
- }
1566
+ internalType: 'bool',
1567
+ name: '',
1568
+ type: 'bool',
1569
+ },
1399
1570
  ],
1400
- "stateMutability": "view",
1401
- "type": "function"
1571
+ stateMutability: 'view',
1572
+ type: 'function',
1402
1573
  },
1403
1574
  {
1404
- "inputs": [],
1405
- "name": "thresholdReserveRatioBP",
1406
- "outputs": [
1575
+ inputs: [],
1576
+ name: 'totalMintableShares',
1577
+ outputs: [
1407
1578
  {
1408
- "internalType": "uint16",
1409
- "name": "",
1410
- "type": "uint16"
1411
- }
1579
+ internalType: 'uint256',
1580
+ name: '',
1581
+ type: 'uint256',
1582
+ },
1412
1583
  ],
1413
- "stateMutability": "view",
1414
- "type": "function"
1584
+ stateMutability: 'view',
1585
+ type: 'function',
1415
1586
  },
1416
1587
  {
1417
- "inputs": [],
1418
- "name": "totalMintableShares",
1419
- "outputs": [
1588
+ inputs: [
1420
1589
  {
1421
- "internalType": "uint256",
1422
- "name": "",
1423
- "type": "uint256"
1424
- }
1590
+ internalType: 'address',
1591
+ name: '_newOwner',
1592
+ type: 'address',
1593
+ },
1425
1594
  ],
1426
- "stateMutability": "view",
1427
- "type": "function"
1595
+ name: 'transferStakingVaultOwnership',
1596
+ outputs: [],
1597
+ stateMutability: 'nonpayable',
1598
+ type: 'function',
1428
1599
  },
1429
1600
  {
1430
- "inputs": [
1601
+ inputs: [],
1602
+ name: 'treasuryFeeBP',
1603
+ outputs: [
1431
1604
  {
1432
- "internalType": "address",
1433
- "name": "_newOwner",
1434
- "type": "address"
1435
- }
1605
+ internalType: 'uint16',
1606
+ name: '',
1607
+ type: 'uint16',
1608
+ },
1436
1609
  ],
1437
- "name": "transferStakingVaultOwnership",
1438
- "outputs": [],
1439
- "stateMutability": "nonpayable",
1440
- "type": "function"
1610
+ stateMutability: 'view',
1611
+ type: 'function',
1441
1612
  },
1442
1613
  {
1443
- "inputs": [],
1444
- "name": "treasuryFee",
1445
- "outputs": [
1614
+ inputs: [
1615
+ {
1616
+ internalType: 'bytes',
1617
+ name: '_pubkeys',
1618
+ type: 'bytes',
1619
+ },
1620
+ {
1621
+ internalType: 'uint64[]',
1622
+ name: '_amounts',
1623
+ type: 'uint64[]',
1624
+ },
1446
1625
  {
1447
- "internalType": "uint16",
1448
- "name": "",
1449
- "type": "uint16"
1450
- }
1626
+ internalType: 'address',
1627
+ name: '_refundRecipient',
1628
+ type: 'address',
1629
+ },
1451
1630
  ],
1452
- "stateMutability": "view",
1453
- "type": "function"
1631
+ name: 'triggerValidatorWithdrawal',
1632
+ outputs: [],
1633
+ stateMutability: 'payable',
1634
+ type: 'function',
1454
1635
  },
1455
1636
  {
1456
- "inputs": [],
1457
- "name": "unreserved",
1458
- "outputs": [
1637
+ inputs: [],
1638
+ name: 'unreserved',
1639
+ outputs: [
1459
1640
  {
1460
- "internalType": "uint256",
1461
- "name": "",
1462
- "type": "uint256"
1463
- }
1641
+ internalType: 'uint256',
1642
+ name: '',
1643
+ type: 'uint256',
1644
+ },
1464
1645
  ],
1465
- "stateMutability": "view",
1466
- "type": "function"
1646
+ stateMutability: 'view',
1647
+ type: 'function',
1467
1648
  },
1468
1649
  {
1469
- "inputs": [],
1470
- "name": "valuation",
1471
- "outputs": [
1650
+ inputs: [],
1651
+ name: 'valuation',
1652
+ outputs: [
1472
1653
  {
1473
- "internalType": "uint256",
1474
- "name": "",
1475
- "type": "uint256"
1476
- }
1654
+ internalType: 'uint256',
1655
+ name: '',
1656
+ type: 'uint256',
1657
+ },
1477
1658
  ],
1478
- "stateMutability": "view",
1479
- "type": "function"
1659
+ stateMutability: 'view',
1660
+ type: 'function',
1480
1661
  },
1481
1662
  {
1482
- "inputs": [],
1483
- "name": "vaultHub",
1484
- "outputs": [
1663
+ inputs: [],
1664
+ name: 'vaultHub',
1665
+ outputs: [
1485
1666
  {
1486
- "internalType": "contract VaultHub",
1487
- "name": "",
1488
- "type": "address"
1489
- }
1667
+ internalType: 'contract VaultHub',
1668
+ name: '',
1669
+ type: 'address',
1670
+ },
1490
1671
  ],
1491
- "stateMutability": "view",
1492
- "type": "function"
1672
+ stateMutability: 'view',
1673
+ type: 'function',
1493
1674
  },
1494
1675
  {
1495
- "inputs": [],
1496
- "name": "vaultSocket",
1497
- "outputs": [
1676
+ inputs: [],
1677
+ name: 'vaultSocket',
1678
+ outputs: [
1498
1679
  {
1499
- "components": [
1680
+ components: [
1500
1681
  {
1501
- "internalType": "address",
1502
- "name": "vault",
1503
- "type": "address"
1682
+ internalType: 'address',
1683
+ name: 'vault',
1684
+ type: 'address',
1504
1685
  },
1505
1686
  {
1506
- "internalType": "uint96",
1507
- "name": "sharesMinted",
1508
- "type": "uint96"
1687
+ internalType: 'uint96',
1688
+ name: 'sharesMinted',
1689
+ type: 'uint96',
1509
1690
  },
1510
1691
  {
1511
- "internalType": "uint96",
1512
- "name": "shareLimit",
1513
- "type": "uint96"
1692
+ internalType: 'uint96',
1693
+ name: 'shareLimit',
1694
+ type: 'uint96',
1514
1695
  },
1515
1696
  {
1516
- "internalType": "uint16",
1517
- "name": "reserveRatioBP",
1518
- "type": "uint16"
1697
+ internalType: 'uint16',
1698
+ name: 'reserveRatioBP',
1699
+ type: 'uint16',
1519
1700
  },
1520
1701
  {
1521
- "internalType": "uint16",
1522
- "name": "reserveRatioThresholdBP",
1523
- "type": "uint16"
1702
+ internalType: 'uint16',
1703
+ name: 'rebalanceThresholdBP',
1704
+ type: 'uint16',
1524
1705
  },
1525
1706
  {
1526
- "internalType": "uint16",
1527
- "name": "treasuryFeeBP",
1528
- "type": "uint16"
1707
+ internalType: 'uint16',
1708
+ name: 'treasuryFeeBP',
1709
+ type: 'uint16',
1529
1710
  },
1530
1711
  {
1531
- "internalType": "bool",
1532
- "name": "isDisconnected",
1533
- "type": "bool"
1534
- }
1712
+ internalType: 'bool',
1713
+ name: 'pendingDisconnect',
1714
+ type: 'bool',
1715
+ },
1535
1716
  ],
1536
- "internalType": "struct VaultHub.VaultSocket",
1537
- "name": "",
1538
- "type": "tuple"
1539
- }
1540
- ],
1541
- "stateMutability": "view",
1542
- "type": "function"
1543
- },
1544
- {
1545
- "inputs": [],
1546
- "name": "voluntaryDisconnect",
1547
- "outputs": [],
1548
- "stateMutability": "payable",
1549
- "type": "function"
1550
- },
1551
- {
1552
- "inputs": [],
1553
- "name": "voteLifetime",
1554
- "outputs": [
1555
- {
1556
- "internalType": "uint256",
1557
- "name": "",
1558
- "type": "uint256"
1559
- }
1717
+ internalType: 'struct VaultHub.VaultSocket',
1718
+ name: '',
1719
+ type: 'tuple',
1720
+ },
1560
1721
  ],
1561
- "stateMutability": "view",
1562
- "type": "function"
1722
+ stateMutability: 'view',
1723
+ type: 'function',
1563
1724
  },
1564
1725
  {
1565
- "inputs": [],
1566
- "name": "votingCommittee",
1567
- "outputs": [
1568
- {
1569
- "internalType": "bytes32[]",
1570
- "name": "",
1571
- "type": "bytes32[]"
1572
- }
1573
- ],
1574
- "stateMutability": "pure",
1575
- "type": "function"
1726
+ inputs: [],
1727
+ name: 'voluntaryDisconnect',
1728
+ outputs: [],
1729
+ stateMutability: 'payable',
1730
+ type: 'function',
1576
1731
  },
1577
1732
  {
1578
- "inputs": [
1733
+ inputs: [
1579
1734
  {
1580
- "internalType": "bytes32",
1581
- "name": "callId",
1582
- "type": "bytes32"
1735
+ internalType: 'address',
1736
+ name: '_recipient',
1737
+ type: 'address',
1583
1738
  },
1584
1739
  {
1585
- "internalType": "bytes32",
1586
- "name": "role",
1587
- "type": "bytes32"
1588
- }
1589
- ],
1590
- "name": "votings",
1591
- "outputs": [
1592
- {
1593
- "internalType": "uint256",
1594
- "name": "voteTimestamp",
1595
- "type": "uint256"
1596
- }
1740
+ internalType: 'uint256',
1741
+ name: '_ether',
1742
+ type: 'uint256',
1743
+ },
1597
1744
  ],
1598
- "stateMutability": "view",
1599
- "type": "function"
1745
+ name: 'withdraw',
1746
+ outputs: [],
1747
+ stateMutability: 'nonpayable',
1748
+ type: 'function',
1600
1749
  },
1601
1750
  {
1602
- "inputs": [
1751
+ inputs: [
1603
1752
  {
1604
- "internalType": "address",
1605
- "name": "_recipient",
1606
- "type": "address"
1753
+ internalType: 'address',
1754
+ name: '_recipient',
1755
+ type: 'address',
1607
1756
  },
1608
1757
  {
1609
- "internalType": "uint256",
1610
- "name": "_ether",
1611
- "type": "uint256"
1612
- }
1758
+ internalType: 'uint256',
1759
+ name: '_amountOfWETH',
1760
+ type: 'uint256',
1761
+ },
1613
1762
  ],
1614
- "name": "withdraw",
1615
- "outputs": [],
1616
- "stateMutability": "nonpayable",
1617
- "type": "function"
1763
+ name: 'withdrawWETH',
1764
+ outputs: [],
1765
+ stateMutability: 'nonpayable',
1766
+ type: 'function',
1618
1767
  },
1619
1768
  {
1620
- "inputs": [
1769
+ inputs: [],
1770
+ name: 'withdrawableEther',
1771
+ outputs: [
1621
1772
  {
1622
- "internalType": "address",
1623
- "name": "_recipient",
1624
- "type": "address"
1773
+ internalType: 'uint256',
1774
+ name: '',
1775
+ type: 'uint256',
1625
1776
  },
1626
- {
1627
- "internalType": "uint256",
1628
- "name": "_amountOfWETH",
1629
- "type": "uint256"
1630
- }
1631
1777
  ],
1632
- "name": "withdrawWETH",
1633
- "outputs": [],
1634
- "stateMutability": "nonpayable",
1635
- "type": "function"
1778
+ stateMutability: 'view',
1779
+ type: 'function',
1636
1780
  },
1637
1781
  {
1638
- "inputs": [],
1639
- "name": "withdrawableEther",
1640
- "outputs": [
1641
- {
1642
- "internalType": "uint256",
1643
- "name": "",
1644
- "type": "uint256"
1645
- }
1646
- ],
1647
- "stateMutability": "view",
1648
- "type": "function"
1782
+ stateMutability: 'payable',
1783
+ type: 'receive',
1649
1784
  },
1650
- {
1651
- "stateMutability": "payable",
1652
- "type": "receive"
1653
- }
1654
1785
  ];
1655
1786
  //# sourceMappingURL=Delegation.js.map