@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,904 @@
1
+ {
2
+ "abi": [
3
+ {
4
+ "inputs": [],
5
+ "stateMutability": "nonpayable",
6
+ "type": "constructor"
7
+ },
8
+ {
9
+ "inputs": [],
10
+ "name": "AccessControlBadConfirmation",
11
+ "type": "error"
12
+ },
13
+ {
14
+ "inputs": [
15
+ {
16
+ "internalType": "address",
17
+ "name": "account",
18
+ "type": "address"
19
+ },
20
+ {
21
+ "internalType": "bytes32",
22
+ "name": "neededRole",
23
+ "type": "bytes32"
24
+ }
25
+ ],
26
+ "name": "AccessControlUnauthorizedAccount",
27
+ "type": "error"
28
+ },
29
+ {
30
+ "inputs": [],
31
+ "name": "InvalidInitialization",
32
+ "type": "error"
33
+ },
34
+ {
35
+ "inputs": [],
36
+ "name": "InvalidRequestId",
37
+ "type": "error"
38
+ },
39
+ {
40
+ "inputs": [
41
+ {
42
+ "internalType": "uint256",
43
+ "name": "limit",
44
+ "type": "uint256"
45
+ },
46
+ {
47
+ "internalType": "uint256",
48
+ "name": "userLimit",
49
+ "type": "uint256"
50
+ },
51
+ {
52
+ "internalType": "uint16",
53
+ "name": "timeWindow",
54
+ "type": "uint16"
55
+ }
56
+ ],
57
+ "name": "InvalidWithdrawLimit",
58
+ "type": "error"
59
+ },
60
+ {
61
+ "inputs": [],
62
+ "name": "InvalidWithdrawLimitLength",
63
+ "type": "error"
64
+ },
65
+ {
66
+ "inputs": [],
67
+ "name": "NotInitializing",
68
+ "type": "error"
69
+ },
70
+ {
71
+ "inputs": [],
72
+ "name": "RequestIdAlreadyUsed",
73
+ "type": "error"
74
+ },
75
+ {
76
+ "inputs": [],
77
+ "name": "RequestIdBlocked",
78
+ "type": "error"
79
+ },
80
+ {
81
+ "inputs": [
82
+ {
83
+ "internalType": "address",
84
+ "name": "token",
85
+ "type": "address"
86
+ }
87
+ ],
88
+ "name": "SafeERC20FailedOperation",
89
+ "type": "error"
90
+ },
91
+ {
92
+ "inputs": [
93
+ {
94
+ "internalType": "uint256",
95
+ "name": "currentTotal",
96
+ "type": "uint256"
97
+ },
98
+ {
99
+ "internalType": "uint256",
100
+ "name": "requestedAmount",
101
+ "type": "uint256"
102
+ },
103
+ {
104
+ "internalType": "uint256",
105
+ "name": "configIndex",
106
+ "type": "uint256"
107
+ }
108
+ ],
109
+ "name": "TotalLimitExceeded",
110
+ "type": "error"
111
+ },
112
+ {
113
+ "inputs": [],
114
+ "name": "UnauthorizedSigner",
115
+ "type": "error"
116
+ },
117
+ {
118
+ "inputs": [
119
+ {
120
+ "internalType": "uint256",
121
+ "name": "currentTotal",
122
+ "type": "uint256"
123
+ },
124
+ {
125
+ "internalType": "uint256",
126
+ "name": "requestedAmount",
127
+ "type": "uint256"
128
+ },
129
+ {
130
+ "internalType": "uint256",
131
+ "name": "configIndex",
132
+ "type": "uint256"
133
+ }
134
+ ],
135
+ "name": "UserLimitExceeded",
136
+ "type": "error"
137
+ },
138
+ {
139
+ "anonymous": false,
140
+ "inputs": [
141
+ {
142
+ "indexed": false,
143
+ "internalType": "uint256",
144
+ "name": "requestId",
145
+ "type": "uint256"
146
+ }
147
+ ],
148
+ "name": "BlockRequestId",
149
+ "type": "event"
150
+ },
151
+ {
152
+ "anonymous": false,
153
+ "inputs": [
154
+ {
155
+ "indexed": true,
156
+ "internalType": "address",
157
+ "name": "delegator",
158
+ "type": "address"
159
+ },
160
+ {
161
+ "indexed": true,
162
+ "internalType": "address",
163
+ "name": "delegate",
164
+ "type": "address"
165
+ },
166
+ {
167
+ "indexed": false,
168
+ "internalType": "uint256",
169
+ "name": "allowance",
170
+ "type": "uint256"
171
+ }
172
+ ],
173
+ "name": "DelegateUpdated",
174
+ "type": "event"
175
+ },
176
+ {
177
+ "anonymous": false,
178
+ "inputs": [
179
+ {
180
+ "indexed": false,
181
+ "internalType": "uint64",
182
+ "name": "version",
183
+ "type": "uint64"
184
+ }
185
+ ],
186
+ "name": "Initialized",
187
+ "type": "event"
188
+ },
189
+ {
190
+ "anonymous": false,
191
+ "inputs": [
192
+ {
193
+ "indexed": true,
194
+ "internalType": "bytes32",
195
+ "name": "role",
196
+ "type": "bytes32"
197
+ },
198
+ {
199
+ "indexed": true,
200
+ "internalType": "bytes32",
201
+ "name": "previousAdminRole",
202
+ "type": "bytes32"
203
+ },
204
+ {
205
+ "indexed": true,
206
+ "internalType": "bytes32",
207
+ "name": "newAdminRole",
208
+ "type": "bytes32"
209
+ }
210
+ ],
211
+ "name": "RoleAdminChanged",
212
+ "type": "event"
213
+ },
214
+ {
215
+ "anonymous": false,
216
+ "inputs": [
217
+ {
218
+ "indexed": true,
219
+ "internalType": "bytes32",
220
+ "name": "role",
221
+ "type": "bytes32"
222
+ },
223
+ {
224
+ "indexed": true,
225
+ "internalType": "address",
226
+ "name": "account",
227
+ "type": "address"
228
+ },
229
+ {
230
+ "indexed": true,
231
+ "internalType": "address",
232
+ "name": "sender",
233
+ "type": "address"
234
+ }
235
+ ],
236
+ "name": "RoleGranted",
237
+ "type": "event"
238
+ },
239
+ {
240
+ "anonymous": false,
241
+ "inputs": [
242
+ {
243
+ "indexed": true,
244
+ "internalType": "bytes32",
245
+ "name": "role",
246
+ "type": "bytes32"
247
+ },
248
+ {
249
+ "indexed": true,
250
+ "internalType": "address",
251
+ "name": "account",
252
+ "type": "address"
253
+ },
254
+ {
255
+ "indexed": true,
256
+ "internalType": "address",
257
+ "name": "sender",
258
+ "type": "address"
259
+ }
260
+ ],
261
+ "name": "RoleRevoked",
262
+ "type": "event"
263
+ },
264
+ {
265
+ "anonymous": false,
266
+ "inputs": [
267
+ {
268
+ "indexed": false,
269
+ "internalType": "uint256",
270
+ "name": "requestId",
271
+ "type": "uint256"
272
+ }
273
+ ],
274
+ "name": "UnblockRequestId",
275
+ "type": "event"
276
+ },
277
+ {
278
+ "anonymous": false,
279
+ "inputs": [
280
+ {
281
+ "indexed": true,
282
+ "internalType": "address",
283
+ "name": "account",
284
+ "type": "address"
285
+ },
286
+ {
287
+ "indexed": false,
288
+ "internalType": "int256",
289
+ "name": "amount",
290
+ "type": "int256"
291
+ },
292
+ {
293
+ "indexed": false,
294
+ "internalType": "uint256",
295
+ "name": "requestId",
296
+ "type": "uint256"
297
+ }
298
+ ],
299
+ "name": "UserBalanceChanged",
300
+ "type": "event"
301
+ },
302
+ {
303
+ "anonymous": false,
304
+ "inputs": [
305
+ {
306
+ "components": [
307
+ {
308
+ "internalType": "uint256",
309
+ "name": "limit",
310
+ "type": "uint256"
311
+ },
312
+ {
313
+ "internalType": "uint256",
314
+ "name": "userLimit",
315
+ "type": "uint256"
316
+ },
317
+ {
318
+ "internalType": "uint16",
319
+ "name": "timeWindow",
320
+ "type": "uint16"
321
+ }
322
+ ],
323
+ "indexed": false,
324
+ "internalType": "struct EHMarketV3.WithdrawLimit[]",
325
+ "name": "withdrawLimits",
326
+ "type": "tuple[]"
327
+ }
328
+ ],
329
+ "name": "WithdrawLimitsUpdated",
330
+ "type": "event"
331
+ },
332
+ {
333
+ "inputs": [],
334
+ "name": "DEFAULT_ADMIN_ROLE",
335
+ "outputs": [
336
+ {
337
+ "internalType": "bytes32",
338
+ "name": "",
339
+ "type": "bytes32"
340
+ }
341
+ ],
342
+ "stateMutability": "view",
343
+ "type": "function"
344
+ },
345
+ {
346
+ "inputs": [],
347
+ "name": "MATCHER_ROLE",
348
+ "outputs": [
349
+ {
350
+ "internalType": "bytes32",
351
+ "name": "",
352
+ "type": "bytes32"
353
+ }
354
+ ],
355
+ "stateMutability": "view",
356
+ "type": "function"
357
+ },
358
+ {
359
+ "inputs": [],
360
+ "name": "MAX_LIMIT_CONFIGS",
361
+ "outputs": [
362
+ {
363
+ "internalType": "uint256",
364
+ "name": "",
365
+ "type": "uint256"
366
+ }
367
+ ],
368
+ "stateMutability": "view",
369
+ "type": "function"
370
+ },
371
+ {
372
+ "inputs": [
373
+ {
374
+ "internalType": "uint256",
375
+ "name": "requestId",
376
+ "type": "uint256"
377
+ }
378
+ ],
379
+ "name": "blockRequestId",
380
+ "outputs": [],
381
+ "stateMutability": "nonpayable",
382
+ "type": "function"
383
+ },
384
+ {
385
+ "inputs": [],
386
+ "name": "collateral",
387
+ "outputs": [
388
+ {
389
+ "internalType": "address",
390
+ "name": "",
391
+ "type": "address"
392
+ }
393
+ ],
394
+ "stateMutability": "view",
395
+ "type": "function"
396
+ },
397
+ {
398
+ "inputs": [
399
+ {
400
+ "internalType": "uint256",
401
+ "name": "amount",
402
+ "type": "uint256"
403
+ }
404
+ ],
405
+ "name": "depositAsset",
406
+ "outputs": [],
407
+ "stateMutability": "nonpayable",
408
+ "type": "function"
409
+ },
410
+ {
411
+ "inputs": [
412
+ {
413
+ "internalType": "address",
414
+ "name": "to",
415
+ "type": "address"
416
+ },
417
+ {
418
+ "internalType": "uint256",
419
+ "name": "amount",
420
+ "type": "uint256"
421
+ }
422
+ ],
423
+ "name": "depositAssetTo",
424
+ "outputs": [],
425
+ "stateMutability": "nonpayable",
426
+ "type": "function"
427
+ },
428
+ {
429
+ "inputs": [
430
+ {
431
+ "internalType": "address",
432
+ "name": "user",
433
+ "type": "address"
434
+ }
435
+ ],
436
+ "name": "getMaxWithdrawAmount",
437
+ "outputs": [
438
+ {
439
+ "internalType": "uint256",
440
+ "name": "maxAmount",
441
+ "type": "uint256"
442
+ },
443
+ {
444
+ "internalType": "uint256",
445
+ "name": "limitingIndex",
446
+ "type": "uint256"
447
+ },
448
+ {
449
+ "internalType": "bool",
450
+ "name": "isUserLimit",
451
+ "type": "bool"
452
+ }
453
+ ],
454
+ "stateMutability": "view",
455
+ "type": "function"
456
+ },
457
+ {
458
+ "inputs": [
459
+ {
460
+ "internalType": "bytes32",
461
+ "name": "role",
462
+ "type": "bytes32"
463
+ }
464
+ ],
465
+ "name": "getRoleAdmin",
466
+ "outputs": [
467
+ {
468
+ "internalType": "bytes32",
469
+ "name": "",
470
+ "type": "bytes32"
471
+ }
472
+ ],
473
+ "stateMutability": "view",
474
+ "type": "function"
475
+ },
476
+ {
477
+ "inputs": [
478
+ {
479
+ "internalType": "bytes32",
480
+ "name": "role",
481
+ "type": "bytes32"
482
+ },
483
+ {
484
+ "internalType": "uint256",
485
+ "name": "index",
486
+ "type": "uint256"
487
+ }
488
+ ],
489
+ "name": "getRoleMember",
490
+ "outputs": [
491
+ {
492
+ "internalType": "address",
493
+ "name": "",
494
+ "type": "address"
495
+ }
496
+ ],
497
+ "stateMutability": "view",
498
+ "type": "function"
499
+ },
500
+ {
501
+ "inputs": [
502
+ {
503
+ "internalType": "bytes32",
504
+ "name": "role",
505
+ "type": "bytes32"
506
+ }
507
+ ],
508
+ "name": "getRoleMemberCount",
509
+ "outputs": [
510
+ {
511
+ "internalType": "uint256",
512
+ "name": "",
513
+ "type": "uint256"
514
+ }
515
+ ],
516
+ "stateMutability": "view",
517
+ "type": "function"
518
+ },
519
+ {
520
+ "inputs": [
521
+ {
522
+ "internalType": "bytes32",
523
+ "name": "role",
524
+ "type": "bytes32"
525
+ }
526
+ ],
527
+ "name": "getRoleMembers",
528
+ "outputs": [
529
+ {
530
+ "internalType": "address[]",
531
+ "name": "",
532
+ "type": "address[]"
533
+ }
534
+ ],
535
+ "stateMutability": "view",
536
+ "type": "function"
537
+ },
538
+ {
539
+ "inputs": [
540
+ {
541
+ "internalType": "uint16",
542
+ "name": "_hours",
543
+ "type": "uint16"
544
+ },
545
+ {
546
+ "internalType": "uint256",
547
+ "name": "timestamp",
548
+ "type": "uint256"
549
+ }
550
+ ],
551
+ "name": "getTotalWithdraw",
552
+ "outputs": [
553
+ {
554
+ "internalType": "uint256",
555
+ "name": "",
556
+ "type": "uint256"
557
+ }
558
+ ],
559
+ "stateMutability": "view",
560
+ "type": "function"
561
+ },
562
+ {
563
+ "inputs": [
564
+ {
565
+ "internalType": "uint16",
566
+ "name": "_hours",
567
+ "type": "uint16"
568
+ },
569
+ {
570
+ "internalType": "uint256",
571
+ "name": "timestamp",
572
+ "type": "uint256"
573
+ },
574
+ {
575
+ "internalType": "address",
576
+ "name": "user",
577
+ "type": "address"
578
+ }
579
+ ],
580
+ "name": "getUserTotalWithdraw",
581
+ "outputs": [
582
+ {
583
+ "internalType": "uint256",
584
+ "name": "",
585
+ "type": "uint256"
586
+ }
587
+ ],
588
+ "stateMutability": "view",
589
+ "type": "function"
590
+ },
591
+ {
592
+ "inputs": [
593
+ {
594
+ "internalType": "bytes32",
595
+ "name": "role",
596
+ "type": "bytes32"
597
+ },
598
+ {
599
+ "internalType": "address",
600
+ "name": "account",
601
+ "type": "address"
602
+ }
603
+ ],
604
+ "name": "grantRole",
605
+ "outputs": [],
606
+ "stateMutability": "nonpayable",
607
+ "type": "function"
608
+ },
609
+ {
610
+ "inputs": [
611
+ {
612
+ "internalType": "bytes32",
613
+ "name": "role",
614
+ "type": "bytes32"
615
+ },
616
+ {
617
+ "internalType": "address",
618
+ "name": "account",
619
+ "type": "address"
620
+ }
621
+ ],
622
+ "name": "hasRole",
623
+ "outputs": [
624
+ {
625
+ "internalType": "bool",
626
+ "name": "",
627
+ "type": "bool"
628
+ }
629
+ ],
630
+ "stateMutability": "view",
631
+ "type": "function"
632
+ },
633
+ {
634
+ "inputs": [
635
+ {
636
+ "internalType": "uint256",
637
+ "name": "",
638
+ "type": "uint256"
639
+ }
640
+ ],
641
+ "name": "hourlyWithdrawals",
642
+ "outputs": [
643
+ {
644
+ "internalType": "uint256",
645
+ "name": "",
646
+ "type": "uint256"
647
+ }
648
+ ],
649
+ "stateMutability": "view",
650
+ "type": "function"
651
+ },
652
+ {
653
+ "inputs": [
654
+ {
655
+ "internalType": "address[]",
656
+ "name": "_matchers",
657
+ "type": "address[]"
658
+ },
659
+ {
660
+ "internalType": "address",
661
+ "name": "_collateral",
662
+ "type": "address"
663
+ },
664
+ {
665
+ "components": [
666
+ {
667
+ "internalType": "uint256",
668
+ "name": "limit",
669
+ "type": "uint256"
670
+ },
671
+ {
672
+ "internalType": "uint256",
673
+ "name": "userLimit",
674
+ "type": "uint256"
675
+ },
676
+ {
677
+ "internalType": "uint16",
678
+ "name": "timeWindow",
679
+ "type": "uint16"
680
+ }
681
+ ],
682
+ "internalType": "struct EHMarketV3.WithdrawLimit[]",
683
+ "name": "_initialWithdrawLimits",
684
+ "type": "tuple[]"
685
+ }
686
+ ],
687
+ "name": "initialize",
688
+ "outputs": [],
689
+ "stateMutability": "nonpayable",
690
+ "type": "function"
691
+ },
692
+ {
693
+ "inputs": [
694
+ {
695
+ "internalType": "bytes32",
696
+ "name": "role",
697
+ "type": "bytes32"
698
+ },
699
+ {
700
+ "internalType": "address",
701
+ "name": "callerConfirmation",
702
+ "type": "address"
703
+ }
704
+ ],
705
+ "name": "renounceRole",
706
+ "outputs": [],
707
+ "stateMutability": "nonpayable",
708
+ "type": "function"
709
+ },
710
+ {
711
+ "inputs": [
712
+ {
713
+ "internalType": "uint256",
714
+ "name": "",
715
+ "type": "uint256"
716
+ }
717
+ ],
718
+ "name": "requestIds",
719
+ "outputs": [
720
+ {
721
+ "internalType": "uint8",
722
+ "name": "",
723
+ "type": "uint8"
724
+ }
725
+ ],
726
+ "stateMutability": "view",
727
+ "type": "function"
728
+ },
729
+ {
730
+ "inputs": [
731
+ {
732
+ "internalType": "bytes32",
733
+ "name": "role",
734
+ "type": "bytes32"
735
+ },
736
+ {
737
+ "internalType": "address",
738
+ "name": "account",
739
+ "type": "address"
740
+ }
741
+ ],
742
+ "name": "revokeRole",
743
+ "outputs": [],
744
+ "stateMutability": "nonpayable",
745
+ "type": "function"
746
+ },
747
+ {
748
+ "inputs": [
749
+ {
750
+ "internalType": "address",
751
+ "name": "delegate",
752
+ "type": "address"
753
+ },
754
+ {
755
+ "internalType": "uint256",
756
+ "name": "allowance",
757
+ "type": "uint256"
758
+ }
759
+ ],
760
+ "name": "setDelegate",
761
+ "outputs": [],
762
+ "stateMutability": "nonpayable",
763
+ "type": "function"
764
+ },
765
+ {
766
+ "inputs": [
767
+ {
768
+ "components": [
769
+ {
770
+ "internalType": "uint256",
771
+ "name": "limit",
772
+ "type": "uint256"
773
+ },
774
+ {
775
+ "internalType": "uint256",
776
+ "name": "userLimit",
777
+ "type": "uint256"
778
+ },
779
+ {
780
+ "internalType": "uint16",
781
+ "name": "timeWindow",
782
+ "type": "uint16"
783
+ }
784
+ ],
785
+ "internalType": "struct EHMarketV3.WithdrawLimit[]",
786
+ "name": "_withdrawLimits",
787
+ "type": "tuple[]"
788
+ }
789
+ ],
790
+ "name": "setWithdrawLimits",
791
+ "outputs": [],
792
+ "stateMutability": "nonpayable",
793
+ "type": "function"
794
+ },
795
+ {
796
+ "inputs": [
797
+ {
798
+ "internalType": "bytes4",
799
+ "name": "interfaceId",
800
+ "type": "bytes4"
801
+ }
802
+ ],
803
+ "name": "supportsInterface",
804
+ "outputs": [
805
+ {
806
+ "internalType": "bool",
807
+ "name": "",
808
+ "type": "bool"
809
+ }
810
+ ],
811
+ "stateMutability": "view",
812
+ "type": "function"
813
+ },
814
+ {
815
+ "inputs": [
816
+ {
817
+ "internalType": "uint256",
818
+ "name": "requestId",
819
+ "type": "uint256"
820
+ }
821
+ ],
822
+ "name": "unblockRequestId",
823
+ "outputs": [],
824
+ "stateMutability": "nonpayable",
825
+ "type": "function"
826
+ },
827
+ {
828
+ "inputs": [
829
+ {
830
+ "internalType": "uint256",
831
+ "name": "",
832
+ "type": "uint256"
833
+ },
834
+ {
835
+ "internalType": "address",
836
+ "name": "",
837
+ "type": "address"
838
+ }
839
+ ],
840
+ "name": "userHourlyWithdrawals",
841
+ "outputs": [
842
+ {
843
+ "internalType": "uint256",
844
+ "name": "",
845
+ "type": "uint256"
846
+ }
847
+ ],
848
+ "stateMutability": "view",
849
+ "type": "function"
850
+ },
851
+ {
852
+ "inputs": [
853
+ {
854
+ "internalType": "address",
855
+ "name": "from",
856
+ "type": "address"
857
+ },
858
+ {
859
+ "internalType": "uint256",
860
+ "name": "amount",
861
+ "type": "uint256"
862
+ },
863
+ {
864
+ "internalType": "uint256",
865
+ "name": "requestId",
866
+ "type": "uint256"
867
+ }
868
+ ],
869
+ "name": "withdrawAsset",
870
+ "outputs": [],
871
+ "stateMutability": "nonpayable",
872
+ "type": "function"
873
+ },
874
+ {
875
+ "inputs": [
876
+ {
877
+ "internalType": "uint256",
878
+ "name": "",
879
+ "type": "uint256"
880
+ }
881
+ ],
882
+ "name": "withdrawLimits",
883
+ "outputs": [
884
+ {
885
+ "internalType": "uint256",
886
+ "name": "limit",
887
+ "type": "uint256"
888
+ },
889
+ {
890
+ "internalType": "uint256",
891
+ "name": "userLimit",
892
+ "type": "uint256"
893
+ },
894
+ {
895
+ "internalType": "uint16",
896
+ "name": "timeWindow",
897
+ "type": "uint16"
898
+ }
899
+ ],
900
+ "stateMutability": "view",
901
+ "type": "function"
902
+ }
903
+ ]
904
+ }