@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,442 @@
1
+ {
2
+ "abi": [
3
+ {
4
+ "inputs": [
5
+ {
6
+ "components": [
7
+ {
8
+ "internalType": "address",
9
+ "name": "target",
10
+ "type": "address"
11
+ },
12
+ {
13
+ "internalType": "bytes",
14
+ "name": "callData",
15
+ "type": "bytes"
16
+ }
17
+ ],
18
+ "internalType": "struct Multicall3.Call[]",
19
+ "name": "calls",
20
+ "type": "tuple[]"
21
+ }
22
+ ],
23
+ "name": "aggregate",
24
+ "outputs": [
25
+ {
26
+ "internalType": "uint256",
27
+ "name": "blockNumber",
28
+ "type": "uint256"
29
+ },
30
+ {
31
+ "internalType": "bytes[]",
32
+ "name": "returnData",
33
+ "type": "bytes[]"
34
+ }
35
+ ],
36
+ "stateMutability": "payable",
37
+ "type": "function"
38
+ },
39
+ {
40
+ "inputs": [
41
+ {
42
+ "components": [
43
+ {
44
+ "internalType": "address",
45
+ "name": "target",
46
+ "type": "address"
47
+ },
48
+ {
49
+ "internalType": "bool",
50
+ "name": "allowFailure",
51
+ "type": "bool"
52
+ },
53
+ {
54
+ "internalType": "bytes",
55
+ "name": "callData",
56
+ "type": "bytes"
57
+ }
58
+ ],
59
+ "internalType": "struct Multicall3.Call3[]",
60
+ "name": "calls",
61
+ "type": "tuple[]"
62
+ }
63
+ ],
64
+ "name": "aggregate3",
65
+ "outputs": [
66
+ {
67
+ "components": [
68
+ {
69
+ "internalType": "bool",
70
+ "name": "success",
71
+ "type": "bool"
72
+ },
73
+ {
74
+ "internalType": "bytes",
75
+ "name": "returnData",
76
+ "type": "bytes"
77
+ }
78
+ ],
79
+ "internalType": "struct Multicall3.Result[]",
80
+ "name": "returnData",
81
+ "type": "tuple[]"
82
+ }
83
+ ],
84
+ "stateMutability": "payable",
85
+ "type": "function"
86
+ },
87
+ {
88
+ "inputs": [
89
+ {
90
+ "components": [
91
+ {
92
+ "internalType": "address",
93
+ "name": "target",
94
+ "type": "address"
95
+ },
96
+ {
97
+ "internalType": "bool",
98
+ "name": "allowFailure",
99
+ "type": "bool"
100
+ },
101
+ {
102
+ "internalType": "uint256",
103
+ "name": "value",
104
+ "type": "uint256"
105
+ },
106
+ {
107
+ "internalType": "bytes",
108
+ "name": "callData",
109
+ "type": "bytes"
110
+ }
111
+ ],
112
+ "internalType": "struct Multicall3.Call3Value[]",
113
+ "name": "calls",
114
+ "type": "tuple[]"
115
+ }
116
+ ],
117
+ "name": "aggregate3Value",
118
+ "outputs": [
119
+ {
120
+ "components": [
121
+ {
122
+ "internalType": "bool",
123
+ "name": "success",
124
+ "type": "bool"
125
+ },
126
+ {
127
+ "internalType": "bytes",
128
+ "name": "returnData",
129
+ "type": "bytes"
130
+ }
131
+ ],
132
+ "internalType": "struct Multicall3.Result[]",
133
+ "name": "returnData",
134
+ "type": "tuple[]"
135
+ }
136
+ ],
137
+ "stateMutability": "payable",
138
+ "type": "function"
139
+ },
140
+ {
141
+ "inputs": [
142
+ {
143
+ "components": [
144
+ {
145
+ "internalType": "address",
146
+ "name": "target",
147
+ "type": "address"
148
+ },
149
+ {
150
+ "internalType": "bytes",
151
+ "name": "callData",
152
+ "type": "bytes"
153
+ }
154
+ ],
155
+ "internalType": "struct Multicall3.Call[]",
156
+ "name": "calls",
157
+ "type": "tuple[]"
158
+ }
159
+ ],
160
+ "name": "blockAndAggregate",
161
+ "outputs": [
162
+ {
163
+ "internalType": "uint256",
164
+ "name": "blockNumber",
165
+ "type": "uint256"
166
+ },
167
+ {
168
+ "internalType": "bytes32",
169
+ "name": "blockHash",
170
+ "type": "bytes32"
171
+ },
172
+ {
173
+ "components": [
174
+ {
175
+ "internalType": "bool",
176
+ "name": "success",
177
+ "type": "bool"
178
+ },
179
+ {
180
+ "internalType": "bytes",
181
+ "name": "returnData",
182
+ "type": "bytes"
183
+ }
184
+ ],
185
+ "internalType": "struct Multicall3.Result[]",
186
+ "name": "returnData",
187
+ "type": "tuple[]"
188
+ }
189
+ ],
190
+ "stateMutability": "payable",
191
+ "type": "function"
192
+ },
193
+ {
194
+ "inputs": [],
195
+ "name": "getBasefee",
196
+ "outputs": [
197
+ {
198
+ "internalType": "uint256",
199
+ "name": "basefee",
200
+ "type": "uint256"
201
+ }
202
+ ],
203
+ "stateMutability": "view",
204
+ "type": "function"
205
+ },
206
+ {
207
+ "inputs": [
208
+ {
209
+ "internalType": "uint256",
210
+ "name": "blockNumber",
211
+ "type": "uint256"
212
+ }
213
+ ],
214
+ "name": "getBlockHash",
215
+ "outputs": [
216
+ {
217
+ "internalType": "bytes32",
218
+ "name": "blockHash",
219
+ "type": "bytes32"
220
+ }
221
+ ],
222
+ "stateMutability": "view",
223
+ "type": "function"
224
+ },
225
+ {
226
+ "inputs": [],
227
+ "name": "getBlockNumber",
228
+ "outputs": [
229
+ {
230
+ "internalType": "uint256",
231
+ "name": "blockNumber",
232
+ "type": "uint256"
233
+ }
234
+ ],
235
+ "stateMutability": "view",
236
+ "type": "function"
237
+ },
238
+ {
239
+ "inputs": [],
240
+ "name": "getChainId",
241
+ "outputs": [
242
+ {
243
+ "internalType": "uint256",
244
+ "name": "chainid",
245
+ "type": "uint256"
246
+ }
247
+ ],
248
+ "stateMutability": "view",
249
+ "type": "function"
250
+ },
251
+ {
252
+ "inputs": [],
253
+ "name": "getCurrentBlockCoinbase",
254
+ "outputs": [
255
+ {
256
+ "internalType": "address",
257
+ "name": "coinbase",
258
+ "type": "address"
259
+ }
260
+ ],
261
+ "stateMutability": "view",
262
+ "type": "function"
263
+ },
264
+ {
265
+ "inputs": [],
266
+ "name": "getCurrentBlockDifficulty",
267
+ "outputs": [
268
+ {
269
+ "internalType": "uint256",
270
+ "name": "difficulty",
271
+ "type": "uint256"
272
+ }
273
+ ],
274
+ "stateMutability": "view",
275
+ "type": "function"
276
+ },
277
+ {
278
+ "inputs": [],
279
+ "name": "getCurrentBlockGasLimit",
280
+ "outputs": [
281
+ {
282
+ "internalType": "uint256",
283
+ "name": "gaslimit",
284
+ "type": "uint256"
285
+ }
286
+ ],
287
+ "stateMutability": "view",
288
+ "type": "function"
289
+ },
290
+ {
291
+ "inputs": [],
292
+ "name": "getCurrentBlockTimestamp",
293
+ "outputs": [
294
+ {
295
+ "internalType": "uint256",
296
+ "name": "timestamp",
297
+ "type": "uint256"
298
+ }
299
+ ],
300
+ "stateMutability": "view",
301
+ "type": "function"
302
+ },
303
+ {
304
+ "inputs": [
305
+ {
306
+ "internalType": "address",
307
+ "name": "addr",
308
+ "type": "address"
309
+ }
310
+ ],
311
+ "name": "getEthBalance",
312
+ "outputs": [
313
+ {
314
+ "internalType": "uint256",
315
+ "name": "balance",
316
+ "type": "uint256"
317
+ }
318
+ ],
319
+ "stateMutability": "view",
320
+ "type": "function"
321
+ },
322
+ {
323
+ "inputs": [],
324
+ "name": "getLastBlockHash",
325
+ "outputs": [
326
+ {
327
+ "internalType": "bytes32",
328
+ "name": "blockHash",
329
+ "type": "bytes32"
330
+ }
331
+ ],
332
+ "stateMutability": "view",
333
+ "type": "function"
334
+ },
335
+ {
336
+ "inputs": [
337
+ {
338
+ "internalType": "bool",
339
+ "name": "requireSuccess",
340
+ "type": "bool"
341
+ },
342
+ {
343
+ "components": [
344
+ {
345
+ "internalType": "address",
346
+ "name": "target",
347
+ "type": "address"
348
+ },
349
+ {
350
+ "internalType": "bytes",
351
+ "name": "callData",
352
+ "type": "bytes"
353
+ }
354
+ ],
355
+ "internalType": "struct Multicall3.Call[]",
356
+ "name": "calls",
357
+ "type": "tuple[]"
358
+ }
359
+ ],
360
+ "name": "tryAggregate",
361
+ "outputs": [
362
+ {
363
+ "components": [
364
+ {
365
+ "internalType": "bool",
366
+ "name": "success",
367
+ "type": "bool"
368
+ },
369
+ {
370
+ "internalType": "bytes",
371
+ "name": "returnData",
372
+ "type": "bytes"
373
+ }
374
+ ],
375
+ "internalType": "struct Multicall3.Result[]",
376
+ "name": "returnData",
377
+ "type": "tuple[]"
378
+ }
379
+ ],
380
+ "stateMutability": "payable",
381
+ "type": "function"
382
+ },
383
+ {
384
+ "inputs": [
385
+ {
386
+ "internalType": "bool",
387
+ "name": "requireSuccess",
388
+ "type": "bool"
389
+ },
390
+ {
391
+ "components": [
392
+ {
393
+ "internalType": "address",
394
+ "name": "target",
395
+ "type": "address"
396
+ },
397
+ {
398
+ "internalType": "bytes",
399
+ "name": "callData",
400
+ "type": "bytes"
401
+ }
402
+ ],
403
+ "internalType": "struct Multicall3.Call[]",
404
+ "name": "calls",
405
+ "type": "tuple[]"
406
+ }
407
+ ],
408
+ "name": "tryBlockAndAggregate",
409
+ "outputs": [
410
+ {
411
+ "internalType": "uint256",
412
+ "name": "blockNumber",
413
+ "type": "uint256"
414
+ },
415
+ {
416
+ "internalType": "bytes32",
417
+ "name": "blockHash",
418
+ "type": "bytes32"
419
+ },
420
+ {
421
+ "components": [
422
+ {
423
+ "internalType": "bool",
424
+ "name": "success",
425
+ "type": "bool"
426
+ },
427
+ {
428
+ "internalType": "bytes",
429
+ "name": "returnData",
430
+ "type": "bytes"
431
+ }
432
+ ],
433
+ "internalType": "struct Multicall3.Result[]",
434
+ "name": "returnData",
435
+ "type": "tuple[]"
436
+ }
437
+ ],
438
+ "stateMutability": "payable",
439
+ "type": "function"
440
+ }
441
+ ]
442
+ }