@gearbox-protocol/sdk 0.0.78 → 0.0.81

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/lib/contracts/contracts.d.ts +1 -0
  2. package/lib/contracts/contracts.js +4 -4
  3. package/lib/types/contracts/adapters/lido/LidoV1.sol/LidoV1Adapter.d.ts +97 -1
  4. package/lib/types/contracts/adapters/lido/LidoV1_WETHGateway.sol/LidoV1Gateway.d.ts +97 -1
  5. package/lib/types/contracts/integrations/lido/IstETH.sol/IstETH.d.ts +226 -0
  6. package/lib/types/contracts/integrations/lido/IstETH.sol/IstETH.js +2 -0
  7. package/lib/types/contracts/integrations/lido/IstETH.sol/IstETHGetters.d.ts +210 -0
  8. package/lib/types/contracts/integrations/lido/IstETH.sol/IstETHGetters.js +2 -0
  9. package/lib/types/contracts/integrations/lido/IstETH.sol/index.d.ts +2 -0
  10. package/lib/types/contracts/integrations/lido/IstETH.sol/index.js +2 -0
  11. package/lib/types/contracts/integrations/lido/index.d.ts +2 -1
  12. package/lib/types/contracts/interfaces/adapters/lido/ILidoV1Adapter.sol/ILidoV1Adapter.d.ts +97 -1
  13. package/lib/types/factories/contracts/adapters/lido/LidoV1.sol/LidoV1Adapter__factory.d.ts +1 -1
  14. package/lib/types/factories/contracts/adapters/lido/LidoV1.sol/LidoV1Adapter__factory.js +192 -1
  15. package/lib/types/factories/contracts/adapters/lido/LidoV1_WETHGateway.sol/LidoV1Gateway__factory.d.ts +1 -1
  16. package/lib/types/factories/contracts/adapters/lido/LidoV1_WETHGateway.sol/LidoV1Gateway__factory.js +192 -1
  17. package/lib/types/factories/contracts/integrations/lido/IstETH.sol/IstETHGetters__factory.d.ts +35 -0
  18. package/lib/types/factories/contracts/integrations/lido/IstETH.sol/IstETHGetters__factory.js +340 -0
  19. package/lib/types/factories/contracts/integrations/lido/IstETH.sol/IstETH__factory.d.ts +35 -0
  20. package/lib/types/factories/contracts/integrations/lido/IstETH.sol/IstETH__factory.js +359 -0
  21. package/lib/types/factories/contracts/integrations/lido/IstETH.sol/index.d.ts +2 -0
  22. package/lib/types/factories/contracts/integrations/lido/IstETH.sol/index.js +10 -0
  23. package/lib/types/factories/contracts/integrations/lido/index.d.ts +1 -1
  24. package/lib/types/factories/contracts/integrations/lido/index.js +25 -3
  25. package/lib/types/factories/contracts/interfaces/adapters/lido/ILidoV1Adapter.sol/ILidoV1Adapter__factory.d.ts +3 -10
  26. package/lib/types/factories/contracts/interfaces/adapters/lido/ILidoV1Adapter.sol/ILidoV1Adapter__factory.js +191 -0
  27. package/lib/types/factories/contracts/support/PauseMulticall__factory.d.ts +1 -1
  28. package/lib/types/factories/contracts/support/PauseMulticall__factory.js +1 -1
  29. package/lib/types/factories/contracts/test/adapters/LidoV1Adapter.t.sol/LidoV1AdapterTest__factory.d.ts +1 -1
  30. package/lib/types/factories/contracts/test/adapters/LidoV1Adapter.t.sol/LidoV1AdapterTest__factory.js +1 -1
  31. package/lib/types/factories/contracts/test/support/PauseMulticall.t.sol/PauseMulticallTest__factory.d.ts +1 -1
  32. package/lib/types/factories/contracts/test/support/PauseMulticall.t.sol/PauseMulticallTest__factory.js +1 -1
  33. package/lib/types/hardhat.d.ts +9 -0
  34. package/lib/types/index.d.ts +4 -2
  35. package/lib/types/index.js +7 -5
  36. package/package.json +1 -1
  37. package/src/contracts/contracts.ts +5 -5
  38. package/src/types/contracts/adapters/lido/LidoV1.sol/LidoV1Adapter.ts +262 -0
  39. package/src/types/contracts/adapters/lido/LidoV1_WETHGateway.sol/LidoV1Gateway.ts +266 -1
  40. package/src/types/contracts/integrations/lido/{IstETH.ts → IstETH.sol/IstETH.ts} +186 -1
  41. package/src/types/contracts/integrations/lido/IstETH.sol/IstETHGetters.ts +507 -0
  42. package/src/types/contracts/integrations/lido/IstETH.sol/index.ts +5 -0
  43. package/src/types/contracts/integrations/lido/index.ts +2 -1
  44. package/src/types/contracts/interfaces/adapters/lido/ILidoV1Adapter.sol/ILidoV1Adapter.ts +262 -0
  45. package/src/types/factories/contracts/adapters/lido/LidoV1.sol/LidoV1Adapter__factory.ts +192 -1
  46. package/src/types/factories/contracts/adapters/lido/LidoV1_WETHGateway.sol/LidoV1Gateway__factory.ts +192 -1
  47. package/src/types/factories/contracts/integrations/lido/IstETH.sol/IstETHGetters__factory.ts +344 -0
  48. package/src/types/factories/contracts/integrations/lido/{IstETH__factory.ts → IstETH.sol/IstETH__factory.ts} +136 -1
  49. package/src/types/factories/contracts/integrations/lido/IstETH.sol/index.ts +5 -0
  50. package/src/types/factories/contracts/integrations/lido/index.ts +1 -1
  51. package/src/types/factories/contracts/interfaces/adapters/lido/ILidoV1Adapter.sol/ILidoV1Adapter__factory.ts +191 -0
  52. package/src/types/factories/contracts/support/PauseMulticall__factory.ts +1 -1
  53. package/src/types/factories/contracts/test/adapters/LidoV1Adapter.t.sol/LidoV1AdapterTest__factory.ts +1 -1
  54. package/src/types/factories/contracts/test/support/PauseMulticall.t.sol/PauseMulticallTest__factory.ts +1 -1
  55. package/src/types/hardhat.d.ts +9 -0
  56. package/src/types/index.ts +4 -2
@@ -7,7 +7,7 @@ import type { Provider } from "@ethersproject/providers";
7
7
  import type {
8
8
  IstETH,
9
9
  IstETHInterface,
10
- } from "../../../../contracts/integrations/lido/IstETH";
10
+ } from "../../../../../contracts/integrations/lido/IstETH.sol/IstETH";
11
11
 
12
12
  const _abi = [
13
13
  {
@@ -127,6 +127,128 @@ const _abi = [
127
127
  stateMutability: "view",
128
128
  type: "function",
129
129
  },
130
+ {
131
+ inputs: [],
132
+ name: "decimals",
133
+ outputs: [
134
+ {
135
+ internalType: "uint8",
136
+ name: "",
137
+ type: "uint8",
138
+ },
139
+ ],
140
+ stateMutability: "view",
141
+ type: "function",
142
+ },
143
+ {
144
+ inputs: [],
145
+ name: "getFee",
146
+ outputs: [
147
+ {
148
+ internalType: "uint16",
149
+ name: "",
150
+ type: "uint16",
151
+ },
152
+ ],
153
+ stateMutability: "view",
154
+ type: "function",
155
+ },
156
+ {
157
+ inputs: [
158
+ {
159
+ internalType: "uint256",
160
+ name: "_sharesAmount",
161
+ type: "uint256",
162
+ },
163
+ ],
164
+ name: "getPooledEthByShares",
165
+ outputs: [
166
+ {
167
+ internalType: "uint256",
168
+ name: "",
169
+ type: "uint256",
170
+ },
171
+ ],
172
+ stateMutability: "view",
173
+ type: "function",
174
+ },
175
+ {
176
+ inputs: [
177
+ {
178
+ internalType: "uint256",
179
+ name: "_ethAmount",
180
+ type: "uint256",
181
+ },
182
+ ],
183
+ name: "getSharesByPooledEth",
184
+ outputs: [
185
+ {
186
+ internalType: "uint256",
187
+ name: "",
188
+ type: "uint256",
189
+ },
190
+ ],
191
+ stateMutability: "view",
192
+ type: "function",
193
+ },
194
+ {
195
+ inputs: [],
196
+ name: "getTotalPooledEther",
197
+ outputs: [
198
+ {
199
+ internalType: "uint256",
200
+ name: "",
201
+ type: "uint256",
202
+ },
203
+ ],
204
+ stateMutability: "view",
205
+ type: "function",
206
+ },
207
+ {
208
+ inputs: [],
209
+ name: "getTotalShares",
210
+ outputs: [
211
+ {
212
+ internalType: "uint256",
213
+ name: "",
214
+ type: "uint256",
215
+ },
216
+ ],
217
+ stateMutability: "view",
218
+ type: "function",
219
+ },
220
+ {
221
+ inputs: [],
222
+ name: "name",
223
+ outputs: [
224
+ {
225
+ internalType: "string",
226
+ name: "",
227
+ type: "string",
228
+ },
229
+ ],
230
+ stateMutability: "view",
231
+ type: "function",
232
+ },
233
+ {
234
+ inputs: [
235
+ {
236
+ internalType: "address",
237
+ name: "_account",
238
+ type: "address",
239
+ },
240
+ ],
241
+ name: "sharesOf",
242
+ outputs: [
243
+ {
244
+ internalType: "uint256",
245
+ name: "",
246
+ type: "uint256",
247
+ },
248
+ ],
249
+ stateMutability: "view",
250
+ type: "function",
251
+ },
130
252
  {
131
253
  inputs: [
132
254
  {
@@ -146,6 +268,19 @@ const _abi = [
146
268
  stateMutability: "payable",
147
269
  type: "function",
148
270
  },
271
+ {
272
+ inputs: [],
273
+ name: "symbol",
274
+ outputs: [
275
+ {
276
+ internalType: "string",
277
+ name: "",
278
+ type: "string",
279
+ },
280
+ ],
281
+ stateMutability: "view",
282
+ type: "function",
283
+ },
149
284
  {
150
285
  inputs: [],
151
286
  name: "totalSupply",
@@ -0,0 +1,5 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export { IstETH__factory } from "./IstETH__factory";
5
+ export { IstETHGetters__factory } from "./IstETHGetters__factory";
@@ -1,4 +1,4 @@
1
1
  /* Autogenerated file. Do not edit manually. */
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
- export { IstETH__factory } from "./IstETH__factory";
4
+ export * as istEthSol from "./IstETH.sol";
@@ -65,6 +65,49 @@ const _abi = [
65
65
  stateMutability: "pure",
66
66
  type: "function",
67
67
  },
68
+ {
69
+ inputs: [
70
+ {
71
+ internalType: "address",
72
+ name: "_owner",
73
+ type: "address",
74
+ },
75
+ {
76
+ internalType: "address",
77
+ name: "_spender",
78
+ type: "address",
79
+ },
80
+ ],
81
+ name: "allowance",
82
+ outputs: [
83
+ {
84
+ internalType: "uint256",
85
+ name: "",
86
+ type: "uint256",
87
+ },
88
+ ],
89
+ stateMutability: "view",
90
+ type: "function",
91
+ },
92
+ {
93
+ inputs: [
94
+ {
95
+ internalType: "address",
96
+ name: "_account",
97
+ type: "address",
98
+ },
99
+ ],
100
+ name: "balanceOf",
101
+ outputs: [
102
+ {
103
+ internalType: "uint256",
104
+ name: "",
105
+ type: "uint256",
106
+ },
107
+ ],
108
+ stateMutability: "view",
109
+ type: "function",
110
+ },
68
111
  {
69
112
  inputs: [],
70
113
  name: "creditFacade",
@@ -91,6 +134,109 @@ const _abi = [
91
134
  stateMutability: "view",
92
135
  type: "function",
93
136
  },
137
+ {
138
+ inputs: [],
139
+ name: "decimals",
140
+ outputs: [
141
+ {
142
+ internalType: "uint8",
143
+ name: "",
144
+ type: "uint8",
145
+ },
146
+ ],
147
+ stateMutability: "view",
148
+ type: "function",
149
+ },
150
+ {
151
+ inputs: [],
152
+ name: "getFee",
153
+ outputs: [
154
+ {
155
+ internalType: "uint16",
156
+ name: "",
157
+ type: "uint16",
158
+ },
159
+ ],
160
+ stateMutability: "view",
161
+ type: "function",
162
+ },
163
+ {
164
+ inputs: [
165
+ {
166
+ internalType: "uint256",
167
+ name: "_sharesAmount",
168
+ type: "uint256",
169
+ },
170
+ ],
171
+ name: "getPooledEthByShares",
172
+ outputs: [
173
+ {
174
+ internalType: "uint256",
175
+ name: "",
176
+ type: "uint256",
177
+ },
178
+ ],
179
+ stateMutability: "view",
180
+ type: "function",
181
+ },
182
+ {
183
+ inputs: [
184
+ {
185
+ internalType: "uint256",
186
+ name: "_ethAmount",
187
+ type: "uint256",
188
+ },
189
+ ],
190
+ name: "getSharesByPooledEth",
191
+ outputs: [
192
+ {
193
+ internalType: "uint256",
194
+ name: "",
195
+ type: "uint256",
196
+ },
197
+ ],
198
+ stateMutability: "view",
199
+ type: "function",
200
+ },
201
+ {
202
+ inputs: [],
203
+ name: "getTotalPooledEther",
204
+ outputs: [
205
+ {
206
+ internalType: "uint256",
207
+ name: "",
208
+ type: "uint256",
209
+ },
210
+ ],
211
+ stateMutability: "view",
212
+ type: "function",
213
+ },
214
+ {
215
+ inputs: [],
216
+ name: "getTotalShares",
217
+ outputs: [
218
+ {
219
+ internalType: "uint256",
220
+ name: "",
221
+ type: "uint256",
222
+ },
223
+ ],
224
+ stateMutability: "view",
225
+ type: "function",
226
+ },
227
+ {
228
+ inputs: [],
229
+ name: "name",
230
+ outputs: [
231
+ {
232
+ internalType: "string",
233
+ name: "",
234
+ type: "string",
235
+ },
236
+ ],
237
+ stateMutability: "view",
238
+ type: "function",
239
+ },
94
240
  {
95
241
  inputs: [
96
242
  {
@@ -104,6 +250,38 @@ const _abi = [
104
250
  stateMutability: "nonpayable",
105
251
  type: "function",
106
252
  },
253
+ {
254
+ inputs: [
255
+ {
256
+ internalType: "address",
257
+ name: "_account",
258
+ type: "address",
259
+ },
260
+ ],
261
+ name: "sharesOf",
262
+ outputs: [
263
+ {
264
+ internalType: "uint256",
265
+ name: "",
266
+ type: "uint256",
267
+ },
268
+ ],
269
+ stateMutability: "view",
270
+ type: "function",
271
+ },
272
+ {
273
+ inputs: [],
274
+ name: "symbol",
275
+ outputs: [
276
+ {
277
+ internalType: "string",
278
+ name: "",
279
+ type: "string",
280
+ },
281
+ ],
282
+ stateMutability: "view",
283
+ type: "function",
284
+ },
107
285
  {
108
286
  inputs: [],
109
287
  name: "targetContract",
@@ -117,6 +295,19 @@ const _abi = [
117
295
  stateMutability: "view",
118
296
  type: "function",
119
297
  },
298
+ {
299
+ inputs: [],
300
+ name: "totalSupply",
301
+ outputs: [
302
+ {
303
+ internalType: "uint256",
304
+ name: "",
305
+ type: "uint256",
306
+ },
307
+ ],
308
+ stateMutability: "view",
309
+ type: "function",
310
+ },
120
311
  ];
121
312
 
122
313
  export class ILidoV1Adapter__factory {
@@ -151,7 +151,7 @@ const _abi = [
151
151
  ];
152
152
 
153
153
  const _bytecode =
154
- "0x60e060405234801561001057600080fd5b50604051610e11380380610e1183398101604081905261002f916101d3565b6000805460ff19169055806001600160a01b03811661006157604051635919af9760e11b815260040160405180910390fd5b806001600160a01b031663087376956040518163ffffffff1660e01b8152600401602060405180830381865afa15801561009f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c391906101d3565b6001600160a01b03166080816001600160a01b031681525050506000819050806001600160a01b031663087376956040518163ffffffff1660e01b8152600401602060405180830381865afa158015610120573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061014491906101d3565b6001600160a01b031660a0816001600160a01b031681525050806001600160a01b031663c513c9bb6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561019b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101bf91906101d3565b6001600160a01b031660c052506102039050565b6000602082840312156101e557600080fd5b81516001600160a01b03811681146101fc57600080fd5b9392505050565b60805160a05160c051610ba86102696000396000818160da0152818161035e015281816104fb015261064d015260008181610165015281816102a301528181610440015261059201526000818161013e015281816101b501526106e40152610ba86000f3fe608060405234801561001057600080fd5b50600436106100a35760003560e01c80636f074436116100765780638456cb591161005b5780638456cb5914610131578063a50cf2c814610139578063de2873591461016057600080fd5b80636f074436146101215780637c205cc41461012957600080fd5b80633f4ba83a146100a8578063488bf5b4146100b25780635c975abb146100ba57806362eb33e3146100d5575b600080fd5b6100b0610187565b005b6100b0610275565b60005460ff1660405190151581526020015b60405180910390f35b6100fc7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100cc565b6100b0610412565b6100b0610564565b6100b06106b6565b6100fc7f000000000000000000000000000000000000000000000000000000000000000081565b6100fc7f000000000000000000000000000000000000000000000000000000000000000081565b6040517fd4eb5db00000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063d4eb5db090602401602060405180830381865afa158015610211573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061023591906109df565b61026b576040517f10332dee00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6102736107a2565b565b6040517f3a41ec640000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690633a41ec6490602401602060405180830381865afa1580156102ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061032391906109df565b610359576040517fd794b1e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6102737f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663673a2a1f6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156103c7573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820160405261040d9190810190610a60565b610888565b6040517f3a41ec640000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690633a41ec6490602401602060405180830381865afa15801561049c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104c091906109df565b6104f6576040517fd794b1e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6102737f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663941448566040518163ffffffff1660e01b8152600401600060405180830381865afa1580156103c7573d6000803e3d6000fd5b6040517f3a41ec640000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690633a41ec6490602401602060405180830381865afa1580156105ee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061291906109df565b610648576040517fd794b1e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6104f67f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663673a2a1f6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156103c7573d6000803e3d6000fd5b6040517f3a41ec640000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690633a41ec6490602401602060405180830381865afa158015610740573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061076491906109df565b61079a576040517fd794b1e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61027361091f565b60005460ff16610813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064015b60405180910390fd5b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b805160005b8181101561091a578281815181106108a7576108a7610b43565b602002602001015173ffffffffffffffffffffffffffffffffffffffff16638456cb596040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156108f657600080fd5b505af115801561090a573d6000803e3d6000fd5b50506001909201915061088d9050565b505050565b60005460ff161561098c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015260640161080a565b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861085e3390565b6000602082840312156109f157600080fd5b81518015158114610a0157600080fd5b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b805173ffffffffffffffffffffffffffffffffffffffff81168114610a5b57600080fd5b919050565b60006020808385031215610a7357600080fd5b825167ffffffffffffffff80821115610a8b57600080fd5b818501915085601f830112610a9f57600080fd5b815181811115610ab157610ab1610a08565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f83011681018181108582111715610af457610af4610a08565b604052918252848201925083810185019188831115610b1257600080fd5b938501935b82851015610b3757610b2885610a37565b84529385019392850192610b17565b98975050505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212206044713e0469fee2f1ccd9e45cbf0ae03a2b5aae58a7aa28333105a0e8e3a8c364736f6c634300080a0033";
154
+ "0x60e060405234801561001057600080fd5b50604051610e07380380610e0783398101604081905261002f916101d3565b6000805460ff19169055806001600160a01b03811661006157604051635919af9760e11b815260040160405180910390fd5b806001600160a01b031663087376956040518163ffffffff1660e01b8152600401602060405180830381865afa15801561009f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c391906101d3565b6001600160a01b03166080816001600160a01b031681525050506000819050806001600160a01b031663087376956040518163ffffffff1660e01b8152600401602060405180830381865afa158015610120573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061014491906101d3565b6001600160a01b031660a0816001600160a01b031681525050806001600160a01b031663c513c9bb6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561019b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101bf91906101d3565b6001600160a01b031660c052506102039050565b6000602082840312156101e557600080fd5b81516001600160a01b03811681146101fc57600080fd5b9392505050565b60805160a05160c051610b9e6102696000396000818160da0152818161035e015281816104fb015261064d015260008181610165015281816102a301528181610440015261059201526000818161013e015281816101b501526106e40152610b9e6000f3fe608060405234801561001057600080fd5b50600436106100a35760003560e01c80636f074436116100765780638456cb591161005b5780638456cb5914610131578063a50cf2c814610139578063de2873591461016057600080fd5b80636f074436146101215780637c205cc41461012957600080fd5b80633f4ba83a146100a8578063488bf5b4146100b25780635c975abb146100ba57806362eb33e3146100d5575b600080fd5b6100b0610187565b005b6100b0610275565b60005460ff1660405190151581526020015b60405180910390f35b6100fc7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100cc565b6100b0610412565b6100b0610564565b6100b06106b6565b6100fc7f000000000000000000000000000000000000000000000000000000000000000081565b6100fc7f000000000000000000000000000000000000000000000000000000000000000081565b6040517fd4eb5db00000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063d4eb5db090602401602060405180830381865afa158015610211573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061023591906109d5565b61026b576040517f10332dee00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6102736107a2565b565b6040517f3a41ec640000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690633a41ec6490602401602060405180830381865afa1580156102ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061032391906109d5565b610359576040517fd794b1e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6102737f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663673a2a1f6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156103c7573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820160405261040d9190810190610a56565b610888565b6040517f3a41ec640000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690633a41ec6490602401602060405180830381865afa15801561049c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104c091906109d5565b6104f6576040517fd794b1e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6102737f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663941448566040518163ffffffff1660e01b8152600401600060405180830381865afa1580156103c7573d6000803e3d6000fd5b6040517f3a41ec640000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690633a41ec6490602401602060405180830381865afa1580156105ee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061291906109d5565b610648576040517fd794b1e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6104f67f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663673a2a1f6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156103c7573d6000803e3d6000fd5b6040517f3a41ec640000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690633a41ec6490602401602060405180830381865afa158015610740573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061076491906109d5565b61079a576040517fd794b1e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610273610915565b60005460ff16610813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064015b60405180910390fd5b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b805160005b81811015610910578281815181106108a7576108a7610b39565b602002602001015173ffffffffffffffffffffffffffffffffffffffff16638456cb596040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156108f657600080fd5b505af1925050508015610907575060015b5060010161088d565b505050565b60005460ff1615610982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015260640161080a565b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861085e3390565b6000602082840312156109e757600080fd5b815180151581146109f757600080fd5b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b805173ffffffffffffffffffffffffffffffffffffffff81168114610a5157600080fd5b919050565b60006020808385031215610a6957600080fd5b825167ffffffffffffffff80821115610a8157600080fd5b818501915085601f830112610a9557600080fd5b815181811115610aa757610aa76109fe565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f83011681018181108582111715610aea57610aea6109fe565b604052918252848201925083810185019188831115610b0857600080fd5b938501935b82851015610b2d57610b1e85610a2d565b84529385019392850192610b0d565b98975050505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220447f0f77525e705c0a5e6b52ca0e24e5cc01de5da45af8d70c2ebe6c0db8851364736f6c634300080a0033";
155
155
 
156
156
  type PauseMulticallConstructorParams =
157
157
  | [signer?: Signer]