@evedex/networks 3.4.3-beta.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.
Files changed (62) hide show
  1. package/README.md +24 -0
  2. package/networks/abi/AcrossSpokePoolMock.json +233 -0
  3. package/networks/abi/BadgeV1.json +1016 -0
  4. package/networks/abi/Billing.json +795 -0
  5. package/networks/abi/BridgeMiddleware.json +320 -0
  6. package/networks/abi/BridgeMiddlewareV2.json +431 -0
  7. package/networks/abi/BurnRegistryV1.json +541 -0
  8. package/networks/abi/CashbackVaultV1.json +397 -0
  9. package/networks/abi/CashbackVaultV2.json +434 -0
  10. package/networks/abi/ContestVault.json +484 -0
  11. package/networks/abi/DVFDepositContract.json +495 -0
  12. package/networks/abi/DVFDepositContractMock.json +425 -0
  13. package/networks/abi/DefaultBridgeGateway.json +23 -0
  14. package/networks/abi/DefaultBridgeMock.json +139 -0
  15. package/networks/abi/DepositManager.json +373 -0
  16. package/networks/abi/EHMarket.json +904 -0
  17. package/networks/abi/EHMarketLegacy.json +818 -0
  18. package/networks/abi/ERC20Mock.json +427 -0
  19. package/networks/abi/ERC20Paymaster.json +453 -0
  20. package/networks/abi/ERC721V1.json +916 -0
  21. package/networks/abi/ERC721V2.json +979 -0
  22. package/networks/abi/Eventum.json +515 -0
  23. package/networks/abi/GovernorMultisig.json +454 -0
  24. package/networks/abi/IAcrossSpokePool.json +111 -0
  25. package/networks/abi/IAllowanceTransfer.json +488 -0
  26. package/networks/abi/IDefaultBridgeGateway.json +23 -0
  27. package/networks/abi/IDepositManager.json +38 -0
  28. package/networks/abi/IEIP712.json +17 -0
  29. package/networks/abi/IEventHorizonMarket.json +214 -0
  30. package/networks/abi/IPermit2.json +867 -0
  31. package/networks/abi/IPriceFeed.json +50 -0
  32. package/networks/abi/ISignatureTransfer.json +396 -0
  33. package/networks/abi/ISwapManager.json +55 -0
  34. package/networks/abi/IWETH.json +17 -0
  35. package/networks/abi/LuckyShot.json +484 -0
  36. package/networks/abi/MinimalProxyFactory.json +130 -0
  37. package/networks/abi/Multicall3.json +442 -0
  38. package/networks/abi/Multiownable.json +418 -0
  39. package/networks/abi/OwnableValidator.json +596 -0
  40. package/networks/abi/Permit2Mock.json +147 -0
  41. package/networks/abi/PriceFeedMock.json +87 -0
  42. package/networks/abi/ProxyAdmin.json +125 -0
  43. package/networks/abi/Storage.json +396 -0
  44. package/networks/abi/SwapManager.json +414 -0
  45. package/networks/abi/SwapRouterMock.json +315 -0
  46. package/networks/abi/SwapRouterTestnetMock.json +323 -0
  47. package/networks/abi/TestnetERC20.json +456 -0
  48. package/networks/abi/TestnetWETH.json +503 -0
  49. package/networks/abi/TreasuryV1.json +292 -0
  50. package/networks/abi/USDC.json +515 -0
  51. package/networks/abi/USDT.json +515 -0
  52. package/networks/abi/UniversalRouterMock.json +101 -0
  53. package/networks/abi/UniversalRouterTestnetMock.json +85 -0
  54. package/networks/abi/VaultV1.json +435 -0
  55. package/networks/abi/VaultV2.json +506 -0
  56. package/networks/abi/WBTC.json +515 -0
  57. package/networks/abi/WETHMock.json +484 -0
  58. package/networks/arbitrum-bridges.json +66 -0
  59. package/networks/contracts-networks.json +863 -0
  60. package/networks/contracts.json +280 -0
  61. package/networks/networks.json +302 -0
  62. package/package.json +61 -0
@@ -0,0 +1,414 @@
1
+ {
2
+ "abi": [
3
+ {
4
+ "inputs": [
5
+ {
6
+ "internalType": "address",
7
+ "name": "permit2",
8
+ "type": "address"
9
+ },
10
+ {
11
+ "internalType": "address",
12
+ "name": "weth",
13
+ "type": "address"
14
+ }
15
+ ],
16
+ "stateMutability": "nonpayable",
17
+ "type": "constructor"
18
+ },
19
+ {
20
+ "inputs": [
21
+ {
22
+ "internalType": "address",
23
+ "name": "target",
24
+ "type": "address"
25
+ }
26
+ ],
27
+ "name": "AddressEmptyCode",
28
+ "type": "error"
29
+ },
30
+ {
31
+ "inputs": [
32
+ {
33
+ "internalType": "address",
34
+ "name": "account",
35
+ "type": "address"
36
+ }
37
+ ],
38
+ "name": "AddressInsufficientBalance",
39
+ "type": "error"
40
+ },
41
+ {
42
+ "inputs": [
43
+ {
44
+ "internalType": "address",
45
+ "name": "implementation",
46
+ "type": "address"
47
+ }
48
+ ],
49
+ "name": "ERC1967InvalidImplementation",
50
+ "type": "error"
51
+ },
52
+ {
53
+ "inputs": [],
54
+ "name": "ERC1967NonPayable",
55
+ "type": "error"
56
+ },
57
+ {
58
+ "inputs": [],
59
+ "name": "FailedInnerCall",
60
+ "type": "error"
61
+ },
62
+ {
63
+ "inputs": [],
64
+ "name": "InsufficientEthSent",
65
+ "type": "error"
66
+ },
67
+ {
68
+ "inputs": [],
69
+ "name": "InsufficientOutputAmount",
70
+ "type": "error"
71
+ },
72
+ {
73
+ "inputs": [],
74
+ "name": "InvalidInitialization",
75
+ "type": "error"
76
+ },
77
+ {
78
+ "inputs": [],
79
+ "name": "NotInitializing",
80
+ "type": "error"
81
+ },
82
+ {
83
+ "inputs": [
84
+ {
85
+ "internalType": "address",
86
+ "name": "owner",
87
+ "type": "address"
88
+ }
89
+ ],
90
+ "name": "OwnableInvalidOwner",
91
+ "type": "error"
92
+ },
93
+ {
94
+ "inputs": [
95
+ {
96
+ "internalType": "address",
97
+ "name": "account",
98
+ "type": "address"
99
+ }
100
+ ],
101
+ "name": "OwnableUnauthorizedAccount",
102
+ "type": "error"
103
+ },
104
+ {
105
+ "inputs": [],
106
+ "name": "PoolNotFound",
107
+ "type": "error"
108
+ },
109
+ {
110
+ "inputs": [],
111
+ "name": "RouterNotFound",
112
+ "type": "error"
113
+ },
114
+ {
115
+ "inputs": [
116
+ {
117
+ "internalType": "address",
118
+ "name": "token",
119
+ "type": "address"
120
+ }
121
+ ],
122
+ "name": "SafeERC20FailedOperation",
123
+ "type": "error"
124
+ },
125
+ {
126
+ "inputs": [],
127
+ "name": "UUPSUnauthorizedCallContext",
128
+ "type": "error"
129
+ },
130
+ {
131
+ "inputs": [
132
+ {
133
+ "internalType": "bytes32",
134
+ "name": "slot",
135
+ "type": "bytes32"
136
+ }
137
+ ],
138
+ "name": "UUPSUnsupportedProxiableUUID",
139
+ "type": "error"
140
+ },
141
+ {
142
+ "inputs": [
143
+ {
144
+ "internalType": "bytes32",
145
+ "name": "swapType",
146
+ "type": "bytes32"
147
+ }
148
+ ],
149
+ "name": "UnsupportedSwapType",
150
+ "type": "error"
151
+ },
152
+ {
153
+ "anonymous": false,
154
+ "inputs": [
155
+ {
156
+ "indexed": false,
157
+ "internalType": "uint64",
158
+ "name": "version",
159
+ "type": "uint64"
160
+ }
161
+ ],
162
+ "name": "Initialized",
163
+ "type": "event"
164
+ },
165
+ {
166
+ "anonymous": false,
167
+ "inputs": [
168
+ {
169
+ "indexed": true,
170
+ "internalType": "address",
171
+ "name": "previousOwner",
172
+ "type": "address"
173
+ },
174
+ {
175
+ "indexed": true,
176
+ "internalType": "address",
177
+ "name": "newOwner",
178
+ "type": "address"
179
+ }
180
+ ],
181
+ "name": "OwnershipTransferred",
182
+ "type": "event"
183
+ },
184
+ {
185
+ "anonymous": false,
186
+ "inputs": [
187
+ {
188
+ "indexed": true,
189
+ "internalType": "address",
190
+ "name": "implementation",
191
+ "type": "address"
192
+ }
193
+ ],
194
+ "name": "Upgraded",
195
+ "type": "event"
196
+ },
197
+ {
198
+ "stateMutability": "payable",
199
+ "type": "fallback"
200
+ },
201
+ {
202
+ "inputs": [],
203
+ "name": "UNISWAPV3_SWAP_TYPE",
204
+ "outputs": [
205
+ {
206
+ "internalType": "bytes32",
207
+ "name": "",
208
+ "type": "bytes32"
209
+ }
210
+ ],
211
+ "stateMutability": "view",
212
+ "type": "function"
213
+ },
214
+ {
215
+ "inputs": [],
216
+ "name": "UNISWAPV4_SWAP_TYPE",
217
+ "outputs": [
218
+ {
219
+ "internalType": "bytes32",
220
+ "name": "",
221
+ "type": "bytes32"
222
+ }
223
+ ],
224
+ "stateMutability": "view",
225
+ "type": "function"
226
+ },
227
+ {
228
+ "inputs": [],
229
+ "name": "UPGRADE_INTERFACE_VERSION",
230
+ "outputs": [
231
+ {
232
+ "internalType": "string",
233
+ "name": "",
234
+ "type": "string"
235
+ }
236
+ ],
237
+ "stateMutability": "view",
238
+ "type": "function"
239
+ },
240
+ {
241
+ "inputs": [
242
+ {
243
+ "internalType": "bytes32",
244
+ "name": "swapType",
245
+ "type": "bytes32"
246
+ },
247
+ {
248
+ "internalType": "address",
249
+ "name": "tokenIn",
250
+ "type": "address"
251
+ },
252
+ {
253
+ "internalType": "uint256",
254
+ "name": "amountIn",
255
+ "type": "uint256"
256
+ },
257
+ {
258
+ "internalType": "uint256",
259
+ "name": "minAmountOut",
260
+ "type": "uint256"
261
+ },
262
+ {
263
+ "internalType": "bytes",
264
+ "name": "swapData",
265
+ "type": "bytes"
266
+ }
267
+ ],
268
+ "name": "executeSwap",
269
+ "outputs": [
270
+ {
271
+ "components": [
272
+ {
273
+ "internalType": "address",
274
+ "name": "tokenOut",
275
+ "type": "address"
276
+ },
277
+ {
278
+ "internalType": "uint256",
279
+ "name": "amountOut",
280
+ "type": "uint256"
281
+ }
282
+ ],
283
+ "internalType": "struct ISwapManager.SwapResult",
284
+ "name": "",
285
+ "type": "tuple"
286
+ }
287
+ ],
288
+ "stateMutability": "payable",
289
+ "type": "function"
290
+ },
291
+ {
292
+ "inputs": [],
293
+ "name": "info",
294
+ "outputs": [
295
+ {
296
+ "internalType": "address",
297
+ "name": "",
298
+ "type": "address"
299
+ }
300
+ ],
301
+ "stateMutability": "view",
302
+ "type": "function"
303
+ },
304
+ {
305
+ "inputs": [
306
+ {
307
+ "internalType": "address",
308
+ "name": "_info",
309
+ "type": "address"
310
+ },
311
+ {
312
+ "internalType": "address",
313
+ "name": "_owner",
314
+ "type": "address"
315
+ }
316
+ ],
317
+ "name": "initialize",
318
+ "outputs": [],
319
+ "stateMutability": "nonpayable",
320
+ "type": "function"
321
+ },
322
+ {
323
+ "inputs": [],
324
+ "name": "owner",
325
+ "outputs": [
326
+ {
327
+ "internalType": "address",
328
+ "name": "",
329
+ "type": "address"
330
+ }
331
+ ],
332
+ "stateMutability": "view",
333
+ "type": "function"
334
+ },
335
+ {
336
+ "inputs": [],
337
+ "name": "proxiableUUID",
338
+ "outputs": [
339
+ {
340
+ "internalType": "bytes32",
341
+ "name": "",
342
+ "type": "bytes32"
343
+ }
344
+ ],
345
+ "stateMutability": "view",
346
+ "type": "function"
347
+ },
348
+ {
349
+ "inputs": [],
350
+ "name": "renounceOwnership",
351
+ "outputs": [],
352
+ "stateMutability": "nonpayable",
353
+ "type": "function"
354
+ },
355
+ {
356
+ "inputs": [
357
+ {
358
+ "internalType": "address",
359
+ "name": "newOwner",
360
+ "type": "address"
361
+ }
362
+ ],
363
+ "name": "transferOwnership",
364
+ "outputs": [],
365
+ "stateMutability": "nonpayable",
366
+ "type": "function"
367
+ },
368
+ {
369
+ "inputs": [
370
+ {
371
+ "internalType": "address",
372
+ "name": "newImplementation",
373
+ "type": "address"
374
+ },
375
+ {
376
+ "internalType": "bytes",
377
+ "name": "data",
378
+ "type": "bytes"
379
+ }
380
+ ],
381
+ "name": "upgradeToAndCall",
382
+ "outputs": [],
383
+ "stateMutability": "payable",
384
+ "type": "function"
385
+ },
386
+ {
387
+ "inputs": [
388
+ {
389
+ "internalType": "address",
390
+ "name": "token",
391
+ "type": "address"
392
+ },
393
+ {
394
+ "internalType": "address",
395
+ "name": "to",
396
+ "type": "address"
397
+ },
398
+ {
399
+ "internalType": "uint256",
400
+ "name": "amount",
401
+ "type": "uint256"
402
+ }
403
+ ],
404
+ "name": "withdraw",
405
+ "outputs": [],
406
+ "stateMutability": "nonpayable",
407
+ "type": "function"
408
+ },
409
+ {
410
+ "stateMutability": "payable",
411
+ "type": "receive"
412
+ }
413
+ ]
414
+ }