@layerzerolabs/lz-evm-sdk-v2 2.0.21 → 2.0.22

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 (28) hide show
  1. package/deployments/joc-testnet/DVN.json +1929 -0
  2. package/deployments/joc-testnet/DVNFeeLib.json +398 -0
  3. package/deployments/joc-testnet/DefaultProxyAdmin.json +258 -0
  4. package/deployments/joc-testnet/EndpointV2.json +3000 -0
  5. package/deployments/joc-testnet/EndpointV2View.json +435 -0
  6. package/deployments/joc-testnet/EndpointV2View_Implementation.json +313 -0
  7. package/deployments/joc-testnet/EndpointV2View_Proxy.json +230 -0
  8. package/deployments/joc-testnet/Executor.json +1532 -0
  9. package/deployments/joc-testnet/ExecutorFeeLib.json +423 -0
  10. package/deployments/joc-testnet/ExecutorProxyAdmin.json +283 -0
  11. package/deployments/joc-testnet/Executor_Implementation.json +1591 -0
  12. package/deployments/joc-testnet/Executor_Proxy.json +365 -0
  13. package/deployments/joc-testnet/LzExecutor.json +757 -0
  14. package/deployments/joc-testnet/LzExecutor_Implementation.json +703 -0
  15. package/deployments/joc-testnet/LzExecutor_Proxy.json +244 -0
  16. package/deployments/joc-testnet/ReceiveUln301.json +1292 -0
  17. package/deployments/joc-testnet/ReceiveUln301View.json +354 -0
  18. package/deployments/joc-testnet/ReceiveUln301View_Implementation.json +231 -0
  19. package/deployments/joc-testnet/ReceiveUln301View_Proxy.json +230 -0
  20. package/deployments/joc-testnet/ReceiveUln302.json +1006 -0
  21. package/deployments/joc-testnet/ReceiveUln302View.json +478 -0
  22. package/deployments/joc-testnet/ReceiveUln302View_Implementation.json +384 -0
  23. package/deployments/joc-testnet/ReceiveUln302View_Proxy.json +230 -0
  24. package/deployments/joc-testnet/SendUln301.json +1569 -0
  25. package/deployments/joc-testnet/SendUln302.json +1527 -0
  26. package/deployments/joc-testnet/Treasury.json +412 -0
  27. package/deployments/joc-testnet/TreasuryFeeHandler.json +125 -0
  28. package/package.json +8 -8
@@ -0,0 +1,423 @@
1
+ {
2
+ "address": "0x4Cf1B3Fa61465c2c907f82fC488B43223BA0CF93",
3
+ "abi": [
4
+ {
5
+ "inputs": [
6
+ {
7
+ "internalType": "uint256",
8
+ "name": "_nativeDecimalsRate",
9
+ "type": "uint256"
10
+ }
11
+ ],
12
+ "stateMutability": "nonpayable",
13
+ "type": "constructor"
14
+ },
15
+ {
16
+ "inputs": [
17
+ {
18
+ "internalType": "uint32",
19
+ "name": "eid",
20
+ "type": "uint32"
21
+ }
22
+ ],
23
+ "name": "Executor_EidNotSupported",
24
+ "type": "error"
25
+ },
26
+ {
27
+ "inputs": [
28
+ {
29
+ "internalType": "uint256",
30
+ "name": "cursor",
31
+ "type": "uint256"
32
+ }
33
+ ],
34
+ "name": "Executor_InvalidExecutorOptions",
35
+ "type": "error"
36
+ },
37
+ {
38
+ "inputs": [],
39
+ "name": "Executor_InvalidLzComposeOption",
40
+ "type": "error"
41
+ },
42
+ {
43
+ "inputs": [],
44
+ "name": "Executor_InvalidLzReceiveOption",
45
+ "type": "error"
46
+ },
47
+ {
48
+ "inputs": [],
49
+ "name": "Executor_InvalidNativeDropOption",
50
+ "type": "error"
51
+ },
52
+ {
53
+ "inputs": [
54
+ {
55
+ "internalType": "uint256",
56
+ "name": "amount",
57
+ "type": "uint256"
58
+ },
59
+ {
60
+ "internalType": "uint256",
61
+ "name": "cap",
62
+ "type": "uint256"
63
+ }
64
+ ],
65
+ "name": "Executor_NativeAmountExceedsCap",
66
+ "type": "error"
67
+ },
68
+ {
69
+ "inputs": [],
70
+ "name": "Executor_NoOptions",
71
+ "type": "error"
72
+ },
73
+ {
74
+ "inputs": [
75
+ {
76
+ "internalType": "uint8",
77
+ "name": "optionType",
78
+ "type": "uint8"
79
+ }
80
+ ],
81
+ "name": "Executor_UnsupportedOptionType",
82
+ "type": "error"
83
+ },
84
+ {
85
+ "inputs": [],
86
+ "name": "Executor_ZeroLzReceiveGasProvided",
87
+ "type": "error"
88
+ },
89
+ {
90
+ "inputs": [
91
+ {
92
+ "internalType": "address",
93
+ "name": "_to",
94
+ "type": "address"
95
+ },
96
+ {
97
+ "internalType": "uint256",
98
+ "name": "_value",
99
+ "type": "uint256"
100
+ }
101
+ ],
102
+ "name": "Transfer_NativeFailed",
103
+ "type": "error"
104
+ },
105
+ {
106
+ "inputs": [],
107
+ "name": "Transfer_ToAddressIsZero",
108
+ "type": "error"
109
+ },
110
+ {
111
+ "anonymous": false,
112
+ "inputs": [
113
+ {
114
+ "indexed": true,
115
+ "internalType": "address",
116
+ "name": "previousOwner",
117
+ "type": "address"
118
+ },
119
+ {
120
+ "indexed": true,
121
+ "internalType": "address",
122
+ "name": "newOwner",
123
+ "type": "address"
124
+ }
125
+ ],
126
+ "name": "OwnershipTransferred",
127
+ "type": "event"
128
+ },
129
+ {
130
+ "inputs": [
131
+ {
132
+ "components": [
133
+ {
134
+ "internalType": "address",
135
+ "name": "priceFeed",
136
+ "type": "address"
137
+ },
138
+ {
139
+ "internalType": "uint32",
140
+ "name": "dstEid",
141
+ "type": "uint32"
142
+ },
143
+ {
144
+ "internalType": "address",
145
+ "name": "sender",
146
+ "type": "address"
147
+ },
148
+ {
149
+ "internalType": "uint256",
150
+ "name": "calldataSize",
151
+ "type": "uint256"
152
+ },
153
+ {
154
+ "internalType": "uint16",
155
+ "name": "defaultMultiplierBps",
156
+ "type": "uint16"
157
+ }
158
+ ],
159
+ "internalType": "struct IExecutorFeeLib.FeeParams",
160
+ "name": "_params",
161
+ "type": "tuple"
162
+ },
163
+ {
164
+ "components": [
165
+ {
166
+ "internalType": "uint64",
167
+ "name": "baseGas",
168
+ "type": "uint64"
169
+ },
170
+ {
171
+ "internalType": "uint16",
172
+ "name": "multiplierBps",
173
+ "type": "uint16"
174
+ },
175
+ {
176
+ "internalType": "uint128",
177
+ "name": "floorMarginUSD",
178
+ "type": "uint128"
179
+ },
180
+ {
181
+ "internalType": "uint128",
182
+ "name": "nativeCap",
183
+ "type": "uint128"
184
+ }
185
+ ],
186
+ "internalType": "struct IExecutor.DstConfig",
187
+ "name": "_dstConfig",
188
+ "type": "tuple"
189
+ },
190
+ {
191
+ "internalType": "bytes",
192
+ "name": "_options",
193
+ "type": "bytes"
194
+ }
195
+ ],
196
+ "name": "getFee",
197
+ "outputs": [
198
+ {
199
+ "internalType": "uint256",
200
+ "name": "fee",
201
+ "type": "uint256"
202
+ }
203
+ ],
204
+ "stateMutability": "view",
205
+ "type": "function"
206
+ },
207
+ {
208
+ "inputs": [
209
+ {
210
+ "components": [
211
+ {
212
+ "internalType": "address",
213
+ "name": "priceFeed",
214
+ "type": "address"
215
+ },
216
+ {
217
+ "internalType": "uint32",
218
+ "name": "dstEid",
219
+ "type": "uint32"
220
+ },
221
+ {
222
+ "internalType": "address",
223
+ "name": "sender",
224
+ "type": "address"
225
+ },
226
+ {
227
+ "internalType": "uint256",
228
+ "name": "calldataSize",
229
+ "type": "uint256"
230
+ },
231
+ {
232
+ "internalType": "uint16",
233
+ "name": "defaultMultiplierBps",
234
+ "type": "uint16"
235
+ }
236
+ ],
237
+ "internalType": "struct IExecutorFeeLib.FeeParams",
238
+ "name": "_params",
239
+ "type": "tuple"
240
+ },
241
+ {
242
+ "components": [
243
+ {
244
+ "internalType": "uint64",
245
+ "name": "baseGas",
246
+ "type": "uint64"
247
+ },
248
+ {
249
+ "internalType": "uint16",
250
+ "name": "multiplierBps",
251
+ "type": "uint16"
252
+ },
253
+ {
254
+ "internalType": "uint128",
255
+ "name": "floorMarginUSD",
256
+ "type": "uint128"
257
+ },
258
+ {
259
+ "internalType": "uint128",
260
+ "name": "nativeCap",
261
+ "type": "uint128"
262
+ }
263
+ ],
264
+ "internalType": "struct IExecutor.DstConfig",
265
+ "name": "_dstConfig",
266
+ "type": "tuple"
267
+ },
268
+ {
269
+ "internalType": "bytes",
270
+ "name": "_options",
271
+ "type": "bytes"
272
+ }
273
+ ],
274
+ "name": "getFeeOnSend",
275
+ "outputs": [
276
+ {
277
+ "internalType": "uint256",
278
+ "name": "fee",
279
+ "type": "uint256"
280
+ }
281
+ ],
282
+ "stateMutability": "nonpayable",
283
+ "type": "function"
284
+ },
285
+ {
286
+ "inputs": [],
287
+ "name": "owner",
288
+ "outputs": [
289
+ {
290
+ "internalType": "address",
291
+ "name": "",
292
+ "type": "address"
293
+ }
294
+ ],
295
+ "stateMutability": "view",
296
+ "type": "function"
297
+ },
298
+ {
299
+ "inputs": [],
300
+ "name": "renounceOwnership",
301
+ "outputs": [],
302
+ "stateMutability": "nonpayable",
303
+ "type": "function"
304
+ },
305
+ {
306
+ "inputs": [
307
+ {
308
+ "internalType": "address",
309
+ "name": "newOwner",
310
+ "type": "address"
311
+ }
312
+ ],
313
+ "name": "transferOwnership",
314
+ "outputs": [],
315
+ "stateMutability": "nonpayable",
316
+ "type": "function"
317
+ },
318
+ {
319
+ "inputs": [
320
+ {
321
+ "internalType": "address",
322
+ "name": "_token",
323
+ "type": "address"
324
+ },
325
+ {
326
+ "internalType": "address",
327
+ "name": "_to",
328
+ "type": "address"
329
+ },
330
+ {
331
+ "internalType": "uint256",
332
+ "name": "_amount",
333
+ "type": "uint256"
334
+ }
335
+ ],
336
+ "name": "withdrawToken",
337
+ "outputs": [],
338
+ "stateMutability": "nonpayable",
339
+ "type": "function"
340
+ },
341
+ {
342
+ "stateMutability": "payable",
343
+ "type": "receive"
344
+ }
345
+ ],
346
+ "transactionHash": "0xb9f6e2915cd4083da53aba97026a5421c80db91c8855f80981f96df8533adad2",
347
+ "receipt": {
348
+ "to": null,
349
+ "from": "0xc13b65f7c53Cd6db2EA205a4b574b4a0858720A6",
350
+ "contractAddress": "0x4Cf1B3Fa61465c2c907f82fC488B43223BA0CF93",
351
+ "transactionIndex": 0,
352
+ "gasUsed": "1365051",
353
+ "logsBloom": "0x00000000000100000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000020000000000000400000000000000000000000000000001000000000000000000000000000000000000030000000000000000000800000000000000000004000000000000400000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000",
354
+ "blockHash": "0xe06f59b6045ba696ba90487659425010114105826f2a25a7f7279d3dcc694320",
355
+ "transactionHash": "0xb9f6e2915cd4083da53aba97026a5421c80db91c8855f80981f96df8533adad2",
356
+ "logs": [
357
+ {
358
+ "transactionIndex": 0,
359
+ "blockNumber": 2936547,
360
+ "transactionHash": "0xb9f6e2915cd4083da53aba97026a5421c80db91c8855f80981f96df8533adad2",
361
+ "address": "0x4Cf1B3Fa61465c2c907f82fC488B43223BA0CF93",
362
+ "topics": [
363
+ "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0",
364
+ "0x0000000000000000000000000000000000000000000000000000000000000000",
365
+ "0x000000000000000000000000c13b65f7c53cd6db2ea205a4b574b4a0858720a6"
366
+ ],
367
+ "data": "0x",
368
+ "logIndex": 0,
369
+ "blockHash": "0xe06f59b6045ba696ba90487659425010114105826f2a25a7f7279d3dcc694320"
370
+ }
371
+ ],
372
+ "blockNumber": 2936547,
373
+ "cumulativeGasUsed": "1365051",
374
+ "status": 1,
375
+ "byzantium": true
376
+ },
377
+ "args": [
378
+ "1000000000000000000"
379
+ ],
380
+ "numDeployments": 1,
381
+ "solcInputHash": "c1348614bdca535ead27abf9de3062c9",
382
+ "bytecode": "0x60a060405234801561001057600080fd5b5060405161183238038061183283398101604081905261002f91610090565b61003833610040565b6080526100a9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100a257600080fd5b5051919050565b60805161176e6100c46000396000610a67015261176e6000f3fe6080604052600436106100695760003560e01c80638da5cb5b116100435780638da5cb5b146100df578063f2fde38b14610114578063f43bcfc51461013457600080fd5b806301e3366714610075578063371c3a8e14610097578063715018a6146100ca57600080fd5b3661007057005b600080fd5b34801561008157600080fd5b506100956100903660046112a6565b610154565b005b3480156100a357600080fd5b506100b76100b23660046112e2565b61016c565b6040519081526020015b60405180910390f35b3480156100d657600080fd5b5061009561037c565b3480156100eb57600080fd5b5060005460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100c1565b34801561012057600080fd5b5061009561012f3660046113a2565b610390565b34801561014057600080fd5b506100b761014f3660046112e2565b610447565b61015c61053f565b6101678383836105c0565b505050565b600061017b60208501856113c4565b67ffffffffffffffff166000036101dc5761019c60408601602087016113ee565b6040517fc3baa0b700000000000000000000000000000000000000000000000000000000815263ffffffff90911660048201526024015b60405180910390fd5b6000806102286102046101f560408a0160208b016113ee565b61753063ffffffff9091161090565b61021160208901896113c4565b61022160808a0160608b01611432565b88886105f0565b9092509050600080808061023f60208c018c6113a2565b73ffffffffffffffffffffffffffffffffffffffff166388a4124c61026a60408e0160208f016113ee565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815263ffffffff91909116600482015260608e0135602482015260448101889052606401608060405180830381865afa1580156102d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102f9919061144f565b929650909450925090506103438461031760408d0160208e016114a4565b8d608001602081019061032a91906114a4565b8d604001602081019061033d9190611432565b856109dc565b96506103638684848e608001602081019061035e91906114a4565b610ad7565b61036d90886114f7565b9b9a5050505050505050505050565b61038461053f565b61038e6000610b41565b565b61039861053f565b73ffffffffffffffffffffffffffffffffffffffff811661043b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016101d3565b61044481610b41565b50565b600061045660208501856113c4565b67ffffffffffffffff166000036104775761019c60408601602087016113ee565b6000806104906102046101f560408a0160208b016113ee565b909250905060008080806104a760208c018c6113a2565b73ffffffffffffffffffffffffffffffffffffffff1663c1723a1d6104d260408e0160208f016113ee565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815263ffffffff91909116600482015260608e01356024820152604481018890526064016080604051808303816000875af11580156102d5573d6000803e3d6000fd5b60005473ffffffffffffffffffffffffffffffffffffffff16331461038e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101d3565b73ffffffffffffffffffffffffffffffffffffffff83166105e5576101678282610bb6565b610167838383610cbc565b60008082810361062b576040517e575ea100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5067ffffffffffffffff8516600080805b858310156108c75760003681806106548b8b89610d2a565b9950919550935091508690507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60ff851601610739576000806106978585610d80565b915091508f80156106ba57506000816fffffffffffffffffffffffffffffffff16115b156106f6576040517f052e551500000000000000000000000000000000000000000000000000000000815260ff871660048201526024016101d3565b6107126fffffffffffffffffffffffffffffffff82168c6114f7565b9a506107306fffffffffffffffffffffffffffffffff8316886114f7565b965050506108be565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe60ff85160161079657600061076f8484610dfe565b50905061078e6fffffffffffffffffffffffffffffffff82168b6114f7565b9950506108be565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd60ff851601610854578d156107fd576040517f052e551500000000000000000000000000000000000000000000000000000000815260ff851660048201526024016101d3565b60008061080a8585610e55565b9250925050806fffffffffffffffffffffffffffffffff168b61082d91906114f7565b9a5061084b6fffffffffffffffffffffffffffffffff83168b6114f7565b995050506108be565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc60ff85160161088757600195506108be565b6040517f052e551500000000000000000000000000000000000000000000000000000000815260ff851660048201526024016101d3565b5050505061063c565b828614610903576040517f990776ea000000000000000000000000000000000000000000000000000000008152600481018490526024016101d3565b876fffffffffffffffffffffffffffffffff16851115610969576040517e84ce02000000000000000000000000000000000000000000000000000000008152600481018690526fffffffffffffffffffffffffffffffff891660248201526044016101d3565b806000036109a3576040517fe5eb8f3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109ad81856114f7565b935081156109cf5760646109c2856066611510565b6109cc9190611527565b93505b5050509550959350505050565b60008061ffff8616156109ef57856109f1565b845b90506000612710610a0661ffff84168a611510565b610a109190611527565b90506fffffffffffffffffffffffffffffffff84161580610a4157506fffffffffffffffffffffffffffffffff8516155b15610a4f579150610ace9050565b600088856fffffffffffffffffffffffffffffffff167f0000000000000000000000000000000000000000000000000000000000000000886fffffffffffffffffffffffffffffffff16610aa39190611510565b610aad9190611527565b610ab791906114f7565b9050818111610ac65781610ac8565b805b93505050505b95945050505050565b60008415610b39576127108261ffff16846fffffffffffffffffffffffffffffffff16866fffffffffffffffffffffffffffffffff1688610b189190611510565b610b229190611527565b610b2c9190611510565b610b369190611527565b90505b949350505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff8216610c03576040517f6b7a931000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114610c5d576040519150601f19603f3d011682016040523d82523d6000602084013e610c62565b606091505b5050905080610167576040517f465bc83400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84166004820152602481018390526044016101d3565b73ffffffffffffffffffffffffffffffffffffffff8216610d09576040517f6b7a931000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61016773ffffffffffffffffffffffffffffffffffffffff84168383610ee2565b600036816001840181610d3e888884610f6f565b600292909201919050610d52888884610f96565b94506001820161ffff82168301610d6b81838b8d611562565b979b909a50969850505061ffff160193505050565b60008060108314801590610d95575060208314155b15610dcc576040517f4796aee100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610dd884846000610fbb565b915060208314610de9576000610df5565b610df584846010610fbb565b90509250929050565b60008060308314610e3b576040517fc3a1858e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e4784846000610fbb565b9150610df584846010610fe2565b6000808060128414801590610e6b575060228414155b15610ea2576040517f8b4aa70b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610eae85856000610f6f565b9250610ebc85856002610fbb565b915060228414610ecd576000610ed9565b610ed985856012610fbb565b90509250925092565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610167908490610ffd565b600060028201610f8181848688611562565b610f8a9161158c565b60f01c95945050505050565b6000838383818110610faa57610faa6115d4565b919091013560f81c95945050505050565b600060108201610fcd81848688611562565b610fd691611603565b60801c95945050505050565b600060208201610ff481848688611562565b610ace91611649565b600061105f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661110c9092919063ffffffff16565b90508051600014806110805750808060200190518101906110809190611685565b610167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016101d3565b6060610b398484600085856000808673ffffffffffffffffffffffffffffffffffffffff16858760405161114091906116cb565b60006040518083038185875af1925050503d806000811461117d576040519150601f19603f3d011682016040523d82523d6000602084013e611182565b606091505b50915091506111938783838761119e565b979650505050505050565b6060831561123457825160000361122d5773ffffffffffffffffffffffffffffffffffffffff85163b61122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016101d3565b5081610b39565b610b3983838151156112495781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101d391906116e7565b803573ffffffffffffffffffffffffffffffffffffffff811681146112a157600080fd5b919050565b6000806000606084860312156112bb57600080fd5b6112c48461127d565b92506112d26020850161127d565b9150604084013590509250925092565b6000806000808486036101408112156112fa57600080fd5b60a081121561130857600080fd5b85945060807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff608201121561133b57600080fd5b5060a08501925061012085013567ffffffffffffffff8082111561135e57600080fd5b818701915087601f83011261137257600080fd5b81358181111561138157600080fd5b88602082850101111561139357600080fd5b95989497505060200194505050565b6000602082840312156113b457600080fd5b6113bd8261127d565b9392505050565b6000602082840312156113d657600080fd5b813567ffffffffffffffff811681146113bd57600080fd5b60006020828403121561140057600080fd5b813563ffffffff811681146113bd57600080fd5b6fffffffffffffffffffffffffffffffff8116811461044457600080fd5b60006020828403121561144457600080fd5b81356113bd81611414565b6000806000806080858703121561146557600080fd5b84519350602085015161147781611414565b604086015190935061148881611414565b606086015190925061149981611414565b939692955090935050565b6000602082840312156114b657600080fd5b813561ffff811681146113bd57600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561150a5761150a6114c8565b92915050565b808202811582820484141761150a5761150a6114c8565b60008261155d577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000808585111561157257600080fd5b8386111561157f57600080fd5b5050820193919092039150565b7fffff00000000000000000000000000000000000000000000000000000000000081358181169160028510156115cc5780818660020360031b1b83161692505b505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7fffffffffffffffffffffffffffffffff0000000000000000000000000000000081358181169160108510156115cc5760109490940360031b84901b1690921692915050565b8035602083101561150a577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff602084900360031b1b1692915050565b60006020828403121561169757600080fd5b815180151581146113bd57600080fd5b60005b838110156116c25781810151838201526020016116aa565b50506000910152565b600082516116dd8184602087016116a7565b9190910192915050565b60208152600082518060208401526117068160408501602087016116a7565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea264697066735822122014a4fdac7427501fce5b3ad4c21428a323c217a5d99120eb190b182172eec96a64736f6c63430008160033",
383
+ "deployedBytecode": "0x6080604052600436106100695760003560e01c80638da5cb5b116100435780638da5cb5b146100df578063f2fde38b14610114578063f43bcfc51461013457600080fd5b806301e3366714610075578063371c3a8e14610097578063715018a6146100ca57600080fd5b3661007057005b600080fd5b34801561008157600080fd5b506100956100903660046112a6565b610154565b005b3480156100a357600080fd5b506100b76100b23660046112e2565b61016c565b6040519081526020015b60405180910390f35b3480156100d657600080fd5b5061009561037c565b3480156100eb57600080fd5b5060005460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100c1565b34801561012057600080fd5b5061009561012f3660046113a2565b610390565b34801561014057600080fd5b506100b761014f3660046112e2565b610447565b61015c61053f565b6101678383836105c0565b505050565b600061017b60208501856113c4565b67ffffffffffffffff166000036101dc5761019c60408601602087016113ee565b6040517fc3baa0b700000000000000000000000000000000000000000000000000000000815263ffffffff90911660048201526024015b60405180910390fd5b6000806102286102046101f560408a0160208b016113ee565b61753063ffffffff9091161090565b61021160208901896113c4565b61022160808a0160608b01611432565b88886105f0565b9092509050600080808061023f60208c018c6113a2565b73ffffffffffffffffffffffffffffffffffffffff166388a4124c61026a60408e0160208f016113ee565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815263ffffffff91909116600482015260608e0135602482015260448101889052606401608060405180830381865afa1580156102d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102f9919061144f565b929650909450925090506103438461031760408d0160208e016114a4565b8d608001602081019061032a91906114a4565b8d604001602081019061033d9190611432565b856109dc565b96506103638684848e608001602081019061035e91906114a4565b610ad7565b61036d90886114f7565b9b9a5050505050505050505050565b61038461053f565b61038e6000610b41565b565b61039861053f565b73ffffffffffffffffffffffffffffffffffffffff811661043b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016101d3565b61044481610b41565b50565b600061045660208501856113c4565b67ffffffffffffffff166000036104775761019c60408601602087016113ee565b6000806104906102046101f560408a0160208b016113ee565b909250905060008080806104a760208c018c6113a2565b73ffffffffffffffffffffffffffffffffffffffff1663c1723a1d6104d260408e0160208f016113ee565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815263ffffffff91909116600482015260608e01356024820152604481018890526064016080604051808303816000875af11580156102d5573d6000803e3d6000fd5b60005473ffffffffffffffffffffffffffffffffffffffff16331461038e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101d3565b73ffffffffffffffffffffffffffffffffffffffff83166105e5576101678282610bb6565b610167838383610cbc565b60008082810361062b576040517e575ea100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5067ffffffffffffffff8516600080805b858310156108c75760003681806106548b8b89610d2a565b9950919550935091508690507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60ff851601610739576000806106978585610d80565b915091508f80156106ba57506000816fffffffffffffffffffffffffffffffff16115b156106f6576040517f052e551500000000000000000000000000000000000000000000000000000000815260ff871660048201526024016101d3565b6107126fffffffffffffffffffffffffffffffff82168c6114f7565b9a506107306fffffffffffffffffffffffffffffffff8316886114f7565b965050506108be565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe60ff85160161079657600061076f8484610dfe565b50905061078e6fffffffffffffffffffffffffffffffff82168b6114f7565b9950506108be565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd60ff851601610854578d156107fd576040517f052e551500000000000000000000000000000000000000000000000000000000815260ff851660048201526024016101d3565b60008061080a8585610e55565b9250925050806fffffffffffffffffffffffffffffffff168b61082d91906114f7565b9a5061084b6fffffffffffffffffffffffffffffffff83168b6114f7565b995050506108be565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc60ff85160161088757600195506108be565b6040517f052e551500000000000000000000000000000000000000000000000000000000815260ff851660048201526024016101d3565b5050505061063c565b828614610903576040517f990776ea000000000000000000000000000000000000000000000000000000008152600481018490526024016101d3565b876fffffffffffffffffffffffffffffffff16851115610969576040517e84ce02000000000000000000000000000000000000000000000000000000008152600481018690526fffffffffffffffffffffffffffffffff891660248201526044016101d3565b806000036109a3576040517fe5eb8f3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109ad81856114f7565b935081156109cf5760646109c2856066611510565b6109cc9190611527565b93505b5050509550959350505050565b60008061ffff8616156109ef57856109f1565b845b90506000612710610a0661ffff84168a611510565b610a109190611527565b90506fffffffffffffffffffffffffffffffff84161580610a4157506fffffffffffffffffffffffffffffffff8516155b15610a4f579150610ace9050565b600088856fffffffffffffffffffffffffffffffff167f0000000000000000000000000000000000000000000000000000000000000000886fffffffffffffffffffffffffffffffff16610aa39190611510565b610aad9190611527565b610ab791906114f7565b9050818111610ac65781610ac8565b805b93505050505b95945050505050565b60008415610b39576127108261ffff16846fffffffffffffffffffffffffffffffff16866fffffffffffffffffffffffffffffffff1688610b189190611510565b610b229190611527565b610b2c9190611510565b610b369190611527565b90505b949350505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff8216610c03576040517f6b7a931000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114610c5d576040519150601f19603f3d011682016040523d82523d6000602084013e610c62565b606091505b5050905080610167576040517f465bc83400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84166004820152602481018390526044016101d3565b73ffffffffffffffffffffffffffffffffffffffff8216610d09576040517f6b7a931000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61016773ffffffffffffffffffffffffffffffffffffffff84168383610ee2565b600036816001840181610d3e888884610f6f565b600292909201919050610d52888884610f96565b94506001820161ffff82168301610d6b81838b8d611562565b979b909a50969850505061ffff160193505050565b60008060108314801590610d95575060208314155b15610dcc576040517f4796aee100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610dd884846000610fbb565b915060208314610de9576000610df5565b610df584846010610fbb565b90509250929050565b60008060308314610e3b576040517fc3a1858e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e4784846000610fbb565b9150610df584846010610fe2565b6000808060128414801590610e6b575060228414155b15610ea2576040517f8b4aa70b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610eae85856000610f6f565b9250610ebc85856002610fbb565b915060228414610ecd576000610ed9565b610ed985856012610fbb565b90509250925092565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610167908490610ffd565b600060028201610f8181848688611562565b610f8a9161158c565b60f01c95945050505050565b6000838383818110610faa57610faa6115d4565b919091013560f81c95945050505050565b600060108201610fcd81848688611562565b610fd691611603565b60801c95945050505050565b600060208201610ff481848688611562565b610ace91611649565b600061105f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661110c9092919063ffffffff16565b90508051600014806110805750808060200190518101906110809190611685565b610167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016101d3565b6060610b398484600085856000808673ffffffffffffffffffffffffffffffffffffffff16858760405161114091906116cb565b60006040518083038185875af1925050503d806000811461117d576040519150601f19603f3d011682016040523d82523d6000602084013e611182565b606091505b50915091506111938783838761119e565b979650505050505050565b6060831561123457825160000361122d5773ffffffffffffffffffffffffffffffffffffffff85163b61122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016101d3565b5081610b39565b610b3983838151156112495781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101d391906116e7565b803573ffffffffffffffffffffffffffffffffffffffff811681146112a157600080fd5b919050565b6000806000606084860312156112bb57600080fd5b6112c48461127d565b92506112d26020850161127d565b9150604084013590509250925092565b6000806000808486036101408112156112fa57600080fd5b60a081121561130857600080fd5b85945060807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff608201121561133b57600080fd5b5060a08501925061012085013567ffffffffffffffff8082111561135e57600080fd5b818701915087601f83011261137257600080fd5b81358181111561138157600080fd5b88602082850101111561139357600080fd5b95989497505060200194505050565b6000602082840312156113b457600080fd5b6113bd8261127d565b9392505050565b6000602082840312156113d657600080fd5b813567ffffffffffffffff811681146113bd57600080fd5b60006020828403121561140057600080fd5b813563ffffffff811681146113bd57600080fd5b6fffffffffffffffffffffffffffffffff8116811461044457600080fd5b60006020828403121561144457600080fd5b81356113bd81611414565b6000806000806080858703121561146557600080fd5b84519350602085015161147781611414565b604086015190935061148881611414565b606086015190925061149981611414565b939692955090935050565b6000602082840312156114b657600080fd5b813561ffff811681146113bd57600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561150a5761150a6114c8565b92915050565b808202811582820484141761150a5761150a6114c8565b60008261155d577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000808585111561157257600080fd5b8386111561157f57600080fd5b5050820193919092039150565b7fffff00000000000000000000000000000000000000000000000000000000000081358181169160028510156115cc5780818660020360031b1b83161692505b505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7fffffffffffffffffffffffffffffffff0000000000000000000000000000000081358181169160108510156115cc5760109490940360031b84901b1690921692915050565b8035602083101561150a577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff602084900360031b1b1692915050565b60006020828403121561169757600080fd5b815180151581146113bd57600080fd5b60005b838110156116c25781810151838201526020016116aa565b50506000910152565b600082516116dd8184602087016116a7565b9190910192915050565b60208152600082518060208401526117068160408501602087016116a7565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea264697066735822122014a4fdac7427501fce5b3ad4c21428a323c217a5d99120eb190b182172eec96a64736f6c63430008160033",
384
+ "devdoc": {
385
+ "kind": "dev",
386
+ "methods": {
387
+ "owner()": {
388
+ "details": "Returns the address of the current owner."
389
+ },
390
+ "renounceOwnership()": {
391
+ "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner."
392
+ },
393
+ "transferOwnership(address)": {
394
+ "details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
395
+ }
396
+ },
397
+ "version": 1
398
+ },
399
+ "userdoc": {
400
+ "kind": "user",
401
+ "methods": {},
402
+ "version": 1
403
+ },
404
+ "storageLayout": {
405
+ "storage": [
406
+ {
407
+ "astId": 7783,
408
+ "contract": "contracts/ExecutorFeeLib.sol:ExecutorFeeLib",
409
+ "label": "_owner",
410
+ "offset": 0,
411
+ "slot": "0",
412
+ "type": "t_address"
413
+ }
414
+ ],
415
+ "types": {
416
+ "t_address": {
417
+ "encoding": "inplace",
418
+ "label": "address",
419
+ "numberOfBytes": "20"
420
+ }
421
+ }
422
+ }
423
+ }