@sablier/bob 1.0.1
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/CHANGELOG.md +19 -0
- package/LICENSE-BUSL.md +82 -0
- package/LICENSE-GPL.md +470 -0
- package/LICENSE.md +9 -0
- package/README.md +81 -0
- package/artifacts/BobVaultShare.json +936 -0
- package/artifacts/SablierBob.json +1683 -0
- package/artifacts/SablierEscrow.json +1316 -0
- package/artifacts/SablierLidoAdapter.json +1649 -0
- package/artifacts/erc20/IERC20.json +226 -0
- package/artifacts/interfaces/IBobVaultShare.json +393 -0
- package/artifacts/interfaces/ISablierBob.json +1171 -0
- package/artifacts/interfaces/ISablierEscrow.json +999 -0
- package/artifacts/interfaces/ISablierLidoAdapter.json +1141 -0
- package/artifacts/interfaces/external/ICurveStETHPool.json +128 -0
- package/artifacts/interfaces/external/ILidoWithdrawalQueue.json +209 -0
- package/artifacts/interfaces/external/IStETH.json +262 -0
- package/artifacts/interfaces/external/IWETH9.json +259 -0
- package/artifacts/interfaces/external/IWstETH.json +311 -0
- package/artifacts/libraries/Errors.json +868 -0
- package/package.json +68 -0
- package/src/BobVaultShare.sol +119 -0
- package/src/SablierBob.sol +543 -0
- package/src/SablierEscrow.sol +288 -0
- package/src/SablierLidoAdapter.sol +549 -0
- package/src/abstracts/SablierBobState.sol +156 -0
- package/src/abstracts/SablierEscrowState.sol +159 -0
- package/src/interfaces/IBobVaultShare.sol +51 -0
- package/src/interfaces/ISablierBob.sol +261 -0
- package/src/interfaces/ISablierBobAdapter.sol +157 -0
- package/src/interfaces/ISablierBobState.sol +74 -0
- package/src/interfaces/ISablierEscrow.sol +148 -0
- package/src/interfaces/ISablierEscrowState.sol +77 -0
- package/src/interfaces/ISablierLidoAdapter.sol +110 -0
- package/src/interfaces/external/ICurveStETHPool.sol +31 -0
- package/src/interfaces/external/ILidoWithdrawalQueue.sol +67 -0
- package/src/interfaces/external/IStETH.sol +18 -0
- package/src/interfaces/external/IWETH9.sol +19 -0
- package/src/interfaces/external/IWstETH.sol +32 -0
- package/src/libraries/Errors.sol +189 -0
- package/src/types/Bob.sol +49 -0
- package/src/types/Escrow.sol +49 -0
|
@@ -0,0 +1,868 @@
|
|
|
1
|
+
{
|
|
2
|
+
"abi": [
|
|
3
|
+
{
|
|
4
|
+
"type": "error",
|
|
5
|
+
"name": "BobVaultShare_OnlySablierBob",
|
|
6
|
+
"inputs": [
|
|
7
|
+
{ "name": "caller", "type": "address", "internalType": "address" },
|
|
8
|
+
{ "name": "expectedCaller", "type": "address", "internalType": "address" }
|
|
9
|
+
]
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"type": "error",
|
|
13
|
+
"name": "BobVaultShare_VaultIdMismatch",
|
|
14
|
+
"inputs": [
|
|
15
|
+
{ "name": "providedVaultId", "type": "uint256", "internalType": "uint256" },
|
|
16
|
+
{ "name": "expectedVaultId", "type": "uint256", "internalType": "uint256" }
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"type": "error",
|
|
21
|
+
"name": "SablierBobState_Null",
|
|
22
|
+
"inputs": [{ "name": "vaultId", "type": "uint256", "internalType": "uint256" }]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"type": "error",
|
|
26
|
+
"name": "SablierBob_CallerNotShareToken",
|
|
27
|
+
"inputs": [
|
|
28
|
+
{ "name": "vaultId", "type": "uint256", "internalType": "uint256" },
|
|
29
|
+
{ "name": "caller", "type": "address", "internalType": "address" }
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"type": "error",
|
|
34
|
+
"name": "SablierBob_DepositAmountZero",
|
|
35
|
+
"inputs": [
|
|
36
|
+
{ "name": "vaultId", "type": "uint256", "internalType": "uint256" },
|
|
37
|
+
{ "name": "user", "type": "address", "internalType": "address" }
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"type": "error",
|
|
42
|
+
"name": "SablierBob_ExpiryNotInFuture",
|
|
43
|
+
"inputs": [
|
|
44
|
+
{ "name": "expiry", "type": "uint40", "internalType": "uint40" },
|
|
45
|
+
{ "name": "currentTime", "type": "uint40", "internalType": "uint40" }
|
|
46
|
+
]
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"type": "error",
|
|
50
|
+
"name": "SablierBob_ForbidNativeToken",
|
|
51
|
+
"inputs": [{ "name": "nativeToken", "type": "address", "internalType": "address" }]
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"type": "error",
|
|
55
|
+
"name": "SablierBob_InsufficientFeePayment",
|
|
56
|
+
"inputs": [
|
|
57
|
+
{ "name": "feePaid", "type": "uint256", "internalType": "uint256" },
|
|
58
|
+
{ "name": "feeRequired", "type": "uint256", "internalType": "uint256" }
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"type": "error",
|
|
63
|
+
"name": "SablierBob_MsgValueNotZero",
|
|
64
|
+
"inputs": [{ "name": "vaultId", "type": "uint256", "internalType": "uint256" }]
|
|
65
|
+
},
|
|
66
|
+
{ "type": "error", "name": "SablierBob_NativeFeeTransferFailed", "inputs": [] },
|
|
67
|
+
{
|
|
68
|
+
"type": "error",
|
|
69
|
+
"name": "SablierBob_NativeTokenAlreadySet",
|
|
70
|
+
"inputs": [{ "name": "nativeToken", "type": "address", "internalType": "address" }]
|
|
71
|
+
},
|
|
72
|
+
{ "type": "error", "name": "SablierBob_NativeTokenZeroAddress", "inputs": [] },
|
|
73
|
+
{
|
|
74
|
+
"type": "error",
|
|
75
|
+
"name": "SablierBob_NewAdapterMissesInterface",
|
|
76
|
+
"inputs": [{ "name": "adapter", "type": "address", "internalType": "address" }]
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"type": "error",
|
|
80
|
+
"name": "SablierBob_NoSharesToRedeem",
|
|
81
|
+
"inputs": [
|
|
82
|
+
{ "name": "vaultId", "type": "uint256", "internalType": "uint256" },
|
|
83
|
+
{ "name": "user", "type": "address", "internalType": "address" }
|
|
84
|
+
]
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"type": "error",
|
|
88
|
+
"name": "SablierBob_TargetPriceTooLow",
|
|
89
|
+
"inputs": [
|
|
90
|
+
{ "name": "targetPrice", "type": "uint128", "internalType": "uint128" },
|
|
91
|
+
{ "name": "currentPrice", "type": "uint128", "internalType": "uint128" }
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
{ "type": "error", "name": "SablierBob_TargetPriceZero", "inputs": [] },
|
|
95
|
+
{ "type": "error", "name": "SablierBob_TokenAddressZero", "inputs": [] },
|
|
96
|
+
{
|
|
97
|
+
"type": "error",
|
|
98
|
+
"name": "SablierBob_UnstakeAmountZero",
|
|
99
|
+
"inputs": [{ "name": "vaultId", "type": "uint256", "internalType": "uint256" }]
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"type": "error",
|
|
103
|
+
"name": "SablierBob_VaultAlreadyUnstaked",
|
|
104
|
+
"inputs": [{ "name": "vaultId", "type": "uint256", "internalType": "uint256" }]
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"type": "error",
|
|
108
|
+
"name": "SablierBob_VaultHasNoAdapter",
|
|
109
|
+
"inputs": [{ "name": "vaultId", "type": "uint256", "internalType": "uint256" }]
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"type": "error",
|
|
113
|
+
"name": "SablierBob_VaultNotActive",
|
|
114
|
+
"inputs": [{ "name": "vaultId", "type": "uint256", "internalType": "uint256" }]
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"type": "error",
|
|
118
|
+
"name": "SablierBob_VaultStillActive",
|
|
119
|
+
"inputs": [{ "name": "vaultId", "type": "uint256", "internalType": "uint256" }]
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"type": "error",
|
|
123
|
+
"name": "SablierEscrowState_NewTradeFeeTooHigh",
|
|
124
|
+
"inputs": [
|
|
125
|
+
{ "name": "newTradeFee", "type": "uint256", "internalType": "UD60x18" },
|
|
126
|
+
{ "name": "maxTradeFee", "type": "uint256", "internalType": "UD60x18" }
|
|
127
|
+
]
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"type": "error",
|
|
131
|
+
"name": "SablierEscrowState_Null",
|
|
132
|
+
"inputs": [{ "name": "orderId", "type": "uint256", "internalType": "uint256" }]
|
|
133
|
+
},
|
|
134
|
+
{ "type": "error", "name": "SablierEscrow_BuyTokenZero", "inputs": [] },
|
|
135
|
+
{
|
|
136
|
+
"type": "error",
|
|
137
|
+
"name": "SablierEscrow_CallerNotAuthorized",
|
|
138
|
+
"inputs": [
|
|
139
|
+
{ "name": "orderId", "type": "uint256", "internalType": "uint256" },
|
|
140
|
+
{ "name": "caller", "type": "address", "internalType": "address" },
|
|
141
|
+
{ "name": "expectedCaller", "type": "address", "internalType": "address" }
|
|
142
|
+
]
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"type": "error",
|
|
146
|
+
"name": "SablierEscrow_ExpiryTimeInPast",
|
|
147
|
+
"inputs": [
|
|
148
|
+
{ "name": "expiryTime", "type": "uint40", "internalType": "uint40" },
|
|
149
|
+
{ "name": "currentTime", "type": "uint40", "internalType": "uint40" }
|
|
150
|
+
]
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"type": "error",
|
|
154
|
+
"name": "SablierEscrow_ForbidNativeToken",
|
|
155
|
+
"inputs": [{ "name": "nativeToken", "type": "address", "internalType": "address" }]
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"type": "error",
|
|
159
|
+
"name": "SablierEscrow_InsufficientBuyAmount",
|
|
160
|
+
"inputs": [
|
|
161
|
+
{ "name": "buyAmount", "type": "uint128", "internalType": "uint128" },
|
|
162
|
+
{ "name": "minBuyAmount", "type": "uint128", "internalType": "uint128" }
|
|
163
|
+
]
|
|
164
|
+
},
|
|
165
|
+
{ "type": "error", "name": "SablierEscrow_MinBuyAmountZero", "inputs": [] },
|
|
166
|
+
{
|
|
167
|
+
"type": "error",
|
|
168
|
+
"name": "SablierEscrow_NativeTokenAlreadySet",
|
|
169
|
+
"inputs": [{ "name": "nativeToken", "type": "address", "internalType": "address" }]
|
|
170
|
+
},
|
|
171
|
+
{ "type": "error", "name": "SablierEscrow_NativeTokenZeroAddress", "inputs": [] },
|
|
172
|
+
{
|
|
173
|
+
"type": "error",
|
|
174
|
+
"name": "SablierEscrow_OrderCancelled",
|
|
175
|
+
"inputs": [{ "name": "orderId", "type": "uint256", "internalType": "uint256" }]
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"type": "error",
|
|
179
|
+
"name": "SablierEscrow_OrderFilled",
|
|
180
|
+
"inputs": [{ "name": "orderId", "type": "uint256", "internalType": "uint256" }]
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"type": "error",
|
|
184
|
+
"name": "SablierEscrow_OrderNotOpen",
|
|
185
|
+
"inputs": [
|
|
186
|
+
{ "name": "orderId", "type": "uint256", "internalType": "uint256" },
|
|
187
|
+
{ "name": "status", "type": "uint8", "internalType": "enum Escrow.Status" }
|
|
188
|
+
]
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"type": "error",
|
|
192
|
+
"name": "SablierEscrow_SameToken",
|
|
193
|
+
"inputs": [{ "name": "token", "type": "address", "internalType": "contract IERC20" }]
|
|
194
|
+
},
|
|
195
|
+
{ "type": "error", "name": "SablierEscrow_SellAmountZero", "inputs": [] },
|
|
196
|
+
{ "type": "error", "name": "SablierEscrow_SellTokenZero", "inputs": [] },
|
|
197
|
+
{
|
|
198
|
+
"type": "error",
|
|
199
|
+
"name": "SablierLidoAdapter_LidoWithdrawalAlreadyRequested",
|
|
200
|
+
"inputs": [{ "name": "vaultId", "type": "uint256", "internalType": "uint256" }]
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"type": "error",
|
|
204
|
+
"name": "SablierLidoAdapter_NoWstETHToWithdraw",
|
|
205
|
+
"inputs": [{ "name": "vaultId", "type": "uint256", "internalType": "uint256" }]
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"type": "error",
|
|
209
|
+
"name": "SablierLidoAdapter_OnlySablierBob",
|
|
210
|
+
"inputs": [
|
|
211
|
+
{ "name": "caller", "type": "address", "internalType": "address" },
|
|
212
|
+
{ "name": "expectedCaller", "type": "address", "internalType": "address" }
|
|
213
|
+
]
|
|
214
|
+
},
|
|
215
|
+
{ "type": "error", "name": "SablierLidoAdapter_OraclePriceZero", "inputs": [] },
|
|
216
|
+
{
|
|
217
|
+
"type": "error",
|
|
218
|
+
"name": "SablierLidoAdapter_SlippageExceeded",
|
|
219
|
+
"inputs": [
|
|
220
|
+
{ "name": "expected", "type": "uint256", "internalType": "uint256" },
|
|
221
|
+
{ "name": "actual", "type": "uint256", "internalType": "uint256" }
|
|
222
|
+
]
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"type": "error",
|
|
226
|
+
"name": "SablierLidoAdapter_SlippageToleranceTooHigh",
|
|
227
|
+
"inputs": [
|
|
228
|
+
{ "name": "tolerance", "type": "uint256", "internalType": "UD60x18" },
|
|
229
|
+
{ "name": "maxTolerance", "type": "uint256", "internalType": "UD60x18" }
|
|
230
|
+
]
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"type": "error",
|
|
234
|
+
"name": "SablierLidoAdapter_UserBalanceZero",
|
|
235
|
+
"inputs": [
|
|
236
|
+
{ "name": "vaultId", "type": "uint256", "internalType": "uint256" },
|
|
237
|
+
{ "name": "user", "type": "address", "internalType": "address" }
|
|
238
|
+
]
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"type": "error",
|
|
242
|
+
"name": "SablierLidoAdapter_VaultActive",
|
|
243
|
+
"inputs": [{ "name": "vaultId", "type": "uint256", "internalType": "uint256" }]
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"type": "error",
|
|
247
|
+
"name": "SablierLidoAdapter_VaultAlreadyUnstaked",
|
|
248
|
+
"inputs": [{ "name": "vaultId", "type": "uint256", "internalType": "uint256" }]
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"type": "error",
|
|
252
|
+
"name": "SablierLidoAdapter_WithdrawalAmountBelowMinimum",
|
|
253
|
+
"inputs": [
|
|
254
|
+
{ "name": "vaultId", "type": "uint256", "internalType": "uint256" },
|
|
255
|
+
{ "name": "totalAmount", "type": "uint256", "internalType": "uint256" },
|
|
256
|
+
{ "name": "minimumAmountPerRequest", "type": "uint256", "internalType": "uint256" }
|
|
257
|
+
]
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"type": "error",
|
|
261
|
+
"name": "SablierLidoAdapter_WstETHTransferAmountZero",
|
|
262
|
+
"inputs": [
|
|
263
|
+
{ "name": "vaultId", "type": "uint256", "internalType": "uint256" },
|
|
264
|
+
{ "name": "from", "type": "address", "internalType": "address" },
|
|
265
|
+
{ "name": "to", "type": "address", "internalType": "address" }
|
|
266
|
+
]
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"type": "error",
|
|
270
|
+
"name": "SablierLidoAdapter_YieldFeeTooHigh",
|
|
271
|
+
"inputs": [
|
|
272
|
+
{ "name": "fee", "type": "uint256", "internalType": "UD60x18" },
|
|
273
|
+
{ "name": "maxFee", "type": "uint256", "internalType": "UD60x18" }
|
|
274
|
+
]
|
|
275
|
+
}
|
|
276
|
+
],
|
|
277
|
+
"bytecode": {
|
|
278
|
+
"object": "0x6080806040523460175760399081601c823930815050f35b5f80fdfe5f80fdfea264697066735822122022cee6a7b30570df509257079c922619a5c93febbfafdbde5854a65c775c399164736f6c634300081d0033",
|
|
279
|
+
"sourceMap": "349:9259:98:-:0;;;;;;;;;;;;;;;;;;;;;",
|
|
280
|
+
"linkReferences": {}
|
|
281
|
+
},
|
|
282
|
+
"deployedBytecode": {
|
|
283
|
+
"object": "0x5f80fdfea264697066735822122022cee6a7b30570df509257079c922619a5c93febbfafdbde5854a65c775c399164736f6c634300081d0033",
|
|
284
|
+
"sourceMap": "349:9259:98:-:0;;",
|
|
285
|
+
"linkReferences": {}
|
|
286
|
+
},
|
|
287
|
+
"methodIdentifiers": {},
|
|
288
|
+
"rawMetadata": "{\"compiler\":{\"version\":\"0.8.29+commit.ab55807c\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"expectedCaller\",\"type\":\"address\"}],\"name\":\"BobVaultShare_OnlySablierBob\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"providedVaultId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expectedVaultId\",\"type\":\"uint256\"}],\"name\":\"BobVaultShare_VaultIdMismatch\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"vaultId\",\"type\":\"uint256\"}],\"name\":\"SablierBobState_Null\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"vaultId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"SablierBob_CallerNotShareToken\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"vaultId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"SablierBob_DepositAmountZero\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint40\",\"name\":\"expiry\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"currentTime\",\"type\":\"uint40\"}],\"name\":\"SablierBob_ExpiryNotInFuture\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"nativeToken\",\"type\":\"address\"}],\"name\":\"SablierBob_ForbidNativeToken\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"feePaid\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"feeRequired\",\"type\":\"uint256\"}],\"name\":\"SablierBob_InsufficientFeePayment\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"vaultId\",\"type\":\"uint256\"}],\"name\":\"SablierBob_MsgValueNotZero\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"SablierBob_NativeFeeTransferFailed\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"nativeToken\",\"type\":\"address\"}],\"name\":\"SablierBob_NativeTokenAlreadySet\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"SablierBob_NativeTokenZeroAddress\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"adapter\",\"type\":\"address\"}],\"name\":\"SablierBob_NewAdapterMissesInterface\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"vaultId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"SablierBob_NoSharesToRedeem\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint128\",\"name\":\"targetPrice\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"currentPrice\",\"type\":\"uint128\"}],\"name\":\"SablierBob_TargetPriceTooLow\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"SablierBob_TargetPriceZero\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"SablierBob_TokenAddressZero\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"vaultId\",\"type\":\"uint256\"}],\"name\":\"SablierBob_UnstakeAmountZero\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"vaultId\",\"type\":\"uint256\"}],\"name\":\"SablierBob_VaultAlreadyUnstaked\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"vaultId\",\"type\":\"uint256\"}],\"name\":\"SablierBob_VaultHasNoAdapter\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"vaultId\",\"type\":\"uint256\"}],\"name\":\"SablierBob_VaultNotActive\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"vaultId\",\"type\":\"uint256\"}],\"name\":\"SablierBob_VaultStillActive\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"UD60x18\",\"name\":\"newTradeFee\",\"type\":\"uint256\"},{\"internalType\":\"UD60x18\",\"name\":\"maxTradeFee\",\"type\":\"uint256\"}],\"name\":\"SablierEscrowState_NewTradeFeeTooHigh\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"orderId\",\"type\":\"uint256\"}],\"name\":\"SablierEscrowState_Null\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"SablierEscrow_BuyTokenZero\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"orderId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"expectedCaller\",\"type\":\"address\"}],\"name\":\"SablierEscrow_CallerNotAuthorized\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint40\",\"name\":\"expiryTime\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"currentTime\",\"type\":\"uint40\"}],\"name\":\"SablierEscrow_ExpiryTimeInPast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"nativeToken\",\"type\":\"address\"}],\"name\":\"SablierEscrow_ForbidNativeToken\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint128\",\"name\":\"buyAmount\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"minBuyAmount\",\"type\":\"uint128\"}],\"name\":\"SablierEscrow_InsufficientBuyAmount\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"SablierEscrow_MinBuyAmountZero\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"nativeToken\",\"type\":\"address\"}],\"name\":\"SablierEscrow_NativeTokenAlreadySet\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"SablierEscrow_NativeTokenZeroAddress\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"orderId\",\"type\":\"uint256\"}],\"name\":\"SablierEscrow_OrderCancelled\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"orderId\",\"type\":\"uint256\"}],\"name\":\"SablierEscrow_OrderFilled\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"orderId\",\"type\":\"uint256\"},{\"internalType\":\"enum Escrow.Status\",\"name\":\"status\",\"type\":\"uint8\"}],\"name\":\"SablierEscrow_OrderNotOpen\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SablierEscrow_SameToken\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"SablierEscrow_SellAmountZero\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"SablierEscrow_SellTokenZero\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"vaultId\",\"type\":\"uint256\"}],\"name\":\"SablierLidoAdapter_LidoWithdrawalAlreadyRequested\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"vaultId\",\"type\":\"uint256\"}],\"name\":\"SablierLidoAdapter_NoWstETHToWithdraw\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"expectedCaller\",\"type\":\"address\"}],\"name\":\"SablierLidoAdapter_OnlySablierBob\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"SablierLidoAdapter_OraclePriceZero\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"expected\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"actual\",\"type\":\"uint256\"}],\"name\":\"SablierLidoAdapter_SlippageExceeded\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"UD60x18\",\"name\":\"tolerance\",\"type\":\"uint256\"},{\"internalType\":\"UD60x18\",\"name\":\"maxTolerance\",\"type\":\"uint256\"}],\"name\":\"SablierLidoAdapter_SlippageToleranceTooHigh\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"vaultId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"SablierLidoAdapter_UserBalanceZero\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"vaultId\",\"type\":\"uint256\"}],\"name\":\"SablierLidoAdapter_VaultActive\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"vaultId\",\"type\":\"uint256\"}],\"name\":\"SablierLidoAdapter_VaultAlreadyUnstaked\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"vaultId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"totalAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"minimumAmountPerRequest\",\"type\":\"uint256\"}],\"name\":\"SablierLidoAdapter_WithdrawalAmountBelowMinimum\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"vaultId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"SablierLidoAdapter_WstETHTransferAmountZero\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"UD60x18\",\"name\":\"fee\",\"type\":\"uint256\"},{\"internalType\":\"UD60x18\",\"name\":\"maxFee\",\"type\":\"uint256\"}],\"name\":\"SablierLidoAdapter_YieldFeeTooHigh\",\"type\":\"error\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"title\":\"Errors\",\"version\":1},\"userdoc\":{\"errors\":{\"BobVaultShare_OnlySablierBob(address,address)\":[{\"notice\":\"Thrown when a function is called by an address other than SablierBob.\"}],\"BobVaultShare_VaultIdMismatch(uint256,uint256)\":[{\"notice\":\"Thrown when the provided vault ID does not match the share token's vault ID.\"}],\"SablierBobState_Null(uint256)\":[{\"notice\":\"Thrown when trying to interact with a non-existent vault.\"}],\"SablierBob_CallerNotShareToken(uint256,address)\":[{\"notice\":\"Thrown when `onShareTransfer` is called by an address other than the share token.\"}],\"SablierBob_DepositAmountZero(uint256,address)\":[{\"notice\":\"Thrown when depositing zero amount in a vault.\"}],\"SablierBob_ExpiryNotInFuture(uint40,uint40)\":[{\"notice\":\"Thrown when trying to create a vault with an expiry timestamp not in the future.\"}],\"SablierBob_ForbidNativeToken(address)\":[{\"notice\":\"Thrown when trying to create a vault with the native token.\"}],\"SablierBob_InsufficientFeePayment(uint256,uint256)\":[{\"notice\":\"Thrown when trying to redeem with `msg.value` less than the minimum fee required.\"}],\"SablierBob_MsgValueNotZero(uint256)\":[{\"notice\":\"Thrown when trying to pay a fee in the native token from a vault that uses the adapter.\"}],\"SablierBob_NativeFeeTransferFailed()\":[{\"notice\":\"Thrown when the native token fee transfer to the comptroller fails.\"}],\"SablierBob_NativeTokenAlreadySet(address)\":[{\"notice\":\"Thrown when trying to set the native token address when it is already set.\"}],\"SablierBob_NativeTokenZeroAddress()\":[{\"notice\":\"Thrown when trying to set zero address as native token.\"}],\"SablierBob_NewAdapterMissesInterface(address)\":[{\"notice\":\"Thrown when the new adapter does not implement the required interface.\"}],\"SablierBob_NoSharesToRedeem(uint256,address)\":[{\"notice\":\"Thrown when trying to exit or redeem with zero share balance.\"}],\"SablierBob_TargetPriceTooLow(uint128,uint128)\":[{\"notice\":\"Thrown when trying to create a vault with a target price that is not greater than the latest price returned by the oracle.\"}],\"SablierBob_TargetPriceZero()\":[{\"notice\":\"Thrown when trying to create a vault with a zero target price.\"}],\"SablierBob_TokenAddressZero()\":[{\"notice\":\"Thrown when trying to create a vault with a zero token address.\"}],\"SablierBob_UnstakeAmountZero(uint256)\":[{\"notice\":\"Thrown when trying to unstake vault tokens using the adapter but the amount staked is zero.\"}],\"SablierBob_VaultAlreadyUnstaked(uint256)\":[{\"notice\":\"Thrown when trying to unstake vault tokens using the adapter but the vault has already been unstaked.\"}],\"SablierBob_VaultHasNoAdapter(uint256)\":[{\"notice\":\"Thrown when trying to unstake from a vault that has no adapter configured.\"}],\"SablierBob_VaultNotActive(uint256)\":[{\"notice\":\"Thrown when trying to perform an unauthorized action on a non-active vault.\"}],\"SablierBob_VaultStillActive(uint256)\":[{\"notice\":\"Thrown when trying to perform an unauthorized action on an active vault.\"}],\"SablierEscrowState_NewTradeFeeTooHigh(uint256,uint256)\":[{\"notice\":\"Thrown when trying to set a trade fee that exceeds the maximum allowed.\"}],\"SablierEscrowState_Null(uint256)\":[{\"notice\":\"Thrown when trying to interact with a non-existent order.\"}],\"SablierEscrow_BuyTokenZero()\":[{\"notice\":\"Thrown when trying to create an order with a zero address for the buy token.\"}],\"SablierEscrow_CallerNotAuthorized(uint256,address,address)\":[{\"notice\":\"Thrown when the caller is not authorized to perform an action on an order.\"}],\"SablierEscrow_ExpiryTimeInPast(uint40,uint40)\":[{\"notice\":\"Thrown when trying to create an order with an expiration timestamp in the past.\"}],\"SablierEscrow_ForbidNativeToken(address)\":[{\"notice\":\"Thrown when trying to create an order with the native token.\"}],\"SablierEscrow_InsufficientBuyAmount(uint128,uint128)\":[{\"notice\":\"Thrown when trying to accept an order with a buy amount that is below the minimum amount required.\"}],\"SablierEscrow_MinBuyAmountZero()\":[{\"notice\":\"Thrown when trying to create an order with a zero buy amount.\"}],\"SablierEscrow_NativeTokenAlreadySet(address)\":[{\"notice\":\"Thrown when trying to set the native token address when it is already set.\"}],\"SablierEscrow_NativeTokenZeroAddress()\":[{\"notice\":\"Thrown when trying to set zero address as native token.\"}],\"SablierEscrow_OrderCancelled(uint256)\":[{\"notice\":\"Thrown when trying to cancel an order that has already been canceled.\"}],\"SablierEscrow_OrderFilled(uint256)\":[{\"notice\":\"Thrown when trying to cancel an order that has already been filled.\"}],\"SablierEscrow_OrderNotOpen(uint256,uint8)\":[{\"notice\":\"Thrown when trying to fill an order that has either been completed or canceled.\"}],\"SablierEscrow_SameToken(address)\":[{\"notice\":\"Thrown when trying to create an order with the same sell and buy tokens.\"}],\"SablierEscrow_SellAmountZero()\":[{\"notice\":\"Thrown when trying to create an order with a zero sell amount.\"}],\"SablierEscrow_SellTokenZero()\":[{\"notice\":\"Thrown when trying to create an order with a zero address for the sell token.\"}],\"SablierLidoAdapter_LidoWithdrawalAlreadyRequested(uint256)\":[{\"notice\":\"Thrown when trying to request a Lido withdrawal for a vault that has already requested one.\"}],\"SablierLidoAdapter_NoWstETHToWithdraw(uint256)\":[{\"notice\":\"Thrown when trying to request a Lido withdrawal for a vault with no wstETH.\"}],\"SablierLidoAdapter_OnlySablierBob(address,address)\":[{\"notice\":\"Thrown when a function is called by an address other than SablierBob.\"}],\"SablierLidoAdapter_OraclePriceZero()\":[{\"notice\":\"Thrown when the stETH/ETH oracle returns a zero price.\"}],\"SablierLidoAdapter_SlippageExceeded(uint256,uint256)\":[{\"notice\":\"Thrown when the Curve swap output is below the minimum acceptable amount.\"}],\"SablierLidoAdapter_SlippageToleranceTooHigh(uint256,uint256)\":[{\"notice\":\"Thrown when trying to set a slippage that exceeds the maximum allowed.\"}],\"SablierLidoAdapter_UserBalanceZero(uint256,address)\":[{\"notice\":\"Thrown when trying to update staked token balance but the user's balance is zero.\"}],\"SablierLidoAdapter_VaultActive(uint256)\":[{\"notice\":\"Thrown when trying to request a Lido withdrawal for a vault that is active.\"}],\"SablierLidoAdapter_VaultAlreadyUnstaked(uint256)\":[{\"notice\":\"Thrown when trying to request a Lido withdrawal for a vault that has already been unstaked.\"}],\"SablierLidoAdapter_WithdrawalAmountBelowMinimum(uint256,uint256,uint256)\":[{\"notice\":\"Thrown when the total amount to withdraw is below the minimum amount per request.\"}],\"SablierLidoAdapter_WstETHTransferAmountZero(uint256,address,address)\":[{\"notice\":\"Thrown when the calculated wstETH transfer amount rounds down to zero due to floor division.\"}],\"SablierLidoAdapter_YieldFeeTooHigh(uint256,uint256)\":[{\"notice\":\"Thrown when trying to set a yield fee that exceeds the maximum allowed.\"}]},\"kind\":\"user\",\"methods\":{},\"notice\":\"Library containing all custom errors emitted by the Sablier Bob protocol.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/libraries/Errors.sol\":\"Errors\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":1000000},\"remappings\":[\":@arbitrum/=node_modules/@arbitrum/\",\":@chainlink/=node_modules/@chainlink/\",\":@eth-optimism/=node_modules/@eth-optimism/\",\":@offchainlabs/=node_modules/@offchainlabs/\",\":@openzeppelin/=node_modules/@openzeppelin/\",\":@prb/=node_modules/@prb/\",\":@sablier/=node_modules/@sablier/\",\":@scroll-tech/=node_modules/@scroll-tech/\",\":@zksync/=node_modules/@zksync/\",\":forge-std/=node_modules/forge-std/\"],\"viaIR\":true},\"sources\":{\"node_modules/@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"node_modules/@prb/math/src/Common.sol\":{\"keccak256\":\"0x8225a3898d2f11f585da1fb82234800e9717fa080dbe53d450fd429a3a632e99\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2dcbf39ca575f68f32f0d1c66391de94082424956e7585e849813966f8c0fc05\",\"dweb:/ipfs/QmYvk8vXFDUJHrmqbtutYXfoLomLBosYLyBzuPoYBxsQ42\"]},\"node_modules/@prb/math/src/UD60x18.sol\":{\"keccak256\":\"0xb98c6f74275914d279e8af6c502c2b1f50d5f6e1ed418d3b0153f5a193206c48\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a750edde2955f160806a51083a12185fb04e20efca0e3a7ebd127dc1acc049a9\",\"dweb:/ipfs/QmeAre3mThopoQPB9mSXZq6jck59QZ7JbDFR83urd2SLvp\"]},\"node_modules/@prb/math/src/sd1x18/Casting.sol\":{\"keccak256\":\"0x5d365f655f01598926c5d4fe5cda277f2cc7736fe38f943c11a32009077ddd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://56b378bd6039819bc12e5f17dabd9492e1410b3281f9df496cf8210539101a11\",\"dweb:/ipfs/QmcMaE64ZWMg9cFhYxdTuG8nfzeDdNuTRHMMoFXi6tSZGu\"]},\"node_modules/@prb/math/src/sd1x18/Constants.sol\":{\"keccak256\":\"0xc14cc32061863d83912f9616de86f3c34f1ac58614b7d504c6ce07ee8efdb8e8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://22483b1282dda6a556b0232f008a5a3296bbfd76b1886e6b72bf351b7c554fab\",\"dweb:/ipfs/QmYX9cYkrFxBbhZNKsb6uUxtrc2chmAj7vuc7UKRPGMwos\"]},\"node_modules/@prb/math/src/sd1x18/Errors.sol\":{\"keccak256\":\"0xc3c8b1ab3d19889c356c222a3a2186d45dfc1d3a17b9ad88159bb64ee457baa6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://84fbe57569246403f778330bd7723018dfcb5f0ec50d7b1d82cc983c94a54bca\",\"dweb:/ipfs/QmWssAAnovc2EVjt58rTnxraE9B1RMivwTvYCYgpnr6oSE\"]},\"node_modules/@prb/math/src/sd1x18/ValueType.sol\":{\"keccak256\":\"0xaa9dc7b562faf45264390d80e2ea10c5295bb8a4f10d76261a3f9c04363734c0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6ca36acd15f5cb47cf124ddec289f84e1011f2d29056159e4570435629a3353\",\"dweb:/ipfs/QmUKdiLmZpAkNCq2TKxrPbQPUhiRFXGfjGSnY1VeHVu4y6\"]},\"node_modules/@prb/math/src/sd21x18/Casting.sol\":{\"keccak256\":\"0x4a16adddb9ab1f6939dd4567c77205015a11081cb840029b84bbb6fdaf78ee36\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5003b2f4cd2fc1413da36bc63107c6e83a88d29693e8f97b54f300fa78f9c6d2\",\"dweb:/ipfs/QmaNJn91NLrZmeeGqnFQV1FTrLVSW852zHyWTrWJ5pf1pd\"]},\"node_modules/@prb/math/src/sd21x18/Constants.sol\":{\"keccak256\":\"0x501c2d5cfdea9450422182059c8df1cb6a859901a07bd59631c3fa24edcc79d4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4669a65001c92919671fd879d33ce0e5030b602a7ba4d36bd2308128d8d1f396\",\"dweb:/ipfs/QmUC3bJ3qdkCmLMw3WHBcEqvuC4tExT2LXzUhgu5KQ3vi3\"]},\"node_modules/@prb/math/src/sd21x18/Errors.sol\":{\"keccak256\":\"0xc5422ee47eb139274e538e758fb40177a1ba22c2113ef3b3446102f0150bfe0a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a1981e052e9e86e1b0e4e55a057a7af4739aedd4ead2d60e3eaa40fb703594ee\",\"dweb:/ipfs/QmPK5qSujnyk1R8ues4RhDMy1tRKKyjQ31YJTviTKq7GML\"]},\"node_modules/@prb/math/src/sd21x18/ValueType.sol\":{\"keccak256\":\"0x532bba888370bed393464412f4ef3462d654802e71c953ad02d078e3d2701092\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://922a4e8dd813602f72d165aa1dfdf2c29b971a2abe73bebca7cd81a32ee2c880\",\"dweb:/ipfs/QmTBAJnx1r3sZpbQAuTgQtsTtvjZbpDwhCJRzkhzUumbdf\"]},\"node_modules/@prb/math/src/sd59x18/Casting.sol\":{\"keccak256\":\"0xdf70d8e70c6d6325f3f7eb028c484bc7189ef902f1d4b5b220af2e550bb5fc39\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0b15bcd36129c5cb163d57a117435afb171182018dd6d1e766a5f49cf1f4b63d\",\"dweb:/ipfs/QmbjzkMBH4FM2rdxGbx9LQ65wVERijNcu7R9C8dQmH3y4n\"]},\"node_modules/@prb/math/src/sd59x18/Constants.sol\":{\"keccak256\":\"0x9bcb8dd6b3e886d140ad1c32747a4f6d29a492529ceb835be878ae837aa6cc3a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c4045c633e3618e7e90a768d92415b2f20f781fe129b4f4e26fa88f7dbf9201f\",\"dweb:/ipfs/Qmbet95pizwPno82cJ383wJtgQRSQKESmhVZ1vDrgAu7Si\"]},\"node_modules/@prb/math/src/sd59x18/Errors.sol\":{\"keccak256\":\"0x0a79c28c85fc8a450b0801ff2e66114eac4ec565819f5d1d8738904658fe33e2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9e0d4fd3c998019fb8555d9e26c03bec42a8513bdf4185aeac2da3a000abaebf\",\"dweb:/ipfs/QmahFJHXcX4RwPxaQbUf6LVZEk8NSpjCV3Eif7i9iqC6Mk\"]},\"node_modules/@prb/math/src/sd59x18/Helpers.sol\":{\"keccak256\":\"0x208570f1657cf730cb6c3d81aa14030e0d45cf906cdedea5059369d7df4bb716\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4c78ca900edafa9338d4e3649a55ab0c84f76468d8a22fb945ba6d01e70f8fed\",\"dweb:/ipfs/QmeP4hQYfNxcATd1FsasdD4ebyu2vrC9K1N68swxUJzzZD\"]},\"node_modules/@prb/math/src/sd59x18/Math.sol\":{\"keccak256\":\"0xd8e8b51db9b3e2fa31a60f6b8ce4ea0112c3364442ede5992aa0aa7a2c925c84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3c56913970e34ee7b142047b21f1856a511cbdc3473b7c50418a8490e19cd462\",\"dweb:/ipfs/QmfG1F9CBDjPYD7NXora9awFfdpvBMY9SCg5pMLCFRv9tD\"]},\"node_modules/@prb/math/src/sd59x18/ValueType.sol\":{\"keccak256\":\"0x76597ba64d37d66e0178512bc9bbc1a031a7634c45e5d5c6e9da87f46952dc9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://36148899ad874814e9292636fb974d2eec61f1bcc0875ec39cf444d70ba40919\",\"dweb:/ipfs/QmadUe4kH2FPcdxvhCKy8yiezCvPWor4VcPzqLYSAaGDDb\"]},\"node_modules/@prb/math/src/ud21x18/Casting.sol\":{\"keccak256\":\"0x3821aa57604f6e5b7c9c5c5cc97a6d71116e673cf3fee5f76fcd42b4cefded65\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a80399c6b38ab45cc10d0a6683d50340cd89d9a085b6d0dcfb81e7c4e5b3ce09\",\"dweb:/ipfs/QmWNW2YD2LMkqrpAtJYeeuHN329Rx7mvfmrjsCo1p6akTL\"]},\"node_modules/@prb/math/src/ud21x18/Constants.sol\":{\"keccak256\":\"0x0997574a1ced6c43bde6d9c9175edc5ad64cbb920a0969a9db68eea543747601\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c09f03345a6779b002b38ffc3954258accbb2b1d0d5506d42c3bd7f117304f60\",\"dweb:/ipfs/QmTeBXRCE7H2HpqKUNsZN7Nk3rdBnFmbAUFom3E1PJeGuV\"]},\"node_modules/@prb/math/src/ud21x18/Errors.sol\":{\"keccak256\":\"0x35a1fb789b90f8c90865884d3023deb17fcca5c7146b5ddef823496d835a5415\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0af359d07ba25bdc90de7c05ed6216833932caa75d4a02fcfc51ceeaba5a4e80\",\"dweb:/ipfs/QmavBFw73Xfp1qJiN6P1gk2Dfr8ByWo3dyCPVgDHtko2gq\"]},\"node_modules/@prb/math/src/ud21x18/ValueType.sol\":{\"keccak256\":\"0x24838b2b1da371b9259d8ee21534a9f0cb5796aba75a4efca2374627952bee25\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://897e6b79308651671c7f3c91a0069e778b47356c9ba3f86e238398ab7f2623af\",\"dweb:/ipfs/QmZbLw3tJVRZFQnV9jWQUmF43gna841adSG2TAiwDAifGU\"]},\"node_modules/@prb/math/src/ud2x18/Casting.sol\":{\"keccak256\":\"0x0f3141ed054e7c29dbe1acb4b88b18eb05d60e998fba6b4e503a6799faa356d6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1e2468fc4c458082aaf4aa2e35af9ba3702f207e3c8533dd1e7da11ad605eae\",\"dweb:/ipfs/QmSm7iRH1eo4cJCwcAiiXWRH9Hn1urSS4tMdbaFbFGuTyL\"]},\"node_modules/@prb/math/src/ud2x18/Constants.sol\":{\"keccak256\":\"0x29b0e050c865899e1fb9022b460a7829cdee248c44c4299f068ba80695eec3fc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cbaef16b662fac235349bcf97bc980dd0cba15d4e6230caae61224cdac8ea6d9\",\"dweb:/ipfs/QmZQa5XBhi7k3yhtCd8wVpnwW8htfU4sjXxWhxRypMBYkC\"]},\"node_modules/@prb/math/src/ud2x18/Errors.sol\":{\"keccak256\":\"0x3b27e2a57438cd30d9c130f84aace24d547e5ed58e8689691d7d92ad2db38ddd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://841cf9fb45443899c6b659300bbf503c3fd2c1a1e83b7f0e28620eed457f7437\",\"dweb:/ipfs/QmUqg8WscP5yQPw3UMUCWaB9RLU6nryGzseuyhAjNnDc1i\"]},\"node_modules/@prb/math/src/ud2x18/ValueType.sol\":{\"keccak256\":\"0x975a2e69b48f34a4c0bd80e8a5609ac67b7264c91992c0944f9ebe7b9e3fc9d0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://65d012521c475295d7e70b7d526fcc0911d0f238ea938719d77251bba00c9b41\",\"dweb:/ipfs/QmexEvTQCCBPYRWAYnomZX5M7C2EkXQRAXqEYMNUZfazCs\"]},\"node_modules/@prb/math/src/ud60x18/Casting.sol\":{\"keccak256\":\"0x0803318ddc98b4ba8fbfe70e5ee08d78387fe6ae00982b9960518085a751d7b6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e68a2f780b2e33fa5416eb60f9daa81f014c2591119f4b67bed1217d5530780\",\"dweb:/ipfs/QmZe7JTWvbfKqMnu4sxUwWCtLcCay9hH71VZUpoFCdENcr\"]},\"node_modules/@prb/math/src/ud60x18/Constants.sol\":{\"keccak256\":\"0x2b80d26153d3fdcfb3a9ca772d9309d31ed1275f5b8b54c3ffb54d3652b37d90\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7e3a6673a156f635db94dc176baaa7274db8f9bec4461cd1152596253550ee3b\",\"dweb:/ipfs/Qmc9zT4kNSbMYaXcnbxNVqmb3P3m46ieaQxkwxqLwsvRA5\"]},\"node_modules/@prb/math/src/ud60x18/Conversions.sol\":{\"keccak256\":\"0xd486ecca97abe69acdb28230088f4c7097fbdae5b36c5ae45d5be2faac4c33f2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6080870ec6955ff0f5278f9c480b218a68714daf5f2ee42da0276d08d7b82932\",\"dweb:/ipfs/QmQ1SERHdemJgPrt4USwY8j5r63jZ8fQuJAm1knjMEEQEY\"]},\"node_modules/@prb/math/src/ud60x18/Errors.sol\":{\"keccak256\":\"0xbab6b0e303d32f3a9d9e2fe881f0392b8c59a73051a4d34f21a403b3961b3044\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://86a019bcf2510d0691287329dc057479cc0abc48a5e15f245e7f15c03052d2c8\",\"dweb:/ipfs/QmeXe5pbpDHvN5DZ8puXmH2RJ25zDHj55wpiStWtNQPvq6\"]},\"node_modules/@prb/math/src/ud60x18/Helpers.sol\":{\"keccak256\":\"0xf5faff881391d2c060029499a666cc5f0bea90a213150bb476fae8f02a5df268\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://76105fa22bb1b5f1fa99abf9c4fbc9577a02c7bc204f271754c407f0d75489f5\",\"dweb:/ipfs/QmVNGZSTniDuZus5DdbFubqJXCLtTaZit7YPm4ntjr5Lgr\"]},\"node_modules/@prb/math/src/ud60x18/Math.sol\":{\"keccak256\":\"0xc4e51dfd9af62938e277e90fa724099f239d33727a35909ed48c292a76faf2fc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d731537cbc50b852c21d28625aeb2c329729afc23a7b86ff9d8ee5878f47e9d6\",\"dweb:/ipfs/QmS7Cj4pAdPZcTp7RqYXyxBc9EYX92CT8icfkNigktUsLr\"]},\"node_modules/@prb/math/src/ud60x18/ValueType.sol\":{\"keccak256\":\"0x1b200baf25d01a8b91b97b42114248636f742b5b7028487ef4daef6621e378a3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b5708ed017206bda2197654e80bea9f37b3a9993434bb066c903c2865e028f47\",\"dweb:/ipfs/QmTyotZk2J5YvWkNvB2qhXBMgRGWW2UgPqR4JPocrXSr8n\"]},\"src/libraries/Errors.sol\":{\"keccak256\":\"0x6c053ba4f029f4835883cf2fecd2b8adb1371b8e9820f5a3fdf679fd864ac682\",\"license\":\"GPL-3.0-or-later\",\"urls\":[\"bzz-raw://e1d64e7f44f0e8dcb3c6842a1baa119c3dd4b1b14f29c07c4c93b4185f0a566e\",\"dweb:/ipfs/QmUjf9S6JduDhmpD8VriK8bMRYXD8m7XMRohhnE91mjDc9\"]},\"src/types/Escrow.sol\":{\"keccak256\":\"0xc4c65957eab4cfd50d7806778ca69366aebe22e98736315c62fa36bda5cddba6\",\"license\":\"GPL-3.0-or-later\",\"urls\":[\"bzz-raw://ef915ead3c018cd9c629fd3738eba614dfa0499492d25162129e9374607756c1\",\"dweb:/ipfs/QmenoUAVQFvKU4XVNm9Pm7RxvrTgBBJFXF6uNjqHMV1wAU\"]}},\"version\":1}",
|
|
289
|
+
"metadata": {
|
|
290
|
+
"compiler": { "version": "0.8.29+commit.ab55807c" },
|
|
291
|
+
"language": "Solidity",
|
|
292
|
+
"output": {
|
|
293
|
+
"abi": [
|
|
294
|
+
{
|
|
295
|
+
"inputs": [
|
|
296
|
+
{ "internalType": "address", "name": "caller", "type": "address" },
|
|
297
|
+
{ "internalType": "address", "name": "expectedCaller", "type": "address" }
|
|
298
|
+
],
|
|
299
|
+
"type": "error",
|
|
300
|
+
"name": "BobVaultShare_OnlySablierBob"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"inputs": [
|
|
304
|
+
{ "internalType": "uint256", "name": "providedVaultId", "type": "uint256" },
|
|
305
|
+
{ "internalType": "uint256", "name": "expectedVaultId", "type": "uint256" }
|
|
306
|
+
],
|
|
307
|
+
"type": "error",
|
|
308
|
+
"name": "BobVaultShare_VaultIdMismatch"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"inputs": [{ "internalType": "uint256", "name": "vaultId", "type": "uint256" }],
|
|
312
|
+
"type": "error",
|
|
313
|
+
"name": "SablierBobState_Null"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"inputs": [
|
|
317
|
+
{ "internalType": "uint256", "name": "vaultId", "type": "uint256" },
|
|
318
|
+
{ "internalType": "address", "name": "caller", "type": "address" }
|
|
319
|
+
],
|
|
320
|
+
"type": "error",
|
|
321
|
+
"name": "SablierBob_CallerNotShareToken"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"inputs": [
|
|
325
|
+
{ "internalType": "uint256", "name": "vaultId", "type": "uint256" },
|
|
326
|
+
{ "internalType": "address", "name": "user", "type": "address" }
|
|
327
|
+
],
|
|
328
|
+
"type": "error",
|
|
329
|
+
"name": "SablierBob_DepositAmountZero"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"inputs": [
|
|
333
|
+
{ "internalType": "uint40", "name": "expiry", "type": "uint40" },
|
|
334
|
+
{ "internalType": "uint40", "name": "currentTime", "type": "uint40" }
|
|
335
|
+
],
|
|
336
|
+
"type": "error",
|
|
337
|
+
"name": "SablierBob_ExpiryNotInFuture"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"inputs": [{ "internalType": "address", "name": "nativeToken", "type": "address" }],
|
|
341
|
+
"type": "error",
|
|
342
|
+
"name": "SablierBob_ForbidNativeToken"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"inputs": [
|
|
346
|
+
{ "internalType": "uint256", "name": "feePaid", "type": "uint256" },
|
|
347
|
+
{ "internalType": "uint256", "name": "feeRequired", "type": "uint256" }
|
|
348
|
+
],
|
|
349
|
+
"type": "error",
|
|
350
|
+
"name": "SablierBob_InsufficientFeePayment"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"inputs": [{ "internalType": "uint256", "name": "vaultId", "type": "uint256" }],
|
|
354
|
+
"type": "error",
|
|
355
|
+
"name": "SablierBob_MsgValueNotZero"
|
|
356
|
+
},
|
|
357
|
+
{ "inputs": [], "type": "error", "name": "SablierBob_NativeFeeTransferFailed" },
|
|
358
|
+
{
|
|
359
|
+
"inputs": [{ "internalType": "address", "name": "nativeToken", "type": "address" }],
|
|
360
|
+
"type": "error",
|
|
361
|
+
"name": "SablierBob_NativeTokenAlreadySet"
|
|
362
|
+
},
|
|
363
|
+
{ "inputs": [], "type": "error", "name": "SablierBob_NativeTokenZeroAddress" },
|
|
364
|
+
{
|
|
365
|
+
"inputs": [{ "internalType": "address", "name": "adapter", "type": "address" }],
|
|
366
|
+
"type": "error",
|
|
367
|
+
"name": "SablierBob_NewAdapterMissesInterface"
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"inputs": [
|
|
371
|
+
{ "internalType": "uint256", "name": "vaultId", "type": "uint256" },
|
|
372
|
+
{ "internalType": "address", "name": "user", "type": "address" }
|
|
373
|
+
],
|
|
374
|
+
"type": "error",
|
|
375
|
+
"name": "SablierBob_NoSharesToRedeem"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"inputs": [
|
|
379
|
+
{ "internalType": "uint128", "name": "targetPrice", "type": "uint128" },
|
|
380
|
+
{ "internalType": "uint128", "name": "currentPrice", "type": "uint128" }
|
|
381
|
+
],
|
|
382
|
+
"type": "error",
|
|
383
|
+
"name": "SablierBob_TargetPriceTooLow"
|
|
384
|
+
},
|
|
385
|
+
{ "inputs": [], "type": "error", "name": "SablierBob_TargetPriceZero" },
|
|
386
|
+
{ "inputs": [], "type": "error", "name": "SablierBob_TokenAddressZero" },
|
|
387
|
+
{
|
|
388
|
+
"inputs": [{ "internalType": "uint256", "name": "vaultId", "type": "uint256" }],
|
|
389
|
+
"type": "error",
|
|
390
|
+
"name": "SablierBob_UnstakeAmountZero"
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"inputs": [{ "internalType": "uint256", "name": "vaultId", "type": "uint256" }],
|
|
394
|
+
"type": "error",
|
|
395
|
+
"name": "SablierBob_VaultAlreadyUnstaked"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"inputs": [{ "internalType": "uint256", "name": "vaultId", "type": "uint256" }],
|
|
399
|
+
"type": "error",
|
|
400
|
+
"name": "SablierBob_VaultHasNoAdapter"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"inputs": [{ "internalType": "uint256", "name": "vaultId", "type": "uint256" }],
|
|
404
|
+
"type": "error",
|
|
405
|
+
"name": "SablierBob_VaultNotActive"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"inputs": [{ "internalType": "uint256", "name": "vaultId", "type": "uint256" }],
|
|
409
|
+
"type": "error",
|
|
410
|
+
"name": "SablierBob_VaultStillActive"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"inputs": [
|
|
414
|
+
{ "internalType": "UD60x18", "name": "newTradeFee", "type": "uint256" },
|
|
415
|
+
{ "internalType": "UD60x18", "name": "maxTradeFee", "type": "uint256" }
|
|
416
|
+
],
|
|
417
|
+
"type": "error",
|
|
418
|
+
"name": "SablierEscrowState_NewTradeFeeTooHigh"
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
"inputs": [{ "internalType": "uint256", "name": "orderId", "type": "uint256" }],
|
|
422
|
+
"type": "error",
|
|
423
|
+
"name": "SablierEscrowState_Null"
|
|
424
|
+
},
|
|
425
|
+
{ "inputs": [], "type": "error", "name": "SablierEscrow_BuyTokenZero" },
|
|
426
|
+
{
|
|
427
|
+
"inputs": [
|
|
428
|
+
{ "internalType": "uint256", "name": "orderId", "type": "uint256" },
|
|
429
|
+
{ "internalType": "address", "name": "caller", "type": "address" },
|
|
430
|
+
{ "internalType": "address", "name": "expectedCaller", "type": "address" }
|
|
431
|
+
],
|
|
432
|
+
"type": "error",
|
|
433
|
+
"name": "SablierEscrow_CallerNotAuthorized"
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"inputs": [
|
|
437
|
+
{ "internalType": "uint40", "name": "expiryTime", "type": "uint40" },
|
|
438
|
+
{ "internalType": "uint40", "name": "currentTime", "type": "uint40" }
|
|
439
|
+
],
|
|
440
|
+
"type": "error",
|
|
441
|
+
"name": "SablierEscrow_ExpiryTimeInPast"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"inputs": [{ "internalType": "address", "name": "nativeToken", "type": "address" }],
|
|
445
|
+
"type": "error",
|
|
446
|
+
"name": "SablierEscrow_ForbidNativeToken"
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"inputs": [
|
|
450
|
+
{ "internalType": "uint128", "name": "buyAmount", "type": "uint128" },
|
|
451
|
+
{ "internalType": "uint128", "name": "minBuyAmount", "type": "uint128" }
|
|
452
|
+
],
|
|
453
|
+
"type": "error",
|
|
454
|
+
"name": "SablierEscrow_InsufficientBuyAmount"
|
|
455
|
+
},
|
|
456
|
+
{ "inputs": [], "type": "error", "name": "SablierEscrow_MinBuyAmountZero" },
|
|
457
|
+
{
|
|
458
|
+
"inputs": [{ "internalType": "address", "name": "nativeToken", "type": "address" }],
|
|
459
|
+
"type": "error",
|
|
460
|
+
"name": "SablierEscrow_NativeTokenAlreadySet"
|
|
461
|
+
},
|
|
462
|
+
{ "inputs": [], "type": "error", "name": "SablierEscrow_NativeTokenZeroAddress" },
|
|
463
|
+
{
|
|
464
|
+
"inputs": [{ "internalType": "uint256", "name": "orderId", "type": "uint256" }],
|
|
465
|
+
"type": "error",
|
|
466
|
+
"name": "SablierEscrow_OrderCancelled"
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"inputs": [{ "internalType": "uint256", "name": "orderId", "type": "uint256" }],
|
|
470
|
+
"type": "error",
|
|
471
|
+
"name": "SablierEscrow_OrderFilled"
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
"inputs": [
|
|
475
|
+
{ "internalType": "uint256", "name": "orderId", "type": "uint256" },
|
|
476
|
+
{ "internalType": "enum Escrow.Status", "name": "status", "type": "uint8" }
|
|
477
|
+
],
|
|
478
|
+
"type": "error",
|
|
479
|
+
"name": "SablierEscrow_OrderNotOpen"
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"inputs": [{ "internalType": "contract IERC20", "name": "token", "type": "address" }],
|
|
483
|
+
"type": "error",
|
|
484
|
+
"name": "SablierEscrow_SameToken"
|
|
485
|
+
},
|
|
486
|
+
{ "inputs": [], "type": "error", "name": "SablierEscrow_SellAmountZero" },
|
|
487
|
+
{ "inputs": [], "type": "error", "name": "SablierEscrow_SellTokenZero" },
|
|
488
|
+
{
|
|
489
|
+
"inputs": [{ "internalType": "uint256", "name": "vaultId", "type": "uint256" }],
|
|
490
|
+
"type": "error",
|
|
491
|
+
"name": "SablierLidoAdapter_LidoWithdrawalAlreadyRequested"
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"inputs": [{ "internalType": "uint256", "name": "vaultId", "type": "uint256" }],
|
|
495
|
+
"type": "error",
|
|
496
|
+
"name": "SablierLidoAdapter_NoWstETHToWithdraw"
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"inputs": [
|
|
500
|
+
{ "internalType": "address", "name": "caller", "type": "address" },
|
|
501
|
+
{ "internalType": "address", "name": "expectedCaller", "type": "address" }
|
|
502
|
+
],
|
|
503
|
+
"type": "error",
|
|
504
|
+
"name": "SablierLidoAdapter_OnlySablierBob"
|
|
505
|
+
},
|
|
506
|
+
{ "inputs": [], "type": "error", "name": "SablierLidoAdapter_OraclePriceZero" },
|
|
507
|
+
{
|
|
508
|
+
"inputs": [
|
|
509
|
+
{ "internalType": "uint256", "name": "expected", "type": "uint256" },
|
|
510
|
+
{ "internalType": "uint256", "name": "actual", "type": "uint256" }
|
|
511
|
+
],
|
|
512
|
+
"type": "error",
|
|
513
|
+
"name": "SablierLidoAdapter_SlippageExceeded"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"inputs": [
|
|
517
|
+
{ "internalType": "UD60x18", "name": "tolerance", "type": "uint256" },
|
|
518
|
+
{ "internalType": "UD60x18", "name": "maxTolerance", "type": "uint256" }
|
|
519
|
+
],
|
|
520
|
+
"type": "error",
|
|
521
|
+
"name": "SablierLidoAdapter_SlippageToleranceTooHigh"
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"inputs": [
|
|
525
|
+
{ "internalType": "uint256", "name": "vaultId", "type": "uint256" },
|
|
526
|
+
{ "internalType": "address", "name": "user", "type": "address" }
|
|
527
|
+
],
|
|
528
|
+
"type": "error",
|
|
529
|
+
"name": "SablierLidoAdapter_UserBalanceZero"
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
"inputs": [{ "internalType": "uint256", "name": "vaultId", "type": "uint256" }],
|
|
533
|
+
"type": "error",
|
|
534
|
+
"name": "SablierLidoAdapter_VaultActive"
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"inputs": [{ "internalType": "uint256", "name": "vaultId", "type": "uint256" }],
|
|
538
|
+
"type": "error",
|
|
539
|
+
"name": "SablierLidoAdapter_VaultAlreadyUnstaked"
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
"inputs": [
|
|
543
|
+
{ "internalType": "uint256", "name": "vaultId", "type": "uint256" },
|
|
544
|
+
{ "internalType": "uint256", "name": "totalAmount", "type": "uint256" },
|
|
545
|
+
{ "internalType": "uint256", "name": "minimumAmountPerRequest", "type": "uint256" }
|
|
546
|
+
],
|
|
547
|
+
"type": "error",
|
|
548
|
+
"name": "SablierLidoAdapter_WithdrawalAmountBelowMinimum"
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"inputs": [
|
|
552
|
+
{ "internalType": "uint256", "name": "vaultId", "type": "uint256" },
|
|
553
|
+
{ "internalType": "address", "name": "from", "type": "address" },
|
|
554
|
+
{ "internalType": "address", "name": "to", "type": "address" }
|
|
555
|
+
],
|
|
556
|
+
"type": "error",
|
|
557
|
+
"name": "SablierLidoAdapter_WstETHTransferAmountZero"
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"inputs": [
|
|
561
|
+
{ "internalType": "UD60x18", "name": "fee", "type": "uint256" },
|
|
562
|
+
{ "internalType": "UD60x18", "name": "maxFee", "type": "uint256" }
|
|
563
|
+
],
|
|
564
|
+
"type": "error",
|
|
565
|
+
"name": "SablierLidoAdapter_YieldFeeTooHigh"
|
|
566
|
+
}
|
|
567
|
+
],
|
|
568
|
+
"devdoc": { "kind": "dev", "methods": {}, "version": 1 },
|
|
569
|
+
"userdoc": { "kind": "user", "methods": {}, "version": 1 }
|
|
570
|
+
},
|
|
571
|
+
"settings": {
|
|
572
|
+
"remappings": [
|
|
573
|
+
"@arbitrum/=node_modules/@arbitrum/",
|
|
574
|
+
"@chainlink/=node_modules/@chainlink/",
|
|
575
|
+
"@eth-optimism/=node_modules/@eth-optimism/",
|
|
576
|
+
"@offchainlabs/=node_modules/@offchainlabs/",
|
|
577
|
+
"@openzeppelin/=node_modules/@openzeppelin/",
|
|
578
|
+
"@prb/=node_modules/@prb/",
|
|
579
|
+
"@sablier/=node_modules/@sablier/",
|
|
580
|
+
"@scroll-tech/=node_modules/@scroll-tech/",
|
|
581
|
+
"@zksync/=node_modules/@zksync/",
|
|
582
|
+
"forge-std/=node_modules/forge-std/"
|
|
583
|
+
],
|
|
584
|
+
"optimizer": { "enabled": true, "runs": 1000000 },
|
|
585
|
+
"metadata": { "bytecodeHash": "ipfs" },
|
|
586
|
+
"compilationTarget": { "src/libraries/Errors.sol": "Errors" },
|
|
587
|
+
"evmVersion": "shanghai",
|
|
588
|
+
"libraries": {},
|
|
589
|
+
"viaIR": true
|
|
590
|
+
},
|
|
591
|
+
"sources": {
|
|
592
|
+
"node_modules/@openzeppelin/contracts/token/ERC20/IERC20.sol": {
|
|
593
|
+
"keccak256": "0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7",
|
|
594
|
+
"urls": [
|
|
595
|
+
"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db",
|
|
596
|
+
"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9"
|
|
597
|
+
],
|
|
598
|
+
"license": "MIT"
|
|
599
|
+
},
|
|
600
|
+
"node_modules/@prb/math/src/Common.sol": {
|
|
601
|
+
"keccak256": "0x8225a3898d2f11f585da1fb82234800e9717fa080dbe53d450fd429a3a632e99",
|
|
602
|
+
"urls": [
|
|
603
|
+
"bzz-raw://2dcbf39ca575f68f32f0d1c66391de94082424956e7585e849813966f8c0fc05",
|
|
604
|
+
"dweb:/ipfs/QmYvk8vXFDUJHrmqbtutYXfoLomLBosYLyBzuPoYBxsQ42"
|
|
605
|
+
],
|
|
606
|
+
"license": "MIT"
|
|
607
|
+
},
|
|
608
|
+
"node_modules/@prb/math/src/UD60x18.sol": {
|
|
609
|
+
"keccak256": "0xb98c6f74275914d279e8af6c502c2b1f50d5f6e1ed418d3b0153f5a193206c48",
|
|
610
|
+
"urls": [
|
|
611
|
+
"bzz-raw://a750edde2955f160806a51083a12185fb04e20efca0e3a7ebd127dc1acc049a9",
|
|
612
|
+
"dweb:/ipfs/QmeAre3mThopoQPB9mSXZq6jck59QZ7JbDFR83urd2SLvp"
|
|
613
|
+
],
|
|
614
|
+
"license": "MIT"
|
|
615
|
+
},
|
|
616
|
+
"node_modules/@prb/math/src/sd1x18/Casting.sol": {
|
|
617
|
+
"keccak256": "0x5d365f655f01598926c5d4fe5cda277f2cc7736fe38f943c11a32009077ddd5c",
|
|
618
|
+
"urls": [
|
|
619
|
+
"bzz-raw://56b378bd6039819bc12e5f17dabd9492e1410b3281f9df496cf8210539101a11",
|
|
620
|
+
"dweb:/ipfs/QmcMaE64ZWMg9cFhYxdTuG8nfzeDdNuTRHMMoFXi6tSZGu"
|
|
621
|
+
],
|
|
622
|
+
"license": "MIT"
|
|
623
|
+
},
|
|
624
|
+
"node_modules/@prb/math/src/sd1x18/Constants.sol": {
|
|
625
|
+
"keccak256": "0xc14cc32061863d83912f9616de86f3c34f1ac58614b7d504c6ce07ee8efdb8e8",
|
|
626
|
+
"urls": [
|
|
627
|
+
"bzz-raw://22483b1282dda6a556b0232f008a5a3296bbfd76b1886e6b72bf351b7c554fab",
|
|
628
|
+
"dweb:/ipfs/QmYX9cYkrFxBbhZNKsb6uUxtrc2chmAj7vuc7UKRPGMwos"
|
|
629
|
+
],
|
|
630
|
+
"license": "MIT"
|
|
631
|
+
},
|
|
632
|
+
"node_modules/@prb/math/src/sd1x18/Errors.sol": {
|
|
633
|
+
"keccak256": "0xc3c8b1ab3d19889c356c222a3a2186d45dfc1d3a17b9ad88159bb64ee457baa6",
|
|
634
|
+
"urls": [
|
|
635
|
+
"bzz-raw://84fbe57569246403f778330bd7723018dfcb5f0ec50d7b1d82cc983c94a54bca",
|
|
636
|
+
"dweb:/ipfs/QmWssAAnovc2EVjt58rTnxraE9B1RMivwTvYCYgpnr6oSE"
|
|
637
|
+
],
|
|
638
|
+
"license": "MIT"
|
|
639
|
+
},
|
|
640
|
+
"node_modules/@prb/math/src/sd1x18/ValueType.sol": {
|
|
641
|
+
"keccak256": "0xaa9dc7b562faf45264390d80e2ea10c5295bb8a4f10d76261a3f9c04363734c0",
|
|
642
|
+
"urls": [
|
|
643
|
+
"bzz-raw://c6ca36acd15f5cb47cf124ddec289f84e1011f2d29056159e4570435629a3353",
|
|
644
|
+
"dweb:/ipfs/QmUKdiLmZpAkNCq2TKxrPbQPUhiRFXGfjGSnY1VeHVu4y6"
|
|
645
|
+
],
|
|
646
|
+
"license": "MIT"
|
|
647
|
+
},
|
|
648
|
+
"node_modules/@prb/math/src/sd21x18/Casting.sol": {
|
|
649
|
+
"keccak256": "0x4a16adddb9ab1f6939dd4567c77205015a11081cb840029b84bbb6fdaf78ee36",
|
|
650
|
+
"urls": [
|
|
651
|
+
"bzz-raw://5003b2f4cd2fc1413da36bc63107c6e83a88d29693e8f97b54f300fa78f9c6d2",
|
|
652
|
+
"dweb:/ipfs/QmaNJn91NLrZmeeGqnFQV1FTrLVSW852zHyWTrWJ5pf1pd"
|
|
653
|
+
],
|
|
654
|
+
"license": "MIT"
|
|
655
|
+
},
|
|
656
|
+
"node_modules/@prb/math/src/sd21x18/Constants.sol": {
|
|
657
|
+
"keccak256": "0x501c2d5cfdea9450422182059c8df1cb6a859901a07bd59631c3fa24edcc79d4",
|
|
658
|
+
"urls": [
|
|
659
|
+
"bzz-raw://4669a65001c92919671fd879d33ce0e5030b602a7ba4d36bd2308128d8d1f396",
|
|
660
|
+
"dweb:/ipfs/QmUC3bJ3qdkCmLMw3WHBcEqvuC4tExT2LXzUhgu5KQ3vi3"
|
|
661
|
+
],
|
|
662
|
+
"license": "MIT"
|
|
663
|
+
},
|
|
664
|
+
"node_modules/@prb/math/src/sd21x18/Errors.sol": {
|
|
665
|
+
"keccak256": "0xc5422ee47eb139274e538e758fb40177a1ba22c2113ef3b3446102f0150bfe0a",
|
|
666
|
+
"urls": [
|
|
667
|
+
"bzz-raw://a1981e052e9e86e1b0e4e55a057a7af4739aedd4ead2d60e3eaa40fb703594ee",
|
|
668
|
+
"dweb:/ipfs/QmPK5qSujnyk1R8ues4RhDMy1tRKKyjQ31YJTviTKq7GML"
|
|
669
|
+
],
|
|
670
|
+
"license": "MIT"
|
|
671
|
+
},
|
|
672
|
+
"node_modules/@prb/math/src/sd21x18/ValueType.sol": {
|
|
673
|
+
"keccak256": "0x532bba888370bed393464412f4ef3462d654802e71c953ad02d078e3d2701092",
|
|
674
|
+
"urls": [
|
|
675
|
+
"bzz-raw://922a4e8dd813602f72d165aa1dfdf2c29b971a2abe73bebca7cd81a32ee2c880",
|
|
676
|
+
"dweb:/ipfs/QmTBAJnx1r3sZpbQAuTgQtsTtvjZbpDwhCJRzkhzUumbdf"
|
|
677
|
+
],
|
|
678
|
+
"license": "MIT"
|
|
679
|
+
},
|
|
680
|
+
"node_modules/@prb/math/src/sd59x18/Casting.sol": {
|
|
681
|
+
"keccak256": "0xdf70d8e70c6d6325f3f7eb028c484bc7189ef902f1d4b5b220af2e550bb5fc39",
|
|
682
|
+
"urls": [
|
|
683
|
+
"bzz-raw://0b15bcd36129c5cb163d57a117435afb171182018dd6d1e766a5f49cf1f4b63d",
|
|
684
|
+
"dweb:/ipfs/QmbjzkMBH4FM2rdxGbx9LQ65wVERijNcu7R9C8dQmH3y4n"
|
|
685
|
+
],
|
|
686
|
+
"license": "MIT"
|
|
687
|
+
},
|
|
688
|
+
"node_modules/@prb/math/src/sd59x18/Constants.sol": {
|
|
689
|
+
"keccak256": "0x9bcb8dd6b3e886d140ad1c32747a4f6d29a492529ceb835be878ae837aa6cc3a",
|
|
690
|
+
"urls": [
|
|
691
|
+
"bzz-raw://c4045c633e3618e7e90a768d92415b2f20f781fe129b4f4e26fa88f7dbf9201f",
|
|
692
|
+
"dweb:/ipfs/Qmbet95pizwPno82cJ383wJtgQRSQKESmhVZ1vDrgAu7Si"
|
|
693
|
+
],
|
|
694
|
+
"license": "MIT"
|
|
695
|
+
},
|
|
696
|
+
"node_modules/@prb/math/src/sd59x18/Errors.sol": {
|
|
697
|
+
"keccak256": "0x0a79c28c85fc8a450b0801ff2e66114eac4ec565819f5d1d8738904658fe33e2",
|
|
698
|
+
"urls": [
|
|
699
|
+
"bzz-raw://9e0d4fd3c998019fb8555d9e26c03bec42a8513bdf4185aeac2da3a000abaebf",
|
|
700
|
+
"dweb:/ipfs/QmahFJHXcX4RwPxaQbUf6LVZEk8NSpjCV3Eif7i9iqC6Mk"
|
|
701
|
+
],
|
|
702
|
+
"license": "MIT"
|
|
703
|
+
},
|
|
704
|
+
"node_modules/@prb/math/src/sd59x18/Helpers.sol": {
|
|
705
|
+
"keccak256": "0x208570f1657cf730cb6c3d81aa14030e0d45cf906cdedea5059369d7df4bb716",
|
|
706
|
+
"urls": [
|
|
707
|
+
"bzz-raw://4c78ca900edafa9338d4e3649a55ab0c84f76468d8a22fb945ba6d01e70f8fed",
|
|
708
|
+
"dweb:/ipfs/QmeP4hQYfNxcATd1FsasdD4ebyu2vrC9K1N68swxUJzzZD"
|
|
709
|
+
],
|
|
710
|
+
"license": "MIT"
|
|
711
|
+
},
|
|
712
|
+
"node_modules/@prb/math/src/sd59x18/Math.sol": {
|
|
713
|
+
"keccak256": "0xd8e8b51db9b3e2fa31a60f6b8ce4ea0112c3364442ede5992aa0aa7a2c925c84",
|
|
714
|
+
"urls": [
|
|
715
|
+
"bzz-raw://3c56913970e34ee7b142047b21f1856a511cbdc3473b7c50418a8490e19cd462",
|
|
716
|
+
"dweb:/ipfs/QmfG1F9CBDjPYD7NXora9awFfdpvBMY9SCg5pMLCFRv9tD"
|
|
717
|
+
],
|
|
718
|
+
"license": "MIT"
|
|
719
|
+
},
|
|
720
|
+
"node_modules/@prb/math/src/sd59x18/ValueType.sol": {
|
|
721
|
+
"keccak256": "0x76597ba64d37d66e0178512bc9bbc1a031a7634c45e5d5c6e9da87f46952dc9d",
|
|
722
|
+
"urls": [
|
|
723
|
+
"bzz-raw://36148899ad874814e9292636fb974d2eec61f1bcc0875ec39cf444d70ba40919",
|
|
724
|
+
"dweb:/ipfs/QmadUe4kH2FPcdxvhCKy8yiezCvPWor4VcPzqLYSAaGDDb"
|
|
725
|
+
],
|
|
726
|
+
"license": "MIT"
|
|
727
|
+
},
|
|
728
|
+
"node_modules/@prb/math/src/ud21x18/Casting.sol": {
|
|
729
|
+
"keccak256": "0x3821aa57604f6e5b7c9c5c5cc97a6d71116e673cf3fee5f76fcd42b4cefded65",
|
|
730
|
+
"urls": [
|
|
731
|
+
"bzz-raw://a80399c6b38ab45cc10d0a6683d50340cd89d9a085b6d0dcfb81e7c4e5b3ce09",
|
|
732
|
+
"dweb:/ipfs/QmWNW2YD2LMkqrpAtJYeeuHN329Rx7mvfmrjsCo1p6akTL"
|
|
733
|
+
],
|
|
734
|
+
"license": "MIT"
|
|
735
|
+
},
|
|
736
|
+
"node_modules/@prb/math/src/ud21x18/Constants.sol": {
|
|
737
|
+
"keccak256": "0x0997574a1ced6c43bde6d9c9175edc5ad64cbb920a0969a9db68eea543747601",
|
|
738
|
+
"urls": [
|
|
739
|
+
"bzz-raw://c09f03345a6779b002b38ffc3954258accbb2b1d0d5506d42c3bd7f117304f60",
|
|
740
|
+
"dweb:/ipfs/QmTeBXRCE7H2HpqKUNsZN7Nk3rdBnFmbAUFom3E1PJeGuV"
|
|
741
|
+
],
|
|
742
|
+
"license": "MIT"
|
|
743
|
+
},
|
|
744
|
+
"node_modules/@prb/math/src/ud21x18/Errors.sol": {
|
|
745
|
+
"keccak256": "0x35a1fb789b90f8c90865884d3023deb17fcca5c7146b5ddef823496d835a5415",
|
|
746
|
+
"urls": [
|
|
747
|
+
"bzz-raw://0af359d07ba25bdc90de7c05ed6216833932caa75d4a02fcfc51ceeaba5a4e80",
|
|
748
|
+
"dweb:/ipfs/QmavBFw73Xfp1qJiN6P1gk2Dfr8ByWo3dyCPVgDHtko2gq"
|
|
749
|
+
],
|
|
750
|
+
"license": "MIT"
|
|
751
|
+
},
|
|
752
|
+
"node_modules/@prb/math/src/ud21x18/ValueType.sol": {
|
|
753
|
+
"keccak256": "0x24838b2b1da371b9259d8ee21534a9f0cb5796aba75a4efca2374627952bee25",
|
|
754
|
+
"urls": [
|
|
755
|
+
"bzz-raw://897e6b79308651671c7f3c91a0069e778b47356c9ba3f86e238398ab7f2623af",
|
|
756
|
+
"dweb:/ipfs/QmZbLw3tJVRZFQnV9jWQUmF43gna841adSG2TAiwDAifGU"
|
|
757
|
+
],
|
|
758
|
+
"license": "MIT"
|
|
759
|
+
},
|
|
760
|
+
"node_modules/@prb/math/src/ud2x18/Casting.sol": {
|
|
761
|
+
"keccak256": "0x0f3141ed054e7c29dbe1acb4b88b18eb05d60e998fba6b4e503a6799faa356d6",
|
|
762
|
+
"urls": [
|
|
763
|
+
"bzz-raw://b1e2468fc4c458082aaf4aa2e35af9ba3702f207e3c8533dd1e7da11ad605eae",
|
|
764
|
+
"dweb:/ipfs/QmSm7iRH1eo4cJCwcAiiXWRH9Hn1urSS4tMdbaFbFGuTyL"
|
|
765
|
+
],
|
|
766
|
+
"license": "MIT"
|
|
767
|
+
},
|
|
768
|
+
"node_modules/@prb/math/src/ud2x18/Constants.sol": {
|
|
769
|
+
"keccak256": "0x29b0e050c865899e1fb9022b460a7829cdee248c44c4299f068ba80695eec3fc",
|
|
770
|
+
"urls": [
|
|
771
|
+
"bzz-raw://cbaef16b662fac235349bcf97bc980dd0cba15d4e6230caae61224cdac8ea6d9",
|
|
772
|
+
"dweb:/ipfs/QmZQa5XBhi7k3yhtCd8wVpnwW8htfU4sjXxWhxRypMBYkC"
|
|
773
|
+
],
|
|
774
|
+
"license": "MIT"
|
|
775
|
+
},
|
|
776
|
+
"node_modules/@prb/math/src/ud2x18/Errors.sol": {
|
|
777
|
+
"keccak256": "0x3b27e2a57438cd30d9c130f84aace24d547e5ed58e8689691d7d92ad2db38ddd",
|
|
778
|
+
"urls": [
|
|
779
|
+
"bzz-raw://841cf9fb45443899c6b659300bbf503c3fd2c1a1e83b7f0e28620eed457f7437",
|
|
780
|
+
"dweb:/ipfs/QmUqg8WscP5yQPw3UMUCWaB9RLU6nryGzseuyhAjNnDc1i"
|
|
781
|
+
],
|
|
782
|
+
"license": "MIT"
|
|
783
|
+
},
|
|
784
|
+
"node_modules/@prb/math/src/ud2x18/ValueType.sol": {
|
|
785
|
+
"keccak256": "0x975a2e69b48f34a4c0bd80e8a5609ac67b7264c91992c0944f9ebe7b9e3fc9d0",
|
|
786
|
+
"urls": [
|
|
787
|
+
"bzz-raw://65d012521c475295d7e70b7d526fcc0911d0f238ea938719d77251bba00c9b41",
|
|
788
|
+
"dweb:/ipfs/QmexEvTQCCBPYRWAYnomZX5M7C2EkXQRAXqEYMNUZfazCs"
|
|
789
|
+
],
|
|
790
|
+
"license": "MIT"
|
|
791
|
+
},
|
|
792
|
+
"node_modules/@prb/math/src/ud60x18/Casting.sol": {
|
|
793
|
+
"keccak256": "0x0803318ddc98b4ba8fbfe70e5ee08d78387fe6ae00982b9960518085a751d7b6",
|
|
794
|
+
"urls": [
|
|
795
|
+
"bzz-raw://2e68a2f780b2e33fa5416eb60f9daa81f014c2591119f4b67bed1217d5530780",
|
|
796
|
+
"dweb:/ipfs/QmZe7JTWvbfKqMnu4sxUwWCtLcCay9hH71VZUpoFCdENcr"
|
|
797
|
+
],
|
|
798
|
+
"license": "MIT"
|
|
799
|
+
},
|
|
800
|
+
"node_modules/@prb/math/src/ud60x18/Constants.sol": {
|
|
801
|
+
"keccak256": "0x2b80d26153d3fdcfb3a9ca772d9309d31ed1275f5b8b54c3ffb54d3652b37d90",
|
|
802
|
+
"urls": [
|
|
803
|
+
"bzz-raw://7e3a6673a156f635db94dc176baaa7274db8f9bec4461cd1152596253550ee3b",
|
|
804
|
+
"dweb:/ipfs/Qmc9zT4kNSbMYaXcnbxNVqmb3P3m46ieaQxkwxqLwsvRA5"
|
|
805
|
+
],
|
|
806
|
+
"license": "MIT"
|
|
807
|
+
},
|
|
808
|
+
"node_modules/@prb/math/src/ud60x18/Conversions.sol": {
|
|
809
|
+
"keccak256": "0xd486ecca97abe69acdb28230088f4c7097fbdae5b36c5ae45d5be2faac4c33f2",
|
|
810
|
+
"urls": [
|
|
811
|
+
"bzz-raw://6080870ec6955ff0f5278f9c480b218a68714daf5f2ee42da0276d08d7b82932",
|
|
812
|
+
"dweb:/ipfs/QmQ1SERHdemJgPrt4USwY8j5r63jZ8fQuJAm1knjMEEQEY"
|
|
813
|
+
],
|
|
814
|
+
"license": "MIT"
|
|
815
|
+
},
|
|
816
|
+
"node_modules/@prb/math/src/ud60x18/Errors.sol": {
|
|
817
|
+
"keccak256": "0xbab6b0e303d32f3a9d9e2fe881f0392b8c59a73051a4d34f21a403b3961b3044",
|
|
818
|
+
"urls": [
|
|
819
|
+
"bzz-raw://86a019bcf2510d0691287329dc057479cc0abc48a5e15f245e7f15c03052d2c8",
|
|
820
|
+
"dweb:/ipfs/QmeXe5pbpDHvN5DZ8puXmH2RJ25zDHj55wpiStWtNQPvq6"
|
|
821
|
+
],
|
|
822
|
+
"license": "MIT"
|
|
823
|
+
},
|
|
824
|
+
"node_modules/@prb/math/src/ud60x18/Helpers.sol": {
|
|
825
|
+
"keccak256": "0xf5faff881391d2c060029499a666cc5f0bea90a213150bb476fae8f02a5df268",
|
|
826
|
+
"urls": [
|
|
827
|
+
"bzz-raw://76105fa22bb1b5f1fa99abf9c4fbc9577a02c7bc204f271754c407f0d75489f5",
|
|
828
|
+
"dweb:/ipfs/QmVNGZSTniDuZus5DdbFubqJXCLtTaZit7YPm4ntjr5Lgr"
|
|
829
|
+
],
|
|
830
|
+
"license": "MIT"
|
|
831
|
+
},
|
|
832
|
+
"node_modules/@prb/math/src/ud60x18/Math.sol": {
|
|
833
|
+
"keccak256": "0xc4e51dfd9af62938e277e90fa724099f239d33727a35909ed48c292a76faf2fc",
|
|
834
|
+
"urls": [
|
|
835
|
+
"bzz-raw://d731537cbc50b852c21d28625aeb2c329729afc23a7b86ff9d8ee5878f47e9d6",
|
|
836
|
+
"dweb:/ipfs/QmS7Cj4pAdPZcTp7RqYXyxBc9EYX92CT8icfkNigktUsLr"
|
|
837
|
+
],
|
|
838
|
+
"license": "MIT"
|
|
839
|
+
},
|
|
840
|
+
"node_modules/@prb/math/src/ud60x18/ValueType.sol": {
|
|
841
|
+
"keccak256": "0x1b200baf25d01a8b91b97b42114248636f742b5b7028487ef4daef6621e378a3",
|
|
842
|
+
"urls": [
|
|
843
|
+
"bzz-raw://b5708ed017206bda2197654e80bea9f37b3a9993434bb066c903c2865e028f47",
|
|
844
|
+
"dweb:/ipfs/QmTyotZk2J5YvWkNvB2qhXBMgRGWW2UgPqR4JPocrXSr8n"
|
|
845
|
+
],
|
|
846
|
+
"license": "MIT"
|
|
847
|
+
},
|
|
848
|
+
"src/libraries/Errors.sol": {
|
|
849
|
+
"keccak256": "0x6c053ba4f029f4835883cf2fecd2b8adb1371b8e9820f5a3fdf679fd864ac682",
|
|
850
|
+
"urls": [
|
|
851
|
+
"bzz-raw://e1d64e7f44f0e8dcb3c6842a1baa119c3dd4b1b14f29c07c4c93b4185f0a566e",
|
|
852
|
+
"dweb:/ipfs/QmUjf9S6JduDhmpD8VriK8bMRYXD8m7XMRohhnE91mjDc9"
|
|
853
|
+
],
|
|
854
|
+
"license": "GPL-3.0-or-later"
|
|
855
|
+
},
|
|
856
|
+
"src/types/Escrow.sol": {
|
|
857
|
+
"keccak256": "0xc4c65957eab4cfd50d7806778ca69366aebe22e98736315c62fa36bda5cddba6",
|
|
858
|
+
"urls": [
|
|
859
|
+
"bzz-raw://ef915ead3c018cd9c629fd3738eba614dfa0499492d25162129e9374607756c1",
|
|
860
|
+
"dweb:/ipfs/QmenoUAVQFvKU4XVNm9Pm7RxvrTgBBJFXF6uNjqHMV1wAU"
|
|
861
|
+
],
|
|
862
|
+
"license": "GPL-3.0-or-later"
|
|
863
|
+
}
|
|
864
|
+
},
|
|
865
|
+
"version": 1
|
|
866
|
+
},
|
|
867
|
+
"id": 98
|
|
868
|
+
}
|