@evedex/networks 3.4.3-dev.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,596 @@
1
+ {
2
+ "abi": [
3
+ {
4
+ "inputs": [
5
+ {
6
+ "internalType": "address",
7
+ "name": "smartAccount",
8
+ "type": "address"
9
+ }
10
+ ],
11
+ "name": "AlreadyInitialized",
12
+ "type": "error"
13
+ },
14
+ {
15
+ "inputs": [],
16
+ "name": "CannotRemoveOwner",
17
+ "type": "error"
18
+ },
19
+ {
20
+ "inputs": [
21
+ {
22
+ "internalType": "address",
23
+ "name": "owner",
24
+ "type": "address"
25
+ }
26
+ ],
27
+ "name": "InvalidOwner",
28
+ "type": "error"
29
+ },
30
+ {
31
+ "inputs": [],
32
+ "name": "InvalidSignature",
33
+ "type": "error"
34
+ },
35
+ {
36
+ "inputs": [],
37
+ "name": "InvalidThreshold",
38
+ "type": "error"
39
+ },
40
+ {
41
+ "inputs": [],
42
+ "name": "LinkedList_AlreadyInitialized",
43
+ "type": "error"
44
+ },
45
+ {
46
+ "inputs": [
47
+ {
48
+ "internalType": "address",
49
+ "name": "entry",
50
+ "type": "address"
51
+ }
52
+ ],
53
+ "name": "LinkedList_EntryAlreadyInList",
54
+ "type": "error"
55
+ },
56
+ {
57
+ "inputs": [
58
+ {
59
+ "internalType": "address",
60
+ "name": "entry",
61
+ "type": "address"
62
+ }
63
+ ],
64
+ "name": "LinkedList_InvalidEntry",
65
+ "type": "error"
66
+ },
67
+ {
68
+ "inputs": [],
69
+ "name": "LinkedList_InvalidPage",
70
+ "type": "error"
71
+ },
72
+ {
73
+ "inputs": [],
74
+ "name": "MaxOwnersReached",
75
+ "type": "error"
76
+ },
77
+ {
78
+ "inputs": [
79
+ {
80
+ "internalType": "address",
81
+ "name": "smartAccount",
82
+ "type": "address"
83
+ }
84
+ ],
85
+ "name": "NotInitialized",
86
+ "type": "error"
87
+ },
88
+ {
89
+ "inputs": [],
90
+ "name": "NotSortedAndUnique",
91
+ "type": "error"
92
+ },
93
+ {
94
+ "inputs": [],
95
+ "name": "ThresholdNotSet",
96
+ "type": "error"
97
+ },
98
+ {
99
+ "inputs": [
100
+ {
101
+ "internalType": "bytes",
102
+ "name": "contractSignature",
103
+ "type": "bytes"
104
+ }
105
+ ],
106
+ "name": "WrongContractSignature",
107
+ "type": "error"
108
+ },
109
+ {
110
+ "inputs": [
111
+ {
112
+ "internalType": "uint256",
113
+ "name": "s",
114
+ "type": "uint256"
115
+ },
116
+ {
117
+ "internalType": "uint256",
118
+ "name": "contractSignatureLen",
119
+ "type": "uint256"
120
+ },
121
+ {
122
+ "internalType": "uint256",
123
+ "name": "signaturesLen",
124
+ "type": "uint256"
125
+ }
126
+ ],
127
+ "name": "WrongContractSignatureFormat",
128
+ "type": "error"
129
+ },
130
+ {
131
+ "anonymous": false,
132
+ "inputs": [
133
+ {
134
+ "indexed": true,
135
+ "internalType": "address",
136
+ "name": "account",
137
+ "type": "address"
138
+ }
139
+ ],
140
+ "name": "ModuleInitialized",
141
+ "type": "event"
142
+ },
143
+ {
144
+ "anonymous": false,
145
+ "inputs": [
146
+ {
147
+ "indexed": true,
148
+ "internalType": "address",
149
+ "name": "account",
150
+ "type": "address"
151
+ }
152
+ ],
153
+ "name": "ModuleUninitialized",
154
+ "type": "event"
155
+ },
156
+ {
157
+ "anonymous": false,
158
+ "inputs": [
159
+ {
160
+ "indexed": true,
161
+ "internalType": "address",
162
+ "name": "account",
163
+ "type": "address"
164
+ },
165
+ {
166
+ "indexed": false,
167
+ "internalType": "address",
168
+ "name": "owner",
169
+ "type": "address"
170
+ }
171
+ ],
172
+ "name": "OwnerAdded",
173
+ "type": "event"
174
+ },
175
+ {
176
+ "anonymous": false,
177
+ "inputs": [
178
+ {
179
+ "indexed": true,
180
+ "internalType": "address",
181
+ "name": "account",
182
+ "type": "address"
183
+ },
184
+ {
185
+ "indexed": false,
186
+ "internalType": "address",
187
+ "name": "owner",
188
+ "type": "address"
189
+ }
190
+ ],
191
+ "name": "OwnerRemoved",
192
+ "type": "event"
193
+ },
194
+ {
195
+ "anonymous": false,
196
+ "inputs": [
197
+ {
198
+ "indexed": true,
199
+ "internalType": "address",
200
+ "name": "account",
201
+ "type": "address"
202
+ },
203
+ {
204
+ "indexed": false,
205
+ "internalType": "uint256",
206
+ "name": "threshold",
207
+ "type": "uint256"
208
+ }
209
+ ],
210
+ "name": "ThresholdSet",
211
+ "type": "event"
212
+ },
213
+ {
214
+ "inputs": [
215
+ {
216
+ "internalType": "address",
217
+ "name": "owner",
218
+ "type": "address"
219
+ }
220
+ ],
221
+ "name": "addOwner",
222
+ "outputs": [],
223
+ "stateMutability": "nonpayable",
224
+ "type": "function"
225
+ },
226
+ {
227
+ "inputs": [
228
+ {
229
+ "internalType": "address",
230
+ "name": "owner",
231
+ "type": "address"
232
+ },
233
+ {
234
+ "internalType": "uint256",
235
+ "name": "index",
236
+ "type": "uint256"
237
+ }
238
+ ],
239
+ "name": "getAccountAt",
240
+ "outputs": [
241
+ {
242
+ "internalType": "address",
243
+ "name": "account",
244
+ "type": "address"
245
+ }
246
+ ],
247
+ "stateMutability": "view",
248
+ "type": "function"
249
+ },
250
+ {
251
+ "inputs": [
252
+ {
253
+ "internalType": "address",
254
+ "name": "owner",
255
+ "type": "address"
256
+ }
257
+ ],
258
+ "name": "getAccounts",
259
+ "outputs": [
260
+ {
261
+ "internalType": "address[]",
262
+ "name": "accountsArray",
263
+ "type": "address[]"
264
+ }
265
+ ],
266
+ "stateMutability": "view",
267
+ "type": "function"
268
+ },
269
+ {
270
+ "inputs": [
271
+ {
272
+ "internalType": "address",
273
+ "name": "owner",
274
+ "type": "address"
275
+ }
276
+ ],
277
+ "name": "getAccountsLength",
278
+ "outputs": [
279
+ {
280
+ "internalType": "uint256",
281
+ "name": "length",
282
+ "type": "uint256"
283
+ }
284
+ ],
285
+ "stateMutability": "view",
286
+ "type": "function"
287
+ },
288
+ {
289
+ "inputs": [
290
+ {
291
+ "internalType": "address",
292
+ "name": "account",
293
+ "type": "address"
294
+ }
295
+ ],
296
+ "name": "getOwners",
297
+ "outputs": [
298
+ {
299
+ "internalType": "address[]",
300
+ "name": "ownersArray",
301
+ "type": "address[]"
302
+ }
303
+ ],
304
+ "stateMutability": "view",
305
+ "type": "function"
306
+ },
307
+ {
308
+ "inputs": [
309
+ {
310
+ "internalType": "address",
311
+ "name": "smartAccount",
312
+ "type": "address"
313
+ }
314
+ ],
315
+ "name": "isInitialized",
316
+ "outputs": [
317
+ {
318
+ "internalType": "bool",
319
+ "name": "",
320
+ "type": "bool"
321
+ }
322
+ ],
323
+ "stateMutability": "view",
324
+ "type": "function"
325
+ },
326
+ {
327
+ "inputs": [
328
+ {
329
+ "internalType": "uint256",
330
+ "name": "typeID",
331
+ "type": "uint256"
332
+ }
333
+ ],
334
+ "name": "isModuleType",
335
+ "outputs": [
336
+ {
337
+ "internalType": "bool",
338
+ "name": "",
339
+ "type": "bool"
340
+ }
341
+ ],
342
+ "stateMutability": "pure",
343
+ "type": "function"
344
+ },
345
+ {
346
+ "inputs": [
347
+ {
348
+ "internalType": "address",
349
+ "name": "",
350
+ "type": "address"
351
+ },
352
+ {
353
+ "internalType": "bytes32",
354
+ "name": "hash",
355
+ "type": "bytes32"
356
+ },
357
+ {
358
+ "internalType": "bytes",
359
+ "name": "data",
360
+ "type": "bytes"
361
+ }
362
+ ],
363
+ "name": "isValidSignatureWithSender",
364
+ "outputs": [
365
+ {
366
+ "internalType": "bytes4",
367
+ "name": "",
368
+ "type": "bytes4"
369
+ }
370
+ ],
371
+ "stateMutability": "view",
372
+ "type": "function"
373
+ },
374
+ {
375
+ "inputs": [],
376
+ "name": "name",
377
+ "outputs": [
378
+ {
379
+ "internalType": "string",
380
+ "name": "",
381
+ "type": "string"
382
+ }
383
+ ],
384
+ "stateMutability": "pure",
385
+ "type": "function"
386
+ },
387
+ {
388
+ "inputs": [
389
+ {
390
+ "internalType": "bytes",
391
+ "name": "data",
392
+ "type": "bytes"
393
+ }
394
+ ],
395
+ "name": "onInstall",
396
+ "outputs": [],
397
+ "stateMutability": "nonpayable",
398
+ "type": "function"
399
+ },
400
+ {
401
+ "inputs": [
402
+ {
403
+ "internalType": "bytes",
404
+ "name": "",
405
+ "type": "bytes"
406
+ }
407
+ ],
408
+ "name": "onUninstall",
409
+ "outputs": [],
410
+ "stateMutability": "nonpayable",
411
+ "type": "function"
412
+ },
413
+ {
414
+ "inputs": [
415
+ {
416
+ "internalType": "address",
417
+ "name": "",
418
+ "type": "address"
419
+ }
420
+ ],
421
+ "name": "ownerCount",
422
+ "outputs": [
423
+ {
424
+ "internalType": "uint256",
425
+ "name": "",
426
+ "type": "uint256"
427
+ }
428
+ ],
429
+ "stateMutability": "view",
430
+ "type": "function"
431
+ },
432
+ {
433
+ "inputs": [
434
+ {
435
+ "internalType": "address",
436
+ "name": "prevOwner",
437
+ "type": "address"
438
+ },
439
+ {
440
+ "internalType": "address",
441
+ "name": "owner",
442
+ "type": "address"
443
+ }
444
+ ],
445
+ "name": "removeOwner",
446
+ "outputs": [],
447
+ "stateMutability": "nonpayable",
448
+ "type": "function"
449
+ },
450
+ {
451
+ "inputs": [
452
+ {
453
+ "internalType": "uint256",
454
+ "name": "_threshold",
455
+ "type": "uint256"
456
+ }
457
+ ],
458
+ "name": "setThreshold",
459
+ "outputs": [],
460
+ "stateMutability": "nonpayable",
461
+ "type": "function"
462
+ },
463
+ {
464
+ "inputs": [
465
+ {
466
+ "internalType": "address",
467
+ "name": "account",
468
+ "type": "address"
469
+ }
470
+ ],
471
+ "name": "threshold",
472
+ "outputs": [
473
+ {
474
+ "internalType": "uint256",
475
+ "name": "",
476
+ "type": "uint256"
477
+ }
478
+ ],
479
+ "stateMutability": "view",
480
+ "type": "function"
481
+ },
482
+ {
483
+ "inputs": [
484
+ {
485
+ "internalType": "bytes32",
486
+ "name": "hash",
487
+ "type": "bytes32"
488
+ },
489
+ {
490
+ "internalType": "bytes",
491
+ "name": "signature",
492
+ "type": "bytes"
493
+ },
494
+ {
495
+ "internalType": "bytes",
496
+ "name": "data",
497
+ "type": "bytes"
498
+ }
499
+ ],
500
+ "name": "validateSignatureWithData",
501
+ "outputs": [
502
+ {
503
+ "internalType": "bool",
504
+ "name": "",
505
+ "type": "bool"
506
+ }
507
+ ],
508
+ "stateMutability": "view",
509
+ "type": "function"
510
+ },
511
+ {
512
+ "inputs": [
513
+ {
514
+ "components": [
515
+ {
516
+ "internalType": "address",
517
+ "name": "sender",
518
+ "type": "address"
519
+ },
520
+ {
521
+ "internalType": "uint256",
522
+ "name": "nonce",
523
+ "type": "uint256"
524
+ },
525
+ {
526
+ "internalType": "bytes",
527
+ "name": "initCode",
528
+ "type": "bytes"
529
+ },
530
+ {
531
+ "internalType": "bytes",
532
+ "name": "callData",
533
+ "type": "bytes"
534
+ },
535
+ {
536
+ "internalType": "bytes32",
537
+ "name": "accountGasLimits",
538
+ "type": "bytes32"
539
+ },
540
+ {
541
+ "internalType": "uint256",
542
+ "name": "preVerificationGas",
543
+ "type": "uint256"
544
+ },
545
+ {
546
+ "internalType": "bytes32",
547
+ "name": "gasFees",
548
+ "type": "bytes32"
549
+ },
550
+ {
551
+ "internalType": "bytes",
552
+ "name": "paymasterAndData",
553
+ "type": "bytes"
554
+ },
555
+ {
556
+ "internalType": "bytes",
557
+ "name": "signature",
558
+ "type": "bytes"
559
+ }
560
+ ],
561
+ "internalType": "struct PackedUserOperation",
562
+ "name": "userOp",
563
+ "type": "tuple"
564
+ },
565
+ {
566
+ "internalType": "bytes32",
567
+ "name": "userOpHash",
568
+ "type": "bytes32"
569
+ }
570
+ ],
571
+ "name": "validateUserOp",
572
+ "outputs": [
573
+ {
574
+ "internalType": "ERC7579ValidatorBase.ValidationData",
575
+ "name": "",
576
+ "type": "uint256"
577
+ }
578
+ ],
579
+ "stateMutability": "view",
580
+ "type": "function"
581
+ },
582
+ {
583
+ "inputs": [],
584
+ "name": "version",
585
+ "outputs": [
586
+ {
587
+ "internalType": "string",
588
+ "name": "",
589
+ "type": "string"
590
+ }
591
+ ],
592
+ "stateMutability": "pure",
593
+ "type": "function"
594
+ }
595
+ ]
596
+ }