@wireio/stake 0.1.0 → 0.1.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.
- package/README.md +57 -0
- package/lib/stake.browser.js +11836 -4103
- package/lib/stake.browser.js.map +1 -1
- package/lib/stake.d.ts +374 -556
- package/lib/stake.js +12089 -4303
- package/lib/stake.js.map +1 -1
- package/lib/stake.m.js +11836 -4103
- package/lib/stake.m.js.map +1 -1
- package/package.json +1 -1
- package/src/assets/ethereum/ABI/liqEth/DepositManager.sol/DepositManager.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/DepositManager.sol/DepositManager.json +1153 -0
- package/src/assets/ethereum/ABI/liqEth/LiqEthCommon.sol/IAccounting.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/LiqEthCommon.sol/IAccounting.json +172 -0
- package/src/assets/ethereum/ABI/liqEth/LiqEthCommon.sol/IDepositContract.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/LiqEthCommon.sol/IDepositContract.json +39 -0
- package/src/assets/ethereum/ABI/liqEth/LiqEthCommon.sol/IDepositManager.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/LiqEthCommon.sol/IDepositManager.json +64 -0
- package/src/assets/ethereum/ABI/liqEth/LiqEthCommon.sol/ILiqEthBurn.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/LiqEthCommon.sol/ILiqEthBurn.json +24 -0
- package/src/assets/ethereum/ABI/liqEth/LiqEthCommon.sol/ILiqEthMint.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/LiqEthCommon.sol/ILiqEthMint.json +35 -0
- package/src/assets/ethereum/ABI/liqEth/LiqEthCommon.sol/IRewardsERC20.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/LiqEthCommon.sol/IRewardsERC20.json +213 -0
- package/src/assets/ethereum/ABI/liqEth/LiqEthCommon.sol/IStakingModule.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/LiqEthCommon.sol/IStakingModule.json +138 -0
- package/src/assets/ethereum/ABI/liqEth/LiqEthCommon.sol/IValidatorBalanceVerifier.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/LiqEthCommon.sol/IValidatorBalanceVerifier.json +70 -0
- package/src/assets/ethereum/ABI/liqEth/LiqEthCommon.sol/IWithdrawalRecord.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/LiqEthCommon.sol/IWithdrawalRecord.json +64 -0
- package/src/assets/ethereum/ABI/liqEth/LiqEthCommon.sol/LiqEthCommon.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/LiqEthCommon.sol/LiqEthCommon.json +10 -0
- package/src/assets/ethereum/ABI/liqEth/RewardsERC20.sol/RewardsERC20.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/RewardsERC20.sol/RewardsERC20.json +749 -0
- package/src/assets/ethereum/ABI/liqEth/RewardsERC20Pausable.sol/RewardsERC20Pausable.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/RewardsERC20Pausable.sol/RewardsERC20Pausable.json +812 -0
- package/src/assets/ethereum/ABI/liqEth/ValidatorBalanceVerifier.sol/BeaconRoots.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/ValidatorBalanceVerifier.sol/BeaconRoots.json +10 -0
- package/src/assets/ethereum/ABI/liqEth/ValidatorBalanceVerifier.sol/SSZ.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/ValidatorBalanceVerifier.sol/SSZ.json +10 -0
- package/src/assets/ethereum/ABI/liqEth/ValidatorBalanceVerifier.sol/ValidatorBalanceVerifier.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/ValidatorBalanceVerifier.sol/ValidatorBalanceVerifier.json +225 -0
- package/src/assets/ethereum/ABI/liqEth/Yield.sol/BeaconRoots.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/Yield.sol/BeaconRoots.json +10 -0
- package/src/assets/ethereum/ABI/liqEth/Yield.sol/SSZ.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/Yield.sol/SSZ.json +10 -0
- package/src/assets/ethereum/ABI/liqEth/Yield.sol/YieldOracle.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/Yield.sol/YieldOracle.json +813 -0
- package/src/assets/ethereum/ABI/liqEth/accounting.sol/Accounting.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/accounting.sol/Accounting.json +651 -0
- package/src/assets/ethereum/ABI/liqEth/liqEth.sol/LiqEthToken.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/liqEth.sol/LiqEthToken.json +1110 -0
- package/src/assets/ethereum/ABI/liqEth/liqEthBurn.sol/LiqEthBurn.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/liqEthBurn.sol/LiqEthBurn.json +391 -0
- package/src/assets/ethereum/ABI/liqEth/liqEthMint.sol/LiqEthMint.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/liqEthMint.sol/LiqEthMint.json +402 -0
- package/src/assets/ethereum/ABI/liqEth/stakingModule.sol/StakingModule.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/stakingModule.sol/StakingModule.json +1225 -0
- package/src/assets/ethereum/ABI/liqEth/withdrawalQueue.sol/WithdrawalQueue.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/withdrawalQueue.sol/WithdrawalQueue.json +927 -0
- package/src/assets/ethereum/ABI/liqEth/withdrawalVault.sol/Uint64BE.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/withdrawalVault.sol/Uint64BE.json +10 -0
- package/src/assets/ethereum/ABI/liqEth/withdrawalVault.sol/WithdrawalVault.dbg.json +4 -0
- package/src/assets/ethereum/ABI/liqEth/withdrawalVault.sol/WithdrawalVault.json +447 -0
- package/src/assets/solana/idl/liqsol_core.json +4239 -0
- package/src/assets/solana/idl/liqsol_token.json +183 -0
- package/src/assets/solana/idl/validator_leaderboard.json +270 -265
- package/src/assets/solana/types/liqsol_core.ts +4245 -0
- package/src/assets/solana/types/liqsol_token.ts +189 -0
- package/src/assets/solana/types/validator_leaderboard.ts +270 -265
- package/src/index.ts +1 -3
- package/src/networks/ethereum/contract.ts +101 -36
- package/src/networks/ethereum/ethereum.ts +141 -45
- package/src/networks/ethereum/types.ts +30 -2
- package/src/networks/solana/clients/deposit.client.ts +71 -109
- package/src/networks/solana/clients/distribution.client.ts +256 -383
- package/src/networks/solana/clients/leaderboard.client.ts +38 -133
- package/src/networks/solana/constants.ts +214 -130
- package/src/networks/solana/program.ts +25 -38
- package/src/networks/solana/solana.ts +120 -105
- package/src/networks/solana/types.ts +37 -47
- package/src/networks/solana/utils.ts +551 -0
- package/src/scripts/tsconfig.json +17 -0
- package/src/staker/staker.ts +10 -6
- package/src/staker/types.ts +14 -9
- package/src/assets/solana/idl/deposit.json +0 -296
- package/src/assets/solana/idl/distribution.json +0 -768
- package/src/assets/solana/idl/liq_sol_token.json +0 -298
- package/src/assets/solana/idl/mint_helper.json +0 -110
- package/src/assets/solana/idl/read_tracked_balance.json +0 -140
- package/src/assets/solana/idl/stake_controller.json +0 -2149
- package/src/assets/solana/idl/treasury.json +0 -110
- package/src/assets/solana/idl/validator_registry.json +0 -487
- package/src/assets/solana/idl/yield_oracle.json +0 -32
- package/src/assets/solana/types/deposit.ts +0 -302
- package/src/assets/solana/types/distribution.ts +0 -774
- package/src/assets/solana/types/liq_sol_token.ts +0 -304
- package/src/assets/solana/types/mint_helper.ts +0 -116
- package/src/assets/solana/types/read_tracked_balance.ts +0 -146
- package/src/assets/solana/types/stake_controller.ts +0 -2155
- package/src/assets/solana/types/stake_registry.ts +0 -441
- package/src/assets/solana/types/treasury.ts +0 -116
- package/src/assets/solana/types/validator_registry.ts +0 -493
- package/src/assets/solana/types/yield_oracle.ts +0 -38
- package/src/common/utils.ts +0 -9
|
@@ -0,0 +1,1153 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "DepositManager",
|
|
4
|
+
"sourceName": "contracts/liqEth/DepositManager.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "contract RewardsERC20Pausable",
|
|
10
|
+
"name": "_liqEth",
|
|
11
|
+
"type": "address"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"internalType": "contract ILiqEthBurn",
|
|
15
|
+
"name": "_burner",
|
|
16
|
+
"type": "address"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"internalType": "contract ILiqEthMint",
|
|
20
|
+
"name": "_minter",
|
|
21
|
+
"type": "address"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"internalType": "contract IWithdrawalRecord",
|
|
25
|
+
"name": "_queue",
|
|
26
|
+
"type": "address"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"internalType": "contract IStakingModule",
|
|
30
|
+
"name": "_stakingModule",
|
|
31
|
+
"type": "address"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"internalType": "uint64",
|
|
35
|
+
"name": "_entryQueue",
|
|
36
|
+
"type": "uint64"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"internalType": "uint64",
|
|
40
|
+
"name": "_dailyRateBPS",
|
|
41
|
+
"type": "uint64"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"internalType": "uint64",
|
|
45
|
+
"name": "_withdrawDelay",
|
|
46
|
+
"type": "uint64"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"internalType": "uint64",
|
|
50
|
+
"name": "_rewardCooldown",
|
|
51
|
+
"type": "uint64"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"internalType": "address",
|
|
55
|
+
"name": "_admin",
|
|
56
|
+
"type": "address"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"internalType": "address",
|
|
60
|
+
"name": "_oracle",
|
|
61
|
+
"type": "address"
|
|
62
|
+
}
|
|
63
|
+
],
|
|
64
|
+
"stateMutability": "nonpayable",
|
|
65
|
+
"type": "constructor"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"inputs": [],
|
|
69
|
+
"name": "AccessControlBadConfirmation",
|
|
70
|
+
"type": "error"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"inputs": [
|
|
74
|
+
{
|
|
75
|
+
"internalType": "address",
|
|
76
|
+
"name": "account",
|
|
77
|
+
"type": "address"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"internalType": "bytes32",
|
|
81
|
+
"name": "neededRole",
|
|
82
|
+
"type": "bytes32"
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"name": "AccessControlUnauthorizedAccount",
|
|
86
|
+
"type": "error"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"inputs": [],
|
|
90
|
+
"name": "EnforcedPause",
|
|
91
|
+
"type": "error"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"inputs": [],
|
|
95
|
+
"name": "ExpectedPause",
|
|
96
|
+
"type": "error"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"inputs": [],
|
|
100
|
+
"name": "FailedCall",
|
|
101
|
+
"type": "error"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"inputs": [
|
|
105
|
+
{
|
|
106
|
+
"internalType": "uint256",
|
|
107
|
+
"name": "balance",
|
|
108
|
+
"type": "uint256"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"internalType": "uint256",
|
|
112
|
+
"name": "needed",
|
|
113
|
+
"type": "uint256"
|
|
114
|
+
}
|
|
115
|
+
],
|
|
116
|
+
"name": "InsufficientBalance",
|
|
117
|
+
"type": "error"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"inputs": [],
|
|
121
|
+
"name": "ReentrancyGuardReentrantCall",
|
|
122
|
+
"type": "error"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"anonymous": false,
|
|
126
|
+
"inputs": [
|
|
127
|
+
{
|
|
128
|
+
"indexed": true,
|
|
129
|
+
"internalType": "address",
|
|
130
|
+
"name": "user",
|
|
131
|
+
"type": "address"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"indexed": false,
|
|
135
|
+
"internalType": "uint256",
|
|
136
|
+
"name": "amount",
|
|
137
|
+
"type": "uint256"
|
|
138
|
+
}
|
|
139
|
+
],
|
|
140
|
+
"name": "Claimed",
|
|
141
|
+
"type": "event"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"anonymous": false,
|
|
145
|
+
"inputs": [
|
|
146
|
+
{
|
|
147
|
+
"indexed": false,
|
|
148
|
+
"internalType": "uint64",
|
|
149
|
+
"name": "dailyRateBPS",
|
|
150
|
+
"type": "uint64"
|
|
151
|
+
}
|
|
152
|
+
],
|
|
153
|
+
"name": "DailyRateUpdated",
|
|
154
|
+
"type": "event"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"anonymous": false,
|
|
158
|
+
"inputs": [
|
|
159
|
+
{
|
|
160
|
+
"indexed": true,
|
|
161
|
+
"internalType": "address",
|
|
162
|
+
"name": "user",
|
|
163
|
+
"type": "address"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"indexed": false,
|
|
167
|
+
"internalType": "uint256",
|
|
168
|
+
"name": "netEth",
|
|
169
|
+
"type": "uint256"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"indexed": false,
|
|
173
|
+
"internalType": "uint256",
|
|
174
|
+
"name": "fee",
|
|
175
|
+
"type": "uint256"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"indexed": false,
|
|
179
|
+
"internalType": "uint256",
|
|
180
|
+
"name": "shares",
|
|
181
|
+
"type": "uint256"
|
|
182
|
+
}
|
|
183
|
+
],
|
|
184
|
+
"name": "Deposited",
|
|
185
|
+
"type": "event"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"anonymous": false,
|
|
189
|
+
"inputs": [
|
|
190
|
+
{
|
|
191
|
+
"indexed": false,
|
|
192
|
+
"internalType": "uint64",
|
|
193
|
+
"name": "entryQueue",
|
|
194
|
+
"type": "uint64"
|
|
195
|
+
}
|
|
196
|
+
],
|
|
197
|
+
"name": "EntryQueueUpdated",
|
|
198
|
+
"type": "event"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"anonymous": false,
|
|
202
|
+
"inputs": [
|
|
203
|
+
{
|
|
204
|
+
"indexed": false,
|
|
205
|
+
"internalType": "uint256",
|
|
206
|
+
"name": "ethAmount",
|
|
207
|
+
"type": "uint256"
|
|
208
|
+
}
|
|
209
|
+
],
|
|
210
|
+
"name": "FullExitReceived",
|
|
211
|
+
"type": "event"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"anonymous": false,
|
|
215
|
+
"inputs": [
|
|
216
|
+
{
|
|
217
|
+
"indexed": false,
|
|
218
|
+
"internalType": "uint256",
|
|
219
|
+
"name": "ethAmount",
|
|
220
|
+
"type": "uint256"
|
|
221
|
+
}
|
|
222
|
+
],
|
|
223
|
+
"name": "PartiallyExitReceived",
|
|
224
|
+
"type": "event"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"anonymous": false,
|
|
228
|
+
"inputs": [
|
|
229
|
+
{
|
|
230
|
+
"indexed": false,
|
|
231
|
+
"internalType": "address",
|
|
232
|
+
"name": "account",
|
|
233
|
+
"type": "address"
|
|
234
|
+
}
|
|
235
|
+
],
|
|
236
|
+
"name": "Paused",
|
|
237
|
+
"type": "event"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"anonymous": false,
|
|
241
|
+
"inputs": [
|
|
242
|
+
{
|
|
243
|
+
"indexed": false,
|
|
244
|
+
"internalType": "uint256",
|
|
245
|
+
"name": "toUsers",
|
|
246
|
+
"type": "uint256"
|
|
247
|
+
}
|
|
248
|
+
],
|
|
249
|
+
"name": "RewardPushed",
|
|
250
|
+
"type": "event"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"anonymous": false,
|
|
254
|
+
"inputs": [
|
|
255
|
+
{
|
|
256
|
+
"indexed": true,
|
|
257
|
+
"internalType": "bytes32",
|
|
258
|
+
"name": "role",
|
|
259
|
+
"type": "bytes32"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"indexed": true,
|
|
263
|
+
"internalType": "bytes32",
|
|
264
|
+
"name": "previousAdminRole",
|
|
265
|
+
"type": "bytes32"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"indexed": true,
|
|
269
|
+
"internalType": "bytes32",
|
|
270
|
+
"name": "newAdminRole",
|
|
271
|
+
"type": "bytes32"
|
|
272
|
+
}
|
|
273
|
+
],
|
|
274
|
+
"name": "RoleAdminChanged",
|
|
275
|
+
"type": "event"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"anonymous": false,
|
|
279
|
+
"inputs": [
|
|
280
|
+
{
|
|
281
|
+
"indexed": true,
|
|
282
|
+
"internalType": "bytes32",
|
|
283
|
+
"name": "role",
|
|
284
|
+
"type": "bytes32"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"indexed": true,
|
|
288
|
+
"internalType": "address",
|
|
289
|
+
"name": "account",
|
|
290
|
+
"type": "address"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"indexed": true,
|
|
294
|
+
"internalType": "address",
|
|
295
|
+
"name": "sender",
|
|
296
|
+
"type": "address"
|
|
297
|
+
}
|
|
298
|
+
],
|
|
299
|
+
"name": "RoleGranted",
|
|
300
|
+
"type": "event"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"anonymous": false,
|
|
304
|
+
"inputs": [
|
|
305
|
+
{
|
|
306
|
+
"indexed": true,
|
|
307
|
+
"internalType": "bytes32",
|
|
308
|
+
"name": "role",
|
|
309
|
+
"type": "bytes32"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"indexed": true,
|
|
313
|
+
"internalType": "address",
|
|
314
|
+
"name": "account",
|
|
315
|
+
"type": "address"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"indexed": true,
|
|
319
|
+
"internalType": "address",
|
|
320
|
+
"name": "sender",
|
|
321
|
+
"type": "address"
|
|
322
|
+
}
|
|
323
|
+
],
|
|
324
|
+
"name": "RoleRevoked",
|
|
325
|
+
"type": "event"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"anonymous": false,
|
|
329
|
+
"inputs": [
|
|
330
|
+
{
|
|
331
|
+
"indexed": false,
|
|
332
|
+
"internalType": "address",
|
|
333
|
+
"name": "account",
|
|
334
|
+
"type": "address"
|
|
335
|
+
}
|
|
336
|
+
],
|
|
337
|
+
"name": "Unpaused",
|
|
338
|
+
"type": "event"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"anonymous": false,
|
|
342
|
+
"inputs": [
|
|
343
|
+
{
|
|
344
|
+
"indexed": true,
|
|
345
|
+
"internalType": "address",
|
|
346
|
+
"name": "user",
|
|
347
|
+
"type": "address"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"indexed": false,
|
|
351
|
+
"internalType": "uint256",
|
|
352
|
+
"name": "amount",
|
|
353
|
+
"type": "uint256"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"indexed": false,
|
|
357
|
+
"internalType": "uint256",
|
|
358
|
+
"name": "shares",
|
|
359
|
+
"type": "uint256"
|
|
360
|
+
}
|
|
361
|
+
],
|
|
362
|
+
"name": "ValidatorDeposited",
|
|
363
|
+
"type": "event"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"anonymous": false,
|
|
367
|
+
"inputs": [
|
|
368
|
+
{
|
|
369
|
+
"indexed": true,
|
|
370
|
+
"internalType": "address",
|
|
371
|
+
"name": "user",
|
|
372
|
+
"type": "address"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"indexed": false,
|
|
376
|
+
"internalType": "uint256",
|
|
377
|
+
"name": "ethAmount",
|
|
378
|
+
"type": "uint256"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"indexed": false,
|
|
382
|
+
"internalType": "uint256",
|
|
383
|
+
"name": "nftId",
|
|
384
|
+
"type": "uint256"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"indexed": false,
|
|
388
|
+
"internalType": "uint64",
|
|
389
|
+
"name": "readyAt",
|
|
390
|
+
"type": "uint64"
|
|
391
|
+
}
|
|
392
|
+
],
|
|
393
|
+
"name": "WithdrawRequested",
|
|
394
|
+
"type": "event"
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"inputs": [],
|
|
398
|
+
"name": "DEFAULT_ADMIN_ROLE",
|
|
399
|
+
"outputs": [
|
|
400
|
+
{
|
|
401
|
+
"internalType": "bytes32",
|
|
402
|
+
"name": "",
|
|
403
|
+
"type": "bytes32"
|
|
404
|
+
}
|
|
405
|
+
],
|
|
406
|
+
"stateMutability": "view",
|
|
407
|
+
"type": "function"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"inputs": [],
|
|
411
|
+
"name": "DENOM",
|
|
412
|
+
"outputs": [
|
|
413
|
+
{
|
|
414
|
+
"internalType": "uint256",
|
|
415
|
+
"name": "",
|
|
416
|
+
"type": "uint256"
|
|
417
|
+
}
|
|
418
|
+
],
|
|
419
|
+
"stateMutability": "view",
|
|
420
|
+
"type": "function"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"inputs": [],
|
|
424
|
+
"name": "MANAGER_ROLE",
|
|
425
|
+
"outputs": [
|
|
426
|
+
{
|
|
427
|
+
"internalType": "bytes32",
|
|
428
|
+
"name": "",
|
|
429
|
+
"type": "bytes32"
|
|
430
|
+
}
|
|
431
|
+
],
|
|
432
|
+
"stateMutability": "view",
|
|
433
|
+
"type": "function"
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"inputs": [],
|
|
437
|
+
"name": "MODULE_ROLE",
|
|
438
|
+
"outputs": [
|
|
439
|
+
{
|
|
440
|
+
"internalType": "bytes32",
|
|
441
|
+
"name": "",
|
|
442
|
+
"type": "bytes32"
|
|
443
|
+
}
|
|
444
|
+
],
|
|
445
|
+
"stateMutability": "view",
|
|
446
|
+
"type": "function"
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"inputs": [],
|
|
450
|
+
"name": "ORACLE_ROLE",
|
|
451
|
+
"outputs": [
|
|
452
|
+
{
|
|
453
|
+
"internalType": "bytes32",
|
|
454
|
+
"name": "",
|
|
455
|
+
"type": "bytes32"
|
|
456
|
+
}
|
|
457
|
+
],
|
|
458
|
+
"stateMutability": "view",
|
|
459
|
+
"type": "function"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"inputs": [],
|
|
463
|
+
"name": "STAKE_ROLE",
|
|
464
|
+
"outputs": [
|
|
465
|
+
{
|
|
466
|
+
"internalType": "bytes32",
|
|
467
|
+
"name": "",
|
|
468
|
+
"type": "bytes32"
|
|
469
|
+
}
|
|
470
|
+
],
|
|
471
|
+
"stateMutability": "view",
|
|
472
|
+
"type": "function"
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"inputs": [],
|
|
476
|
+
"name": "availableETH",
|
|
477
|
+
"outputs": [
|
|
478
|
+
{
|
|
479
|
+
"internalType": "uint256",
|
|
480
|
+
"name": "",
|
|
481
|
+
"type": "uint256"
|
|
482
|
+
}
|
|
483
|
+
],
|
|
484
|
+
"stateMutability": "view",
|
|
485
|
+
"type": "function"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"inputs": [],
|
|
489
|
+
"name": "burner",
|
|
490
|
+
"outputs": [
|
|
491
|
+
{
|
|
492
|
+
"internalType": "contract ILiqEthBurn",
|
|
493
|
+
"name": "",
|
|
494
|
+
"type": "address"
|
|
495
|
+
}
|
|
496
|
+
],
|
|
497
|
+
"stateMutability": "view",
|
|
498
|
+
"type": "function"
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"inputs": [],
|
|
502
|
+
"name": "checkDeficit",
|
|
503
|
+
"outputs": [
|
|
504
|
+
{
|
|
505
|
+
"internalType": "uint256",
|
|
506
|
+
"name": "def",
|
|
507
|
+
"type": "uint256"
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"internalType": "bool",
|
|
511
|
+
"name": "needExits",
|
|
512
|
+
"type": "bool"
|
|
513
|
+
}
|
|
514
|
+
],
|
|
515
|
+
"stateMutability": "view",
|
|
516
|
+
"type": "function"
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"inputs": [
|
|
520
|
+
{
|
|
521
|
+
"internalType": "uint256",
|
|
522
|
+
"name": "nftId",
|
|
523
|
+
"type": "uint256"
|
|
524
|
+
}
|
|
525
|
+
],
|
|
526
|
+
"name": "claim",
|
|
527
|
+
"outputs": [],
|
|
528
|
+
"stateMutability": "nonpayable",
|
|
529
|
+
"type": "function"
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
"inputs": [],
|
|
533
|
+
"name": "dailyRateBPS",
|
|
534
|
+
"outputs": [
|
|
535
|
+
{
|
|
536
|
+
"internalType": "uint64",
|
|
537
|
+
"name": "",
|
|
538
|
+
"type": "uint64"
|
|
539
|
+
}
|
|
540
|
+
],
|
|
541
|
+
"stateMutability": "view",
|
|
542
|
+
"type": "function"
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
"inputs": [],
|
|
546
|
+
"name": "deposit",
|
|
547
|
+
"outputs": [],
|
|
548
|
+
"stateMutability": "payable",
|
|
549
|
+
"type": "function"
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"inputs": [],
|
|
553
|
+
"name": "entryQueue",
|
|
554
|
+
"outputs": [
|
|
555
|
+
{
|
|
556
|
+
"internalType": "uint64",
|
|
557
|
+
"name": "",
|
|
558
|
+
"type": "uint64"
|
|
559
|
+
}
|
|
560
|
+
],
|
|
561
|
+
"stateMutability": "view",
|
|
562
|
+
"type": "function"
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
"inputs": [],
|
|
566
|
+
"name": "eth_needed",
|
|
567
|
+
"outputs": [
|
|
568
|
+
{
|
|
569
|
+
"internalType": "uint256",
|
|
570
|
+
"name": "",
|
|
571
|
+
"type": "uint256"
|
|
572
|
+
}
|
|
573
|
+
],
|
|
574
|
+
"stateMutability": "view",
|
|
575
|
+
"type": "function"
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
"inputs": [],
|
|
579
|
+
"name": "eth_requested",
|
|
580
|
+
"outputs": [
|
|
581
|
+
{
|
|
582
|
+
"internalType": "uint256",
|
|
583
|
+
"name": "",
|
|
584
|
+
"type": "uint256"
|
|
585
|
+
}
|
|
586
|
+
],
|
|
587
|
+
"stateMutability": "view",
|
|
588
|
+
"type": "function"
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"inputs": [],
|
|
592
|
+
"name": "eth_reserved_for_stake",
|
|
593
|
+
"outputs": [
|
|
594
|
+
{
|
|
595
|
+
"internalType": "uint256",
|
|
596
|
+
"name": "",
|
|
597
|
+
"type": "uint256"
|
|
598
|
+
}
|
|
599
|
+
],
|
|
600
|
+
"stateMutability": "view",
|
|
601
|
+
"type": "function"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"inputs": [],
|
|
605
|
+
"name": "fullExitReceived",
|
|
606
|
+
"outputs": [],
|
|
607
|
+
"stateMutability": "payable",
|
|
608
|
+
"type": "function"
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
"inputs": [
|
|
612
|
+
{
|
|
613
|
+
"internalType": "bytes32",
|
|
614
|
+
"name": "role",
|
|
615
|
+
"type": "bytes32"
|
|
616
|
+
}
|
|
617
|
+
],
|
|
618
|
+
"name": "getRoleAdmin",
|
|
619
|
+
"outputs": [
|
|
620
|
+
{
|
|
621
|
+
"internalType": "bytes32",
|
|
622
|
+
"name": "",
|
|
623
|
+
"type": "bytes32"
|
|
624
|
+
}
|
|
625
|
+
],
|
|
626
|
+
"stateMutability": "view",
|
|
627
|
+
"type": "function"
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
"inputs": [
|
|
631
|
+
{
|
|
632
|
+
"internalType": "bytes32",
|
|
633
|
+
"name": "role",
|
|
634
|
+
"type": "bytes32"
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"internalType": "address",
|
|
638
|
+
"name": "account",
|
|
639
|
+
"type": "address"
|
|
640
|
+
}
|
|
641
|
+
],
|
|
642
|
+
"name": "grantRole",
|
|
643
|
+
"outputs": [],
|
|
644
|
+
"stateMutability": "nonpayable",
|
|
645
|
+
"type": "function"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"inputs": [
|
|
649
|
+
{
|
|
650
|
+
"internalType": "bytes32",
|
|
651
|
+
"name": "role",
|
|
652
|
+
"type": "bytes32"
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"internalType": "address",
|
|
656
|
+
"name": "account",
|
|
657
|
+
"type": "address"
|
|
658
|
+
}
|
|
659
|
+
],
|
|
660
|
+
"name": "hasRole",
|
|
661
|
+
"outputs": [
|
|
662
|
+
{
|
|
663
|
+
"internalType": "bool",
|
|
664
|
+
"name": "",
|
|
665
|
+
"type": "bool"
|
|
666
|
+
}
|
|
667
|
+
],
|
|
668
|
+
"stateMutability": "view",
|
|
669
|
+
"type": "function"
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
"inputs": [],
|
|
673
|
+
"name": "lastRewardPush",
|
|
674
|
+
"outputs": [
|
|
675
|
+
{
|
|
676
|
+
"internalType": "uint64",
|
|
677
|
+
"name": "",
|
|
678
|
+
"type": "uint64"
|
|
679
|
+
}
|
|
680
|
+
],
|
|
681
|
+
"stateMutability": "view",
|
|
682
|
+
"type": "function"
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"inputs": [],
|
|
686
|
+
"name": "liqEth",
|
|
687
|
+
"outputs": [
|
|
688
|
+
{
|
|
689
|
+
"internalType": "contract RewardsERC20Pausable",
|
|
690
|
+
"name": "",
|
|
691
|
+
"type": "address"
|
|
692
|
+
}
|
|
693
|
+
],
|
|
694
|
+
"stateMutability": "view",
|
|
695
|
+
"type": "function"
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"inputs": [],
|
|
699
|
+
"name": "minBal",
|
|
700
|
+
"outputs": [
|
|
701
|
+
{
|
|
702
|
+
"internalType": "uint256",
|
|
703
|
+
"name": "",
|
|
704
|
+
"type": "uint256"
|
|
705
|
+
}
|
|
706
|
+
],
|
|
707
|
+
"stateMutability": "view",
|
|
708
|
+
"type": "function"
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"inputs": [],
|
|
712
|
+
"name": "minDeposit",
|
|
713
|
+
"outputs": [
|
|
714
|
+
{
|
|
715
|
+
"internalType": "uint256",
|
|
716
|
+
"name": "",
|
|
717
|
+
"type": "uint256"
|
|
718
|
+
}
|
|
719
|
+
],
|
|
720
|
+
"stateMutability": "view",
|
|
721
|
+
"type": "function"
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"inputs": [],
|
|
725
|
+
"name": "minter",
|
|
726
|
+
"outputs": [
|
|
727
|
+
{
|
|
728
|
+
"internalType": "contract ILiqEthMint",
|
|
729
|
+
"name": "",
|
|
730
|
+
"type": "address"
|
|
731
|
+
}
|
|
732
|
+
],
|
|
733
|
+
"stateMutability": "view",
|
|
734
|
+
"type": "function"
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
"inputs": [],
|
|
738
|
+
"name": "partialExitReceived",
|
|
739
|
+
"outputs": [],
|
|
740
|
+
"stateMutability": "payable",
|
|
741
|
+
"type": "function"
|
|
742
|
+
},
|
|
743
|
+
{
|
|
744
|
+
"inputs": [
|
|
745
|
+
{
|
|
746
|
+
"internalType": "uint256",
|
|
747
|
+
"name": "ethAmount",
|
|
748
|
+
"type": "uint256"
|
|
749
|
+
}
|
|
750
|
+
],
|
|
751
|
+
"name": "partialExitRequested",
|
|
752
|
+
"outputs": [],
|
|
753
|
+
"stateMutability": "nonpayable",
|
|
754
|
+
"type": "function"
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
"inputs": [],
|
|
758
|
+
"name": "pauseAll",
|
|
759
|
+
"outputs": [],
|
|
760
|
+
"stateMutability": "nonpayable",
|
|
761
|
+
"type": "function"
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
"inputs": [],
|
|
765
|
+
"name": "paused",
|
|
766
|
+
"outputs": [
|
|
767
|
+
{
|
|
768
|
+
"internalType": "bool",
|
|
769
|
+
"name": "",
|
|
770
|
+
"type": "bool"
|
|
771
|
+
}
|
|
772
|
+
],
|
|
773
|
+
"stateMutability": "view",
|
|
774
|
+
"type": "function"
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"inputs": [
|
|
778
|
+
{
|
|
779
|
+
"internalType": "uint256",
|
|
780
|
+
"name": "amount",
|
|
781
|
+
"type": "uint256"
|
|
782
|
+
}
|
|
783
|
+
],
|
|
784
|
+
"name": "procFee",
|
|
785
|
+
"outputs": [
|
|
786
|
+
{
|
|
787
|
+
"internalType": "uint256",
|
|
788
|
+
"name": "",
|
|
789
|
+
"type": "uint256"
|
|
790
|
+
}
|
|
791
|
+
],
|
|
792
|
+
"stateMutability": "view",
|
|
793
|
+
"type": "function"
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"inputs": [
|
|
797
|
+
{
|
|
798
|
+
"internalType": "uint256",
|
|
799
|
+
"name": "amount",
|
|
800
|
+
"type": "uint256"
|
|
801
|
+
}
|
|
802
|
+
],
|
|
803
|
+
"name": "pushRewards",
|
|
804
|
+
"outputs": [],
|
|
805
|
+
"stateMutability": "nonpayable",
|
|
806
|
+
"type": "function"
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
"inputs": [],
|
|
810
|
+
"name": "queueRate",
|
|
811
|
+
"outputs": [
|
|
812
|
+
{
|
|
813
|
+
"internalType": "uint64",
|
|
814
|
+
"name": "",
|
|
815
|
+
"type": "uint64"
|
|
816
|
+
}
|
|
817
|
+
],
|
|
818
|
+
"stateMutability": "view",
|
|
819
|
+
"type": "function"
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
"inputs": [
|
|
823
|
+
{
|
|
824
|
+
"internalType": "bytes32",
|
|
825
|
+
"name": "role",
|
|
826
|
+
"type": "bytes32"
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
"internalType": "address",
|
|
830
|
+
"name": "callerConfirmation",
|
|
831
|
+
"type": "address"
|
|
832
|
+
}
|
|
833
|
+
],
|
|
834
|
+
"name": "renounceRole",
|
|
835
|
+
"outputs": [],
|
|
836
|
+
"stateMutability": "nonpayable",
|
|
837
|
+
"type": "function"
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"inputs": [
|
|
841
|
+
{
|
|
842
|
+
"internalType": "uint256",
|
|
843
|
+
"name": "liqAmount",
|
|
844
|
+
"type": "uint256"
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
"internalType": "uint256",
|
|
848
|
+
"name": "deadline",
|
|
849
|
+
"type": "uint256"
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"internalType": "uint8",
|
|
853
|
+
"name": "v",
|
|
854
|
+
"type": "uint8"
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
"internalType": "bytes32",
|
|
858
|
+
"name": "r",
|
|
859
|
+
"type": "bytes32"
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
"internalType": "bytes32",
|
|
863
|
+
"name": "s",
|
|
864
|
+
"type": "bytes32"
|
|
865
|
+
}
|
|
866
|
+
],
|
|
867
|
+
"name": "requestWithdrawal",
|
|
868
|
+
"outputs": [],
|
|
869
|
+
"stateMutability": "nonpayable",
|
|
870
|
+
"type": "function"
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
"inputs": [
|
|
874
|
+
{
|
|
875
|
+
"internalType": "bytes32",
|
|
876
|
+
"name": "role",
|
|
877
|
+
"type": "bytes32"
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
"internalType": "address",
|
|
881
|
+
"name": "account",
|
|
882
|
+
"type": "address"
|
|
883
|
+
}
|
|
884
|
+
],
|
|
885
|
+
"name": "revokeRole",
|
|
886
|
+
"outputs": [],
|
|
887
|
+
"stateMutability": "nonpayable",
|
|
888
|
+
"type": "function"
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
"inputs": [],
|
|
892
|
+
"name": "rewardCooldown",
|
|
893
|
+
"outputs": [
|
|
894
|
+
{
|
|
895
|
+
"internalType": "uint64",
|
|
896
|
+
"name": "",
|
|
897
|
+
"type": "uint64"
|
|
898
|
+
}
|
|
899
|
+
],
|
|
900
|
+
"stateMutability": "view",
|
|
901
|
+
"type": "function"
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"inputs": [
|
|
905
|
+
{
|
|
906
|
+
"internalType": "uint64",
|
|
907
|
+
"name": "newEntryQueue",
|
|
908
|
+
"type": "uint64"
|
|
909
|
+
}
|
|
910
|
+
],
|
|
911
|
+
"name": "setEntryQueue",
|
|
912
|
+
"outputs": [],
|
|
913
|
+
"stateMutability": "nonpayable",
|
|
914
|
+
"type": "function"
|
|
915
|
+
},
|
|
916
|
+
{
|
|
917
|
+
"inputs": [
|
|
918
|
+
{
|
|
919
|
+
"internalType": "uint256",
|
|
920
|
+
"name": "_minDeposit",
|
|
921
|
+
"type": "uint256"
|
|
922
|
+
}
|
|
923
|
+
],
|
|
924
|
+
"name": "setMinDeposit",
|
|
925
|
+
"outputs": [],
|
|
926
|
+
"stateMutability": "nonpayable",
|
|
927
|
+
"type": "function"
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
"inputs": [
|
|
931
|
+
{
|
|
932
|
+
"internalType": "uint64",
|
|
933
|
+
"name": "_rewardCooldown",
|
|
934
|
+
"type": "uint64"
|
|
935
|
+
}
|
|
936
|
+
],
|
|
937
|
+
"name": "setRewardCooldown",
|
|
938
|
+
"outputs": [],
|
|
939
|
+
"stateMutability": "nonpayable",
|
|
940
|
+
"type": "function"
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
"inputs": [
|
|
944
|
+
{
|
|
945
|
+
"internalType": "address",
|
|
946
|
+
"name": "module",
|
|
947
|
+
"type": "address"
|
|
948
|
+
}
|
|
949
|
+
],
|
|
950
|
+
"name": "setStakingModule",
|
|
951
|
+
"outputs": [],
|
|
952
|
+
"stateMutability": "nonpayable",
|
|
953
|
+
"type": "function"
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
"inputs": [
|
|
957
|
+
{
|
|
958
|
+
"internalType": "uint64",
|
|
959
|
+
"name": "_withdrawDelay",
|
|
960
|
+
"type": "uint64"
|
|
961
|
+
}
|
|
962
|
+
],
|
|
963
|
+
"name": "setWithdrawDelay",
|
|
964
|
+
"outputs": [],
|
|
965
|
+
"stateMutability": "nonpayable",
|
|
966
|
+
"type": "function"
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
"inputs": [
|
|
970
|
+
{
|
|
971
|
+
"internalType": "address",
|
|
972
|
+
"name": "_vault",
|
|
973
|
+
"type": "address"
|
|
974
|
+
}
|
|
975
|
+
],
|
|
976
|
+
"name": "setWithdrawalVault",
|
|
977
|
+
"outputs": [],
|
|
978
|
+
"stateMutability": "nonpayable",
|
|
979
|
+
"type": "function"
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
"inputs": [
|
|
983
|
+
{
|
|
984
|
+
"internalType": "uint256",
|
|
985
|
+
"name": "nKeys",
|
|
986
|
+
"type": "uint256"
|
|
987
|
+
}
|
|
988
|
+
],
|
|
989
|
+
"name": "stakeThroughModule",
|
|
990
|
+
"outputs": [],
|
|
991
|
+
"stateMutability": "nonpayable",
|
|
992
|
+
"type": "function"
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
"inputs": [],
|
|
996
|
+
"name": "stakingModule",
|
|
997
|
+
"outputs": [
|
|
998
|
+
{
|
|
999
|
+
"internalType": "contract IStakingModule",
|
|
1000
|
+
"name": "",
|
|
1001
|
+
"type": "address"
|
|
1002
|
+
}
|
|
1003
|
+
],
|
|
1004
|
+
"stateMutability": "view",
|
|
1005
|
+
"type": "function"
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
"inputs": [
|
|
1009
|
+
{
|
|
1010
|
+
"internalType": "bytes4",
|
|
1011
|
+
"name": "interfaceId",
|
|
1012
|
+
"type": "bytes4"
|
|
1013
|
+
}
|
|
1014
|
+
],
|
|
1015
|
+
"name": "supportsInterface",
|
|
1016
|
+
"outputs": [
|
|
1017
|
+
{
|
|
1018
|
+
"internalType": "bool",
|
|
1019
|
+
"name": "",
|
|
1020
|
+
"type": "bool"
|
|
1021
|
+
}
|
|
1022
|
+
],
|
|
1023
|
+
"stateMutability": "view",
|
|
1024
|
+
"type": "function"
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1027
|
+
"inputs": [
|
|
1028
|
+
{
|
|
1029
|
+
"internalType": "uint256",
|
|
1030
|
+
"name": "id",
|
|
1031
|
+
"type": "uint256"
|
|
1032
|
+
},
|
|
1033
|
+
{
|
|
1034
|
+
"internalType": "uint256",
|
|
1035
|
+
"name": "ethAmount",
|
|
1036
|
+
"type": "uint256"
|
|
1037
|
+
}
|
|
1038
|
+
],
|
|
1039
|
+
"name": "topUpValidator",
|
|
1040
|
+
"outputs": [],
|
|
1041
|
+
"stateMutability": "nonpayable",
|
|
1042
|
+
"type": "function"
|
|
1043
|
+
},
|
|
1044
|
+
{
|
|
1045
|
+
"inputs": [],
|
|
1046
|
+
"name": "unpauseAll",
|
|
1047
|
+
"outputs": [],
|
|
1048
|
+
"stateMutability": "nonpayable",
|
|
1049
|
+
"type": "function"
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
"inputs": [
|
|
1053
|
+
{
|
|
1054
|
+
"internalType": "uint64",
|
|
1055
|
+
"name": "newDailyRateBPS",
|
|
1056
|
+
"type": "uint64"
|
|
1057
|
+
}
|
|
1058
|
+
],
|
|
1059
|
+
"name": "updateApyBPS",
|
|
1060
|
+
"outputs": [],
|
|
1061
|
+
"stateMutability": "nonpayable",
|
|
1062
|
+
"type": "function"
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
"inputs": [],
|
|
1066
|
+
"name": "valDeposit",
|
|
1067
|
+
"outputs": [
|
|
1068
|
+
{
|
|
1069
|
+
"internalType": "uint256",
|
|
1070
|
+
"name": "",
|
|
1071
|
+
"type": "uint256"
|
|
1072
|
+
}
|
|
1073
|
+
],
|
|
1074
|
+
"stateMutability": "view",
|
|
1075
|
+
"type": "function"
|
|
1076
|
+
},
|
|
1077
|
+
{
|
|
1078
|
+
"inputs": [
|
|
1079
|
+
{
|
|
1080
|
+
"internalType": "uint256",
|
|
1081
|
+
"name": "deadline",
|
|
1082
|
+
"type": "uint256"
|
|
1083
|
+
},
|
|
1084
|
+
{
|
|
1085
|
+
"internalType": "uint8",
|
|
1086
|
+
"name": "v",
|
|
1087
|
+
"type": "uint8"
|
|
1088
|
+
},
|
|
1089
|
+
{
|
|
1090
|
+
"internalType": "bytes32",
|
|
1091
|
+
"name": "r",
|
|
1092
|
+
"type": "bytes32"
|
|
1093
|
+
},
|
|
1094
|
+
{
|
|
1095
|
+
"internalType": "bytes32",
|
|
1096
|
+
"name": "s",
|
|
1097
|
+
"type": "bytes32"
|
|
1098
|
+
}
|
|
1099
|
+
],
|
|
1100
|
+
"name": "validatorDepositAndLockBond",
|
|
1101
|
+
"outputs": [],
|
|
1102
|
+
"stateMutability": "payable",
|
|
1103
|
+
"type": "function"
|
|
1104
|
+
},
|
|
1105
|
+
{
|
|
1106
|
+
"inputs": [],
|
|
1107
|
+
"name": "withdrawDelay",
|
|
1108
|
+
"outputs": [
|
|
1109
|
+
{
|
|
1110
|
+
"internalType": "uint64",
|
|
1111
|
+
"name": "",
|
|
1112
|
+
"type": "uint64"
|
|
1113
|
+
}
|
|
1114
|
+
],
|
|
1115
|
+
"stateMutability": "view",
|
|
1116
|
+
"type": "function"
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
"inputs": [],
|
|
1120
|
+
"name": "withdrawalQueue",
|
|
1121
|
+
"outputs": [
|
|
1122
|
+
{
|
|
1123
|
+
"internalType": "contract IWithdrawalRecord",
|
|
1124
|
+
"name": "",
|
|
1125
|
+
"type": "address"
|
|
1126
|
+
}
|
|
1127
|
+
],
|
|
1128
|
+
"stateMutability": "view",
|
|
1129
|
+
"type": "function"
|
|
1130
|
+
},
|
|
1131
|
+
{
|
|
1132
|
+
"inputs": [],
|
|
1133
|
+
"name": "withdrawalVault",
|
|
1134
|
+
"outputs": [
|
|
1135
|
+
{
|
|
1136
|
+
"internalType": "address",
|
|
1137
|
+
"name": "",
|
|
1138
|
+
"type": "address"
|
|
1139
|
+
}
|
|
1140
|
+
],
|
|
1141
|
+
"stateMutability": "view",
|
|
1142
|
+
"type": "function"
|
|
1143
|
+
},
|
|
1144
|
+
{
|
|
1145
|
+
"stateMutability": "payable",
|
|
1146
|
+
"type": "receive"
|
|
1147
|
+
}
|
|
1148
|
+
],
|
|
1149
|
+
"bytecode": "0x6101003461033457601f61281638819003918201601f19168301926001600160401b039290918385118386101761033957816101609284926040978852833981010312610334578051906001600160a01b03808316830361033457602082015192818416840361033457858301519382851685036103345760608401518381168103610334576080850151928484168403610334576100a060a0870161034f565b936100ad60c0880161034f565b926100ba60e0890161034f565b926100c86101008a0161034f565b956100e36101406100dc6101208d01610363565b9b01610363565b9a60018055662386f26fc100008060075560085560a05260c05260805260e05260025490610100600160a81b039060081b1690610100600160a81b0319161760025561271088831610156102fc5787169182156102b857878116156102745760c091821b6001600160c01b031916608094851b600160801b600160c01b0316179290921791881b6fffffffffffffffff0000000000000000169190911760098190559081901c911c85160293841693840361025e57600a80546001600160401b0319169094179093556101dc92811661025457506101cc33915b6101c683610377565b506103f5565b506101d630610495565b50610530565b505161222a90816105cc823960805181818161069e0152818161080601528181610e8d015281816112fb015281816118ec0152611d03015260a05181818161088501528181610b8f0152611d82015260c0518181816118120152611988015260e0518181816113e1015281816114570152611a630152f35b6101cc90916101bd565b634e487b7160e01b600052601160045260246000fd5b885162461bcd60e51b815260206004820152601d60248201527f52657761726420636f6f6c646f776e2063616e2774206265207a65726f0000006044820152606490fd5b885162461bcd60e51b815260206004820152601c60248201527f57697468647261772064656c61792063616e2774206265207a65726f000000006044820152606490fd5b885162461bcd60e51b815260206004820152601160248201527004170792063616e2774206265202531303607c1b6044820152606490fd5b600080fd5b634e487b7160e01b600052604160045260246000fd5b51906001600160401b038216820361033457565b51906001600160a01b038216820361033457565b6001600160a01b031660008181527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604081205490919060ff166103f157818052816020526040822081835260205260408220600160ff1982541617905533916000805160206127f68339815191528180a4600190565b5090565b6001600160a01b031660008181527f56e5822e13686eaa5c46cfa39933133a22208a18ec41a20857fad3e26619a2a860205260408120549091907f352d05fe3946dbe49277552ba941e744d5a96d9c60bc1ba0ea5f1d3ae000f7c89060ff1661049057808352826020526040832082845260205260408320600160ff198254161790556000805160206127f6833981519152339380a4600190565b505090565b6001600160a01b031660008181527f511473bfc0317b2ecebc3e7070288e5dde2957151ef598d1c2d01ac136128f3260205260408120549091907faf290d8680820aad922855f39b306097b20e28774d6c1ad35a20325630c3a02c9060ff1661049057808352826020526040832082845260205260408320600160ff198254161790556000805160206127f6833981519152339380a4600190565b6001600160a01b031660008181527f09a4e6cc3044cd664e744b4b3f312b502e02bf3949a0b298004a442bdfdb2aed60205260408120549091907feaea87345c0a5b2ecb49cde771d9ac5bfe2528357e00d43a1e06a12c2779f3ca9060ff1661049057808352826020526040832082845260205260408320600160ff198254161790556000805160206127f6833981519152339380a460019056fe6080604081815260049182361015610022575b505050361561002057600080fd5b005b600092833560e01c91826301ffc9a714611dd9575081630288a39c14611db15781630754617214611d6d57816307e2cea514611d325781630a65176114611cee5781630df25f1d14611c605781630f421d5f1461188857816316343da41461186b578163248a9ca31461184157816327810b6e146117fd5781632f2ff15d146117d357816335923b041461174e57816335d079ad1461163057816336568abe146115ea578163379607f51461141057816337d5fe99146113cc57816337eb45d6146113a157816341b3d18514611382578163504b82bf1461135557838263595c6a67146112a0575081635c975abb1461127c57816360830ebb1461125557816369d421481461122c5781636bde0bae146111765781636beb36ea14611158578163754ae7dc146110cd578163762106d81461102c57816378613da914610fc75781637a389d2d14610f055781638a2ddd0314610e315781638fcc9cfb14610e0f57816391b7655f14610df057816391d1485414610dab578163a1a6af8314610d8c578163a217fddf14610d71578163a664150a14610d48578163a6b520c014610d0d578163b574439314610ceb578163c1deae1b14610b13578163c60b494f14610a73578163cb58db9314610a0f578163d0e30db0146107cb578163d1118dee146105de578163d547741f1461059f578163d932971f14610577578163d9a159111461053c578163e311d67b1461046e578163ec87621c14610433578163efd963091461030157508063f43d19b9146102d9578063f7fb721f146102bb578063f81f4ae6146102985763fb6ff1611461027b5780610012565b3461029457816003193601126102945751478152602090f35b5080fd5b5034610294578160031936011261029457602090516801bc16d674ec8000008152f35b50346102945781600319360112610294576020906005549051908152f35b50346102945781600319360112610294576009548151911c6001600160401b03168152602090f35b8391503461029457826003193601126102945760243590610320612040565b610328611fbe565b670de0b6b3a764000082106103f0574761034460085484611ea2565b10156103b85792829360018060a01b0360025460081c16803b156103b45760248592845195869384926348ab019760e11b84528035908401525af19081156103ab5750610394575b506001805580f35b61039d90611e58565b6103a857808261038c565b80fd5b513d84823e3d90fd5b8480fd5b606490602085519162461bcd60e51b83528201526012602482015271084c2d8c2dcc6ca40dcdee840cadcdeeaced60731b6044820152fd5b606490602085519162461bcd60e51b8352820152601c60248201527f43616e277420746f70207570206c657373207468616e203120657468000000006044820152fd5b505034610294578160031936011261029457602090517faf290d8680820aad922855f39b306097b20e28774d6c1ad35a20325630c3a02c8152f35b919050346105385760203660031901126105385781356001600160401b038116928382036103b45761049e611f66565b6127108410156105015750600980546001600160c01b031660c09290921b6001600160c01b0319169190911790557fbd6c43abd375d4f889c2ed30000ff0321ae8bc7a7cedd95de8786c918d485d85916020916104f96120ff565b51908152a180f35b606490602084519162461bcd60e51b8352820152601160248201527004170792063616e2774206265202531303607c1b6044820152fd5b8280fd5b505034610294578160031936011261029457602090517feaea87345c0a5b2ecb49cde771d9ac5bfe2528357e00d43a1e06a12c2779f3ca8152f35b5050346102945781600319360112610294576020906001600160401b03600a54169051908152f35b919050346105385780600319360112610538576105da91356105d560016105c4611e2c565b93838752866020528620015461201a565b612133565b5080f35b9050346105385760209081600319360112610739578035906105fe612063565b7f352d05fe3946dbe49277552ba941e744d5a96d9c60bc1ba0ea5f1d3ae000f7c880600052600084528460002033600052845260ff856000205416156107ae5750610647612040565b811561078057600a546001600160401b0361066c81600954881c168284891c16611ec5565b164210610747576fffffffffffffffff0000000000000000191642851b67ffffffffffffffff60401b1617600a5584907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690813b156105385783602484928389519586948593631b870ba760e01b85528401525af1801561073d57610725575b50507fe85269c35ba75fedfc9cafb0552f5ff47864fc679789f17128ab71fbd2ef38389251908152a16001805580f35b61072e90611e58565b6107395783386106f5565b8380fd5b85513d84823e3d90fd5b845162461bcd60e51b8152808301859052601360248201527210dbdbdb191bdddb881b9bdd081c185cdcd959606a1b6044820152606490fd5b835162461bcd60e51b815290810183905260086024820152670416d6f756e7420360c41b6044820152606490fd5b6044925084519163e2517d3f60e01b835233908301526024820152fd5b905082600319360112610538576107e0612040565b60075434106109c25781516318160ddd60e01b81526001600160a01b03929084906020907f000000000000000000000000000000000000000000000000000000000000000086169082818781855afa9081156109b857889161098b575b5061092c575b5080610881946108538434611ee0565b85516340c10f1960e01b8152339281019283526020830182905290979096879283918b918391604090910190565b03927f0000000000000000000000000000000000000000000000000000000000000000165af19384156109225786946108ee575b5082519485528401528201527f91ede45f04a37a7c170f5c1207df3b6bc748dc1e04ad5e917a241d0f52feada360603392a26001805580f35b9080945081813d831161091b575b6109068183611e81565b81010312610916575192386108b5565b600080fd5b503d6108fc565b83513d88823e3d90fd5b915085610938346121a8565b9283610945575b50610843565b803b15610294578180916024875180948193631b870ba760e01b8352898c8401525af1801561073d571561093f5761097c90611e58565b61098757853861093f565b8580fd5b90508281813d83116109b1575b6109a28183611e81565b8101031261091657513861083d565b503d610998565b85513d8a823e3d90fd5b6020608492519162461bcd60e51b8352820152602260248201527f43616e2774206465706f736974206c657373207468616e206d696e4465706f736044820152611a5d60f21b6064820152fd5b5050816003193601126102945760207efd69eabb869cd85d570b4c36afea6716ea5475d682213806a615bfef6ec3e491610a47612040565b610a5c60018060a01b03600354163314611eed565b610a67341515611f31565b51348152a16001805580f35b90503461053857602036600319011261053857610a8e611e42565b91610a97611f66565b6001600160a01b03831615610ad057505060028054610100600160a81b03191660089290921b610100600160a81b031691909117905580f35b906020606492519162461bcd60e51b8352820152601c60248201527f7374616b696e67206d6f64756c652063616e2774206265207a65726f000000006044820152fd5b91905060803660031901126105385760243560ff811680910361091657610b38612040565b6801bc16d674ec8000003403610cb0578390610b5634600654611ea2565b60065582516340c10f1960e01b815233818601908152346020828101919091529195916001600160a01b039187908190604001038187857f0000000000000000000000000000000000000000000000000000000000000000165af1958615610ca6578496610c6f575b5060025460081c1691823b156107395760c48492838751958694859363691db4e160e01b855233818601523460248601523560448501526064840152604435608484015260643560a48401525af18015610c6557610c51575b5050807f071464ed23d89f47be15656b77a0b638a220b7f85ba6bf9db649c41f64142a4591519234845260208401523392a26001805580f35b610c5a90611e58565b610538578238610c18565b83513d84823e3d90fd5b935094506020833d602011610c9e575b81610c8c60209383611e81565b81010312610916578592519438610bbf565b3d9150610c7f565b85513d86823e3d90fd5b815162461bcd60e51b815260208185015260156024820152740c2dadeeadce840daeae6e840c4ca406664408aa89605b1b6044820152606490fd5b50503461029457816003193601126102945760209060095460c01c9051908152f35b505034610294578160031936011261029457602090517f5098275140f5753db46c42f6e139939968848633a1298402189fdfdafa69b4538152f35b505034610294578160031936011261029457600a548151911c6001600160401b03168152602090f35b50503461029457816003193601126102945751908152602090f35b5050346102945781600319360112610294576020906006549051908152f35b90503461053857816003193601126105385781602093610dc9611e2c565b92358152808552209060018060a01b0316600052825260ff81600020541690519015158152f35b5050346102945781600319360112610294576020906008549051908152f35b83903461029457602036600319011261029457610e2a611f66565b3560075580f35b83915034610294578160031936011261029457610e4c611f66565b6002549260ff841615610ef857829360ff19166002557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa60208251338152a17f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031691823b15610ef3578151631fa5d41d60e11b81529284918491829084905af19081156103ab5750610ee35750f35b610eec90611e58565b6103a85780f35b505050fd5b51638dfc202b60e01b8152fd5b90508260031936011261053857610f1a612040565b610f2f60018060a01b03600354163314611eed565b610f3a341515611f31565b60055490348210610f8457507faace8198adfd57ac0d89093826c5ac4d5135d57ec155bddfbd80d3659f663b6c91610f756020923490611ee0565b60055551348152a16001805580f35b606490602084519162461bcd60e51b8352820152601d60248201527f726563656976696e67206d6f7265207468616e207265717565737465640000006044820152fd5b905082346103a857806003193601126103a857610ff6610fea4760055490611ea2565b92600654905490611ea2565b9081831061101957906110099192611ee0565b905b825191825215156020820152f35b5060019161102691611ee0565b9061100b565b905034610538576020366003190112610538578035906001600160401b0382168083036103b45761105b611f66565b1561108a575067ffffffffffffffff60401b90600954921b169067ffffffffffffffff60401b19161760095580f35b606490602084519162461bcd60e51b8352820152601d60248201527f52657761726420636f6f6c646f776e2063616e2774206265207a65726f0000006044820152fd5b905034610538576020366003190112610538576110e8611e42565b6110f0611f66565b6001600160a01b031691821561111d5750506bffffffffffffffffffffffff60a01b600354161760035580f35b906020606492519162461bcd60e51b83528201526015602482015274616464726573732063616e2774206265207a65726f60581b6044820152fd5b90503461053857826003193601126105385760209250549051908152f35b9050346105385760203660031901126105385780359182156111f2576003546001600160a01b031633036111b757836111b184600554611ea2565b60055580f35b906020606492519162461bcd60e51b8352820152601560248201527413db9b1e481dda5d1a191c985dd85b081d985d5b1d605a1b6044820152fd5b906020606492519162461bcd60e51b83528201526014602482015273616d6f756e742063616e2774206265207a65726f60601b6044820152fd5b50503461029457816003193601126102945760035490516001600160a01b039091168152602090f35b8284346103a85760203660031901126103a85750611275602092356121a8565b9051908152f35b50503461029457816003193601126102945760209060ff6002541690519015158152f35b809184346113515782600319360112611351576112bb611f66565b6112c3612063565b600160ff1960025416176002557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25860208251338152a17f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031691823b15610ef3578151638456cb5960e01b81529284918491829084905af19081156103ab5750610ee35750f35b5050fd5b505034610294578160031936011261029457600254905160089190911c6001600160a01b03168152602090f35b5050346102945781600319360112610294576020906007549051908152f35b5050346102945781600319360112610294576020906001600160401b0360095460801c169051908152f35b505034610294578160031936011261029457517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b9190503461053857602090816003193601126107395761142e612040565b611436612063565b805163084e1b0f60e31b8152833584820152336024820152928284604481887f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165af19384156115e05785946115b1575b50834710611579576114a2848254611ee0565b815583471061155d578480808087335af1903d15611555573d916001600160401b038311611542578351926114e0601f8201601f1916870185611e81565b83523d878685013e5b15611521575050907fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a91519283523392a26001805580f35b815191939290911561153557505081519101fd5b5163d6bda27560e01b8152fd5b634e487b7160e01b875260418252602487fd5b6060916114e9565b836044924790519263cf47918160e01b84528301526024820152fd5b82606492519162461bcd60e51b83528201526014602482015273496e73756666696369656e742062616c616e636560601b6044820152fd5b9093508281813d83116115d9575b6115c98183611e81565b810103126109165751923861148f565b503d6115bf565b82513d87823e3d90fd5b838334610294578060031936011261029457611604611e2c565b90336001600160a01b0383160361162157506105da919235612133565b5163334bd91960e11b81528390fd5b839150346102945760203660031901126102945780359261164f612040565b611657611fbe565b8315611721576801bc16d674ec8000008402916801bc16d674ec7fffff198584040161170e57600654948386106116dc57611693848697611ee0565b60065560025460081c6001600160a01b031693843b15610987578592602491855196879485936354d23f8560e01b85528401525af19081156103ab575061039457506001805580f35b506020606492519162461bcd60e51b8352820152600c60248201526b1b9bdd081c995cd95c9d995960a21b6044820152fd5b634e487b7160e01b845260119052602483fd5b906020606492519162461bcd60e51b835282015260076024820152666e6f206b65797360c81b6044820152fd5b90503461053857602036600319011261053857356001600160401b038116808203610739577fbed5c6f60eb5063b2dcda29db3ea53c1e62c7868ca5bb66f7d9bc681ee3220d9926020926117a0611f66565b6009805467ffffffffffffffff60801b191660809290921b67ffffffffffffffff60801b169190911790556104f96120ff565b919050346105385780600319360112610538576105da91356117f860016105c4611e2c565b612081565b505034610294578160031936011261029457517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b90503461053857602036600319011261053857816020936001923581528085522001549051908152f35b505034610294578160031936011261029457602090516127108152f35b919050346105385760a03660031901126105385781359060249060449182359060ff8216809203611c5c5760646118bd612040565b6118c5612063565b8515611c1e5783516370a0823160e01b815233818901526001600160a01b039760209490917f00000000000000000000000000000000000000000000000000000000000000008a16919086818781865afa908115611c1457908a918d91611bdf575b5010611bad57813b15611b855786519063d505accf60e01b82523384830152308683015289898301528535858301526084820152833560a482015260843560c48201528a8160e48183865af18015611b9057611b9a575b5089908589858a8d7f000000000000000000000000000000000000000000000000000000000000000016958b5195869485936323b872dd60e01b8552338b860152898d8601528401525af1908115611b90578b91611b56575b5015611b215790818a959493923b1561098757858091858b8a51998a938492630852cd8d60e31b8452888401525af1998a15611b1557899a9996979899611afb575b869750611a2886978454611ea2565b83556001600160401b03611a428160095416824216611ec5565b8a51998a9788966357cb494760e01b8852339088015286015216809a8401527f0000000000000000000000000000000000000000000000000000000000000000165af1918215610922578692611acc575b5082519485528401528201527f5b5919a27b29ed9ea8fdb44f39ca081298229768813e2b5ffbd9d83eeb1de61e60603392a26001805580f35b9080925081813d8311611af4575b611ae48183611e81565b8101031261091657519038611a93565b503d611ada565b949550611b088197611e58565b6109875785899594611a19565b508651903d90823e3d90fd5b50845162461bcd60e51b8152908101849052601381840152721d1c985b9cd9995c919c9bdb4819985a5b1959606a1b81870152fd5b90508581813d8311611b89575b611b6d8183611e81565b81010312611b8557518015158103611b8557386119d7565b8a80fd5b503d611b63565b87513d8d823e3d90fd5b611ba6909a919a611e58565b983861197e565b5050845162461bcd60e51b8152908101849052600f818401526e457863656564732062616c616e636560881b81870152fd5b809250888092503d8311611c0d575b611bf88183611e81565b81010312611c095789905138611927565b8b80fd5b503d611bee565b88513d8e823e3d90fd5b835162461bcd60e51b81526020818901526017818401527f6c6971416d6f756e742063616e2774206265207a65726f00000000000000000081870152fd5b8680fd5b905034610538576020366003190112610538578035916001600160401b03831680930361073957611c8f611f66565b8215611cab5750506001600160401b0319600954161760095580f35b906020606492519162461bcd60e51b8352820152601c60248201527f57697468647261772064656c61792063616e2774206265207a65726f000000006044820152fd5b505034610294578160031936011261029457517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b505034610294578160031936011261029457602090517f352d05fe3946dbe49277552ba941e744d5a96d9c60bc1ba0ea5f1d3ae000f7c88152f35b505034610294578160031936011261029457517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b5050346102945781600319360112610294576020906001600160401b03600954169051908152f35b849134610538576020366003190112610538573563ffffffff60e01b81168091036105385760209250637965db0b60e01b8114908115611e1b575b5015158152f35b6301ffc9a760e01b14905083611e14565b602435906001600160a01b038216820361091657565b600435906001600160a01b038216820361091657565b6001600160401b038111611e6b57604052565b634e487b7160e01b600052604160045260246000fd5b90601f801991011681019081106001600160401b03821117611e6b57604052565b91908201809211611eaf57565b634e487b7160e01b600052601160045260246000fd5b9190916001600160401b0380809416911601918211611eaf57565b91908203918211611eaf57565b15611ef457565b60405162461bcd60e51b815260206004820152601560248201527413db9b1e481dda5d1a191c985dd85b0815985d5b1d605a1b6044820152606490fd5b15611f3857565b60405162461bcd60e51b815260206004820152600660248201526509cde40cae8d60d31b6044820152606490fd5b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604081205460ff1615611fa05750565b6044906040519063e2517d3f60e01b82523360048301526024820152fd5b3360009081527f09a4e6cc3044cd664e744b4b3f312b502e02bf3949a0b298004a442bdfdb2aed60205260409020547feaea87345c0a5b2ecb49cde771d9ac5bfe2528357e00d43a1e06a12c2779f3ca9060ff1615611fa05750565b80600052600060205260406000203360005260205260ff6040600020541615611fa05750565b600260015414612051576002600155565b604051633ee5aeb560e01b8152600490fd5b60ff6002541661206f57565b60405163d93c066560e01b8152600490fd5b9060009180835282602052604083209160018060a01b03169182845260205260ff604084205416156000146120fa57808352826020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b6009546001600160401b0390818160801c169060c01c02908116908103611eaf576001600160401b0319600a541617600a55565b9060009180835282602052604083209160018060a01b03169182845260205260ff6040842054166000146120fa5780835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a4600190565b6001600160401b03600a54169081810290808204831490151715611eaf576237b1d0918201809211611eaf5781156121de570490565b634e487b7160e01b600052601260045260246000fdfea26469706673582212200dbfeca793a9cae88a67cea92e421fc337c2c20440e6e9b46b1900e7c714505b64736f6c634300081900332f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d",
|
|
1150
|
+
"deployedBytecode": "0x6080604081815260049182361015610022575b505050361561002057600080fd5b005b600092833560e01c91826301ffc9a714611dd9575081630288a39c14611db15781630754617214611d6d57816307e2cea514611d325781630a65176114611cee5781630df25f1d14611c605781630f421d5f1461188857816316343da41461186b578163248a9ca31461184157816327810b6e146117fd5781632f2ff15d146117d357816335923b041461174e57816335d079ad1461163057816336568abe146115ea578163379607f51461141057816337d5fe99146113cc57816337eb45d6146113a157816341b3d18514611382578163504b82bf1461135557838263595c6a67146112a0575081635c975abb1461127c57816360830ebb1461125557816369d421481461122c5781636bde0bae146111765781636beb36ea14611158578163754ae7dc146110cd578163762106d81461102c57816378613da914610fc75781637a389d2d14610f055781638a2ddd0314610e315781638fcc9cfb14610e0f57816391b7655f14610df057816391d1485414610dab578163a1a6af8314610d8c578163a217fddf14610d71578163a664150a14610d48578163a6b520c014610d0d578163b574439314610ceb578163c1deae1b14610b13578163c60b494f14610a73578163cb58db9314610a0f578163d0e30db0146107cb578163d1118dee146105de578163d547741f1461059f578163d932971f14610577578163d9a159111461053c578163e311d67b1461046e578163ec87621c14610433578163efd963091461030157508063f43d19b9146102d9578063f7fb721f146102bb578063f81f4ae6146102985763fb6ff1611461027b5780610012565b3461029457816003193601126102945751478152602090f35b5080fd5b5034610294578160031936011261029457602090516801bc16d674ec8000008152f35b50346102945781600319360112610294576020906005549051908152f35b50346102945781600319360112610294576009548151911c6001600160401b03168152602090f35b8391503461029457826003193601126102945760243590610320612040565b610328611fbe565b670de0b6b3a764000082106103f0574761034460085484611ea2565b10156103b85792829360018060a01b0360025460081c16803b156103b45760248592845195869384926348ab019760e11b84528035908401525af19081156103ab5750610394575b506001805580f35b61039d90611e58565b6103a857808261038c565b80fd5b513d84823e3d90fd5b8480fd5b606490602085519162461bcd60e51b83528201526012602482015271084c2d8c2dcc6ca40dcdee840cadcdeeaced60731b6044820152fd5b606490602085519162461bcd60e51b8352820152601c60248201527f43616e277420746f70207570206c657373207468616e203120657468000000006044820152fd5b505034610294578160031936011261029457602090517faf290d8680820aad922855f39b306097b20e28774d6c1ad35a20325630c3a02c8152f35b919050346105385760203660031901126105385781356001600160401b038116928382036103b45761049e611f66565b6127108410156105015750600980546001600160c01b031660c09290921b6001600160c01b0319169190911790557fbd6c43abd375d4f889c2ed30000ff0321ae8bc7a7cedd95de8786c918d485d85916020916104f96120ff565b51908152a180f35b606490602084519162461bcd60e51b8352820152601160248201527004170792063616e2774206265202531303607c1b6044820152fd5b8280fd5b505034610294578160031936011261029457602090517feaea87345c0a5b2ecb49cde771d9ac5bfe2528357e00d43a1e06a12c2779f3ca8152f35b5050346102945781600319360112610294576020906001600160401b03600a54169051908152f35b919050346105385780600319360112610538576105da91356105d560016105c4611e2c565b93838752866020528620015461201a565b612133565b5080f35b9050346105385760209081600319360112610739578035906105fe612063565b7f352d05fe3946dbe49277552ba941e744d5a96d9c60bc1ba0ea5f1d3ae000f7c880600052600084528460002033600052845260ff856000205416156107ae5750610647612040565b811561078057600a546001600160401b0361066c81600954881c168284891c16611ec5565b164210610747576fffffffffffffffff0000000000000000191642851b67ffffffffffffffff60401b1617600a5584907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690813b156105385783602484928389519586948593631b870ba760e01b85528401525af1801561073d57610725575b50507fe85269c35ba75fedfc9cafb0552f5ff47864fc679789f17128ab71fbd2ef38389251908152a16001805580f35b61072e90611e58565b6107395783386106f5565b8380fd5b85513d84823e3d90fd5b845162461bcd60e51b8152808301859052601360248201527210dbdbdb191bdddb881b9bdd081c185cdcd959606a1b6044820152606490fd5b835162461bcd60e51b815290810183905260086024820152670416d6f756e7420360c41b6044820152606490fd5b6044925084519163e2517d3f60e01b835233908301526024820152fd5b905082600319360112610538576107e0612040565b60075434106109c25781516318160ddd60e01b81526001600160a01b03929084906020907f000000000000000000000000000000000000000000000000000000000000000086169082818781855afa9081156109b857889161098b575b5061092c575b5080610881946108538434611ee0565b85516340c10f1960e01b8152339281019283526020830182905290979096879283918b918391604090910190565b03927f0000000000000000000000000000000000000000000000000000000000000000165af19384156109225786946108ee575b5082519485528401528201527f91ede45f04a37a7c170f5c1207df3b6bc748dc1e04ad5e917a241d0f52feada360603392a26001805580f35b9080945081813d831161091b575b6109068183611e81565b81010312610916575192386108b5565b600080fd5b503d6108fc565b83513d88823e3d90fd5b915085610938346121a8565b9283610945575b50610843565b803b15610294578180916024875180948193631b870ba760e01b8352898c8401525af1801561073d571561093f5761097c90611e58565b61098757853861093f565b8580fd5b90508281813d83116109b1575b6109a28183611e81565b8101031261091657513861083d565b503d610998565b85513d8a823e3d90fd5b6020608492519162461bcd60e51b8352820152602260248201527f43616e2774206465706f736974206c657373207468616e206d696e4465706f736044820152611a5d60f21b6064820152fd5b5050816003193601126102945760207efd69eabb869cd85d570b4c36afea6716ea5475d682213806a615bfef6ec3e491610a47612040565b610a5c60018060a01b03600354163314611eed565b610a67341515611f31565b51348152a16001805580f35b90503461053857602036600319011261053857610a8e611e42565b91610a97611f66565b6001600160a01b03831615610ad057505060028054610100600160a81b03191660089290921b610100600160a81b031691909117905580f35b906020606492519162461bcd60e51b8352820152601c60248201527f7374616b696e67206d6f64756c652063616e2774206265207a65726f000000006044820152fd5b91905060803660031901126105385760243560ff811680910361091657610b38612040565b6801bc16d674ec8000003403610cb0578390610b5634600654611ea2565b60065582516340c10f1960e01b815233818601908152346020828101919091529195916001600160a01b039187908190604001038187857f0000000000000000000000000000000000000000000000000000000000000000165af1958615610ca6578496610c6f575b5060025460081c1691823b156107395760c48492838751958694859363691db4e160e01b855233818601523460248601523560448501526064840152604435608484015260643560a48401525af18015610c6557610c51575b5050807f071464ed23d89f47be15656b77a0b638a220b7f85ba6bf9db649c41f64142a4591519234845260208401523392a26001805580f35b610c5a90611e58565b610538578238610c18565b83513d84823e3d90fd5b935094506020833d602011610c9e575b81610c8c60209383611e81565b81010312610916578592519438610bbf565b3d9150610c7f565b85513d86823e3d90fd5b815162461bcd60e51b815260208185015260156024820152740c2dadeeadce840daeae6e840c4ca406664408aa89605b1b6044820152606490fd5b50503461029457816003193601126102945760209060095460c01c9051908152f35b505034610294578160031936011261029457602090517f5098275140f5753db46c42f6e139939968848633a1298402189fdfdafa69b4538152f35b505034610294578160031936011261029457600a548151911c6001600160401b03168152602090f35b50503461029457816003193601126102945751908152602090f35b5050346102945781600319360112610294576020906006549051908152f35b90503461053857816003193601126105385781602093610dc9611e2c565b92358152808552209060018060a01b0316600052825260ff81600020541690519015158152f35b5050346102945781600319360112610294576020906008549051908152f35b83903461029457602036600319011261029457610e2a611f66565b3560075580f35b83915034610294578160031936011261029457610e4c611f66565b6002549260ff841615610ef857829360ff19166002557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa60208251338152a17f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031691823b15610ef3578151631fa5d41d60e11b81529284918491829084905af19081156103ab5750610ee35750f35b610eec90611e58565b6103a85780f35b505050fd5b51638dfc202b60e01b8152fd5b90508260031936011261053857610f1a612040565b610f2f60018060a01b03600354163314611eed565b610f3a341515611f31565b60055490348210610f8457507faace8198adfd57ac0d89093826c5ac4d5135d57ec155bddfbd80d3659f663b6c91610f756020923490611ee0565b60055551348152a16001805580f35b606490602084519162461bcd60e51b8352820152601d60248201527f726563656976696e67206d6f7265207468616e207265717565737465640000006044820152fd5b905082346103a857806003193601126103a857610ff6610fea4760055490611ea2565b92600654905490611ea2565b9081831061101957906110099192611ee0565b905b825191825215156020820152f35b5060019161102691611ee0565b9061100b565b905034610538576020366003190112610538578035906001600160401b0382168083036103b45761105b611f66565b1561108a575067ffffffffffffffff60401b90600954921b169067ffffffffffffffff60401b19161760095580f35b606490602084519162461bcd60e51b8352820152601d60248201527f52657761726420636f6f6c646f776e2063616e2774206265207a65726f0000006044820152fd5b905034610538576020366003190112610538576110e8611e42565b6110f0611f66565b6001600160a01b031691821561111d5750506bffffffffffffffffffffffff60a01b600354161760035580f35b906020606492519162461bcd60e51b83528201526015602482015274616464726573732063616e2774206265207a65726f60581b6044820152fd5b90503461053857826003193601126105385760209250549051908152f35b9050346105385760203660031901126105385780359182156111f2576003546001600160a01b031633036111b757836111b184600554611ea2565b60055580f35b906020606492519162461bcd60e51b8352820152601560248201527413db9b1e481dda5d1a191c985dd85b081d985d5b1d605a1b6044820152fd5b906020606492519162461bcd60e51b83528201526014602482015273616d6f756e742063616e2774206265207a65726f60601b6044820152fd5b50503461029457816003193601126102945760035490516001600160a01b039091168152602090f35b8284346103a85760203660031901126103a85750611275602092356121a8565b9051908152f35b50503461029457816003193601126102945760209060ff6002541690519015158152f35b809184346113515782600319360112611351576112bb611f66565b6112c3612063565b600160ff1960025416176002557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25860208251338152a17f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031691823b15610ef3578151638456cb5960e01b81529284918491829084905af19081156103ab5750610ee35750f35b5050fd5b505034610294578160031936011261029457600254905160089190911c6001600160a01b03168152602090f35b5050346102945781600319360112610294576020906007549051908152f35b5050346102945781600319360112610294576020906001600160401b0360095460801c169051908152f35b505034610294578160031936011261029457517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b9190503461053857602090816003193601126107395761142e612040565b611436612063565b805163084e1b0f60e31b8152833584820152336024820152928284604481887f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165af19384156115e05785946115b1575b50834710611579576114a2848254611ee0565b815583471061155d578480808087335af1903d15611555573d916001600160401b038311611542578351926114e0601f8201601f1916870185611e81565b83523d878685013e5b15611521575050907fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a91519283523392a26001805580f35b815191939290911561153557505081519101fd5b5163d6bda27560e01b8152fd5b634e487b7160e01b875260418252602487fd5b6060916114e9565b836044924790519263cf47918160e01b84528301526024820152fd5b82606492519162461bcd60e51b83528201526014602482015273496e73756666696369656e742062616c616e636560601b6044820152fd5b9093508281813d83116115d9575b6115c98183611e81565b810103126109165751923861148f565b503d6115bf565b82513d87823e3d90fd5b838334610294578060031936011261029457611604611e2c565b90336001600160a01b0383160361162157506105da919235612133565b5163334bd91960e11b81528390fd5b839150346102945760203660031901126102945780359261164f612040565b611657611fbe565b8315611721576801bc16d674ec8000008402916801bc16d674ec7fffff198584040161170e57600654948386106116dc57611693848697611ee0565b60065560025460081c6001600160a01b031693843b15610987578592602491855196879485936354d23f8560e01b85528401525af19081156103ab575061039457506001805580f35b506020606492519162461bcd60e51b8352820152600c60248201526b1b9bdd081c995cd95c9d995960a21b6044820152fd5b634e487b7160e01b845260119052602483fd5b906020606492519162461bcd60e51b835282015260076024820152666e6f206b65797360c81b6044820152fd5b90503461053857602036600319011261053857356001600160401b038116808203610739577fbed5c6f60eb5063b2dcda29db3ea53c1e62c7868ca5bb66f7d9bc681ee3220d9926020926117a0611f66565b6009805467ffffffffffffffff60801b191660809290921b67ffffffffffffffff60801b169190911790556104f96120ff565b919050346105385780600319360112610538576105da91356117f860016105c4611e2c565b612081565b505034610294578160031936011261029457517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b90503461053857602036600319011261053857816020936001923581528085522001549051908152f35b505034610294578160031936011261029457602090516127108152f35b919050346105385760a03660031901126105385781359060249060449182359060ff8216809203611c5c5760646118bd612040565b6118c5612063565b8515611c1e5783516370a0823160e01b815233818901526001600160a01b039760209490917f00000000000000000000000000000000000000000000000000000000000000008a16919086818781865afa908115611c1457908a918d91611bdf575b5010611bad57813b15611b855786519063d505accf60e01b82523384830152308683015289898301528535858301526084820152833560a482015260843560c48201528a8160e48183865af18015611b9057611b9a575b5089908589858a8d7f000000000000000000000000000000000000000000000000000000000000000016958b5195869485936323b872dd60e01b8552338b860152898d8601528401525af1908115611b90578b91611b56575b5015611b215790818a959493923b1561098757858091858b8a51998a938492630852cd8d60e31b8452888401525af1998a15611b1557899a9996979899611afb575b869750611a2886978454611ea2565b83556001600160401b03611a428160095416824216611ec5565b8a51998a9788966357cb494760e01b8852339088015286015216809a8401527f0000000000000000000000000000000000000000000000000000000000000000165af1918215610922578692611acc575b5082519485528401528201527f5b5919a27b29ed9ea8fdb44f39ca081298229768813e2b5ffbd9d83eeb1de61e60603392a26001805580f35b9080925081813d8311611af4575b611ae48183611e81565b8101031261091657519038611a93565b503d611ada565b949550611b088197611e58565b6109875785899594611a19565b508651903d90823e3d90fd5b50845162461bcd60e51b8152908101849052601381840152721d1c985b9cd9995c919c9bdb4819985a5b1959606a1b81870152fd5b90508581813d8311611b89575b611b6d8183611e81565b81010312611b8557518015158103611b8557386119d7565b8a80fd5b503d611b63565b87513d8d823e3d90fd5b611ba6909a919a611e58565b983861197e565b5050845162461bcd60e51b8152908101849052600f818401526e457863656564732062616c616e636560881b81870152fd5b809250888092503d8311611c0d575b611bf88183611e81565b81010312611c095789905138611927565b8b80fd5b503d611bee565b88513d8e823e3d90fd5b835162461bcd60e51b81526020818901526017818401527f6c6971416d6f756e742063616e2774206265207a65726f00000000000000000081870152fd5b8680fd5b905034610538576020366003190112610538578035916001600160401b03831680930361073957611c8f611f66565b8215611cab5750506001600160401b0319600954161760095580f35b906020606492519162461bcd60e51b8352820152601c60248201527f57697468647261772064656c61792063616e2774206265207a65726f000000006044820152fd5b505034610294578160031936011261029457517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b505034610294578160031936011261029457602090517f352d05fe3946dbe49277552ba941e744d5a96d9c60bc1ba0ea5f1d3ae000f7c88152f35b505034610294578160031936011261029457517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b5050346102945781600319360112610294576020906001600160401b03600954169051908152f35b849134610538576020366003190112610538573563ffffffff60e01b81168091036105385760209250637965db0b60e01b8114908115611e1b575b5015158152f35b6301ffc9a760e01b14905083611e14565b602435906001600160a01b038216820361091657565b600435906001600160a01b038216820361091657565b6001600160401b038111611e6b57604052565b634e487b7160e01b600052604160045260246000fd5b90601f801991011681019081106001600160401b03821117611e6b57604052565b91908201809211611eaf57565b634e487b7160e01b600052601160045260246000fd5b9190916001600160401b0380809416911601918211611eaf57565b91908203918211611eaf57565b15611ef457565b60405162461bcd60e51b815260206004820152601560248201527413db9b1e481dda5d1a191c985dd85b0815985d5b1d605a1b6044820152606490fd5b15611f3857565b60405162461bcd60e51b815260206004820152600660248201526509cde40cae8d60d31b6044820152606490fd5b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604081205460ff1615611fa05750565b6044906040519063e2517d3f60e01b82523360048301526024820152fd5b3360009081527f09a4e6cc3044cd664e744b4b3f312b502e02bf3949a0b298004a442bdfdb2aed60205260409020547feaea87345c0a5b2ecb49cde771d9ac5bfe2528357e00d43a1e06a12c2779f3ca9060ff1615611fa05750565b80600052600060205260406000203360005260205260ff6040600020541615611fa05750565b600260015414612051576002600155565b604051633ee5aeb560e01b8152600490fd5b60ff6002541661206f57565b60405163d93c066560e01b8152600490fd5b9060009180835282602052604083209160018060a01b03169182845260205260ff604084205416156000146120fa57808352826020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b6009546001600160401b0390818160801c169060c01c02908116908103611eaf576001600160401b0319600a541617600a55565b9060009180835282602052604083209160018060a01b03169182845260205260ff6040842054166000146120fa5780835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a4600190565b6001600160401b03600a54169081810290808204831490151715611eaf576237b1d0918201809211611eaf5781156121de570490565b634e487b7160e01b600052601260045260246000fdfea26469706673582212200dbfeca793a9cae88a67cea92e421fc337c2c20440e6e9b46b1900e7c714505b64736f6c63430008190033",
|
|
1151
|
+
"linkReferences": {},
|
|
1152
|
+
"deployedLinkReferences": {}
|
|
1153
|
+
}
|