@bloxchain/contracts 1.0.0-alpha

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 (34) hide show
  1. package/README.md +49 -0
  2. package/abi/BareBlox.abi.json +1341 -0
  3. package/abi/BaseStateMachine.abi.json +1308 -0
  4. package/abi/ControlBlox.abi.json +6210 -0
  5. package/abi/EngineBlox.abi.json +872 -0
  6. package/abi/GuardController.abi.json +3045 -0
  7. package/abi/IDefinition.abi.json +94 -0
  8. package/abi/RoleBlox.abi.json +4569 -0
  9. package/abi/RuntimeRBAC.abi.json +1857 -0
  10. package/abi/RuntimeRBACDefinitions.abi.json +133 -0
  11. package/abi/SecureBlox.abi.json +4085 -0
  12. package/abi/SecureOwnable.abi.json +4085 -0
  13. package/abi/SecureOwnableDefinitions.abi.json +354 -0
  14. package/abi/SimpleRWA20.abi.json +5545 -0
  15. package/abi/SimpleRWA20Definitions.abi.json +172 -0
  16. package/abi/SimpleVault.abi.json +5208 -0
  17. package/abi/SimpleVaultDefinitions.abi.json +250 -0
  18. package/contracts/core/access/RuntimeRBAC.sol +344 -0
  19. package/contracts/core/access/interface/IRuntimeRBAC.sol +108 -0
  20. package/contracts/core/access/lib/definitions/RuntimeRBACDefinitions.sol +168 -0
  21. package/contracts/core/base/BaseStateMachine.sol +834 -0
  22. package/contracts/core/base/interface/IBaseStateMachine.sol +153 -0
  23. package/contracts/core/execution/GuardController.sol +507 -0
  24. package/contracts/core/execution/interface/IGuardController.sol +120 -0
  25. package/contracts/core/execution/lib/definitions/GuardControllerDefinitions.sol +401 -0
  26. package/contracts/core/lib/EngineBlox.sol +2283 -0
  27. package/contracts/core/security/SecureOwnable.sol +419 -0
  28. package/contracts/core/security/interface/ISecureOwnable.sol +118 -0
  29. package/contracts/core/security/lib/definitions/SecureOwnableDefinitions.sol +757 -0
  30. package/contracts/interfaces/IDefinition.sol +40 -0
  31. package/contracts/interfaces/IEventForwarder.sol +33 -0
  32. package/contracts/interfaces/IOnActionHook.sol +79 -0
  33. package/contracts/utils/SharedValidation.sol +486 -0
  34. package/package.json +47 -0
@@ -0,0 +1,3045 @@
1
+ [
2
+ {
3
+ "inputs": [
4
+ {
5
+ "internalType": "uint256",
6
+ "name": "array1Length",
7
+ "type": "uint256"
8
+ },
9
+ {
10
+ "internalType": "uint256",
11
+ "name": "array2Length",
12
+ "type": "uint256"
13
+ }
14
+ ],
15
+ "name": "ArrayLengthMismatch",
16
+ "type": "error"
17
+ },
18
+ {
19
+ "inputs": [
20
+ {
21
+ "internalType": "uint256",
22
+ "name": "currentSize",
23
+ "type": "uint256"
24
+ },
25
+ {
26
+ "internalType": "uint256",
27
+ "name": "maxSize",
28
+ "type": "uint256"
29
+ }
30
+ ],
31
+ "name": "BatchSizeExceeded",
32
+ "type": "error"
33
+ },
34
+ {
35
+ "inputs": [
36
+ {
37
+ "internalType": "bytes32",
38
+ "name": "resourceId",
39
+ "type": "bytes32"
40
+ }
41
+ ],
42
+ "name": "CannotModifyProtected",
43
+ "type": "error"
44
+ },
45
+ {
46
+ "inputs": [
47
+ {
48
+ "internalType": "bytes4",
49
+ "name": "functionSelector",
50
+ "type": "bytes4"
51
+ }
52
+ ],
53
+ "name": "InternalFunctionNotAccessible",
54
+ "type": "error"
55
+ },
56
+ {
57
+ "inputs": [
58
+ {
59
+ "internalType": "address",
60
+ "name": "provided",
61
+ "type": "address"
62
+ }
63
+ ],
64
+ "name": "InvalidAddress",
65
+ "type": "error"
66
+ },
67
+ {
68
+ "inputs": [],
69
+ "name": "InvalidInitialization",
70
+ "type": "error"
71
+ },
72
+ {
73
+ "inputs": [
74
+ {
75
+ "internalType": "uint256",
76
+ "name": "from",
77
+ "type": "uint256"
78
+ },
79
+ {
80
+ "internalType": "uint256",
81
+ "name": "to",
82
+ "type": "uint256"
83
+ }
84
+ ],
85
+ "name": "InvalidRange",
86
+ "type": "error"
87
+ },
88
+ {
89
+ "inputs": [
90
+ {
91
+ "internalType": "address",
92
+ "name": "caller",
93
+ "type": "address"
94
+ }
95
+ ],
96
+ "name": "NoPermission",
97
+ "type": "error"
98
+ },
99
+ {
100
+ "inputs": [],
101
+ "name": "NotInitializing",
102
+ "type": "error"
103
+ },
104
+ {
105
+ "inputs": [],
106
+ "name": "NotSupported",
107
+ "type": "error"
108
+ },
109
+ {
110
+ "inputs": [
111
+ {
112
+ "internalType": "address",
113
+ "name": "caller",
114
+ "type": "address"
115
+ },
116
+ {
117
+ "internalType": "address",
118
+ "name": "contractAddress",
119
+ "type": "address"
120
+ }
121
+ ],
122
+ "name": "OnlyCallableByContract",
123
+ "type": "error"
124
+ },
125
+ {
126
+ "inputs": [
127
+ {
128
+ "internalType": "uint256",
129
+ "name": "rangeSize",
130
+ "type": "uint256"
131
+ },
132
+ {
133
+ "internalType": "uint256",
134
+ "name": "maxRangeSize",
135
+ "type": "uint256"
136
+ }
137
+ ],
138
+ "name": "RangeSizeExceeded",
139
+ "type": "error"
140
+ },
141
+ {
142
+ "inputs": [],
143
+ "name": "ReentrancyGuardReentrantCall",
144
+ "type": "error"
145
+ },
146
+ {
147
+ "inputs": [
148
+ {
149
+ "internalType": "bytes32",
150
+ "name": "resourceId",
151
+ "type": "bytes32"
152
+ }
153
+ ],
154
+ "name": "ResourceAlreadyExists",
155
+ "type": "error"
156
+ },
157
+ {
158
+ "inputs": [
159
+ {
160
+ "internalType": "bytes32",
161
+ "name": "resourceId",
162
+ "type": "bytes32"
163
+ }
164
+ ],
165
+ "name": "ResourceNotFound",
166
+ "type": "error"
167
+ },
168
+ {
169
+ "anonymous": false,
170
+ "inputs": [
171
+ {
172
+ "indexed": true,
173
+ "internalType": "enum GuardController.GuardConfigActionType",
174
+ "name": "actionType",
175
+ "type": "uint8"
176
+ },
177
+ {
178
+ "indexed": true,
179
+ "internalType": "bytes4",
180
+ "name": "functionSelector",
181
+ "type": "bytes4"
182
+ },
183
+ {
184
+ "indexed": true,
185
+ "internalType": "address",
186
+ "name": "target",
187
+ "type": "address"
188
+ },
189
+ {
190
+ "indexed": false,
191
+ "internalType": "bytes",
192
+ "name": "data",
193
+ "type": "bytes"
194
+ }
195
+ ],
196
+ "name": "GuardConfigApplied",
197
+ "type": "event"
198
+ },
199
+ {
200
+ "anonymous": false,
201
+ "inputs": [
202
+ {
203
+ "indexed": false,
204
+ "internalType": "uint64",
205
+ "name": "version",
206
+ "type": "uint64"
207
+ }
208
+ ],
209
+ "name": "Initialized",
210
+ "type": "event"
211
+ },
212
+ {
213
+ "anonymous": false,
214
+ "inputs": [
215
+ {
216
+ "indexed": true,
217
+ "internalType": "uint256",
218
+ "name": "txId",
219
+ "type": "uint256"
220
+ },
221
+ {
222
+ "indexed": true,
223
+ "internalType": "bytes32",
224
+ "name": "operationType",
225
+ "type": "bytes32"
226
+ },
227
+ {
228
+ "indexed": true,
229
+ "internalType": "address",
230
+ "name": "approver",
231
+ "type": "address"
232
+ }
233
+ ],
234
+ "name": "TransactionApproved",
235
+ "type": "event"
236
+ },
237
+ {
238
+ "anonymous": false,
239
+ "inputs": [
240
+ {
241
+ "indexed": true,
242
+ "internalType": "uint256",
243
+ "name": "txId",
244
+ "type": "uint256"
245
+ },
246
+ {
247
+ "indexed": true,
248
+ "internalType": "bytes32",
249
+ "name": "operationType",
250
+ "type": "bytes32"
251
+ },
252
+ {
253
+ "indexed": true,
254
+ "internalType": "address",
255
+ "name": "canceller",
256
+ "type": "address"
257
+ }
258
+ ],
259
+ "name": "TransactionCancelled",
260
+ "type": "event"
261
+ },
262
+ {
263
+ "anonymous": false,
264
+ "inputs": [
265
+ {
266
+ "indexed": true,
267
+ "internalType": "uint256",
268
+ "name": "txId",
269
+ "type": "uint256"
270
+ },
271
+ {
272
+ "indexed": true,
273
+ "internalType": "bytes32",
274
+ "name": "operationType",
275
+ "type": "bytes32"
276
+ },
277
+ {
278
+ "indexed": false,
279
+ "internalType": "bool",
280
+ "name": "success",
281
+ "type": "bool"
282
+ }
283
+ ],
284
+ "name": "TransactionExecuted",
285
+ "type": "event"
286
+ },
287
+ {
288
+ "anonymous": false,
289
+ "inputs": [
290
+ {
291
+ "indexed": true,
292
+ "internalType": "uint256",
293
+ "name": "txId",
294
+ "type": "uint256"
295
+ },
296
+ {
297
+ "indexed": true,
298
+ "internalType": "address",
299
+ "name": "requester",
300
+ "type": "address"
301
+ },
302
+ {
303
+ "indexed": true,
304
+ "internalType": "bytes32",
305
+ "name": "operationType",
306
+ "type": "bytes32"
307
+ },
308
+ {
309
+ "indexed": false,
310
+ "internalType": "uint256",
311
+ "name": "releaseTime",
312
+ "type": "uint256"
313
+ }
314
+ ],
315
+ "name": "TransactionRequested",
316
+ "type": "event"
317
+ },
318
+ {
319
+ "inputs": [
320
+ {
321
+ "internalType": "address",
322
+ "name": "handlerContract",
323
+ "type": "address"
324
+ },
325
+ {
326
+ "internalType": "bytes4",
327
+ "name": "handlerSelector",
328
+ "type": "bytes4"
329
+ },
330
+ {
331
+ "internalType": "enum EngineBlox.TxAction",
332
+ "name": "action",
333
+ "type": "uint8"
334
+ },
335
+ {
336
+ "internalType": "uint256",
337
+ "name": "deadline",
338
+ "type": "uint256"
339
+ },
340
+ {
341
+ "internalType": "uint256",
342
+ "name": "maxGasPrice",
343
+ "type": "uint256"
344
+ },
345
+ {
346
+ "internalType": "address",
347
+ "name": "signer",
348
+ "type": "address"
349
+ }
350
+ ],
351
+ "name": "createMetaTxParams",
352
+ "outputs": [
353
+ {
354
+ "components": [
355
+ {
356
+ "internalType": "uint256",
357
+ "name": "chainId",
358
+ "type": "uint256"
359
+ },
360
+ {
361
+ "internalType": "uint256",
362
+ "name": "nonce",
363
+ "type": "uint256"
364
+ },
365
+ {
366
+ "internalType": "address",
367
+ "name": "handlerContract",
368
+ "type": "address"
369
+ },
370
+ {
371
+ "internalType": "bytes4",
372
+ "name": "handlerSelector",
373
+ "type": "bytes4"
374
+ },
375
+ {
376
+ "internalType": "enum EngineBlox.TxAction",
377
+ "name": "action",
378
+ "type": "uint8"
379
+ },
380
+ {
381
+ "internalType": "uint256",
382
+ "name": "deadline",
383
+ "type": "uint256"
384
+ },
385
+ {
386
+ "internalType": "uint256",
387
+ "name": "maxGasPrice",
388
+ "type": "uint256"
389
+ },
390
+ {
391
+ "internalType": "address",
392
+ "name": "signer",
393
+ "type": "address"
394
+ }
395
+ ],
396
+ "internalType": "struct EngineBlox.MetaTxParams",
397
+ "name": "",
398
+ "type": "tuple"
399
+ }
400
+ ],
401
+ "stateMutability": "view",
402
+ "type": "function"
403
+ },
404
+ {
405
+ "inputs": [
406
+ {
407
+ "internalType": "bytes4",
408
+ "name": "functionSelector",
409
+ "type": "bytes4"
410
+ }
411
+ ],
412
+ "name": "functionSchemaExists",
413
+ "outputs": [
414
+ {
415
+ "internalType": "bool",
416
+ "name": "",
417
+ "type": "bool"
418
+ }
419
+ ],
420
+ "stateMutability": "view",
421
+ "type": "function"
422
+ },
423
+ {
424
+ "inputs": [
425
+ {
426
+ "internalType": "uint256",
427
+ "name": "txId",
428
+ "type": "uint256"
429
+ },
430
+ {
431
+ "components": [
432
+ {
433
+ "internalType": "uint256",
434
+ "name": "chainId",
435
+ "type": "uint256"
436
+ },
437
+ {
438
+ "internalType": "uint256",
439
+ "name": "nonce",
440
+ "type": "uint256"
441
+ },
442
+ {
443
+ "internalType": "address",
444
+ "name": "handlerContract",
445
+ "type": "address"
446
+ },
447
+ {
448
+ "internalType": "bytes4",
449
+ "name": "handlerSelector",
450
+ "type": "bytes4"
451
+ },
452
+ {
453
+ "internalType": "enum EngineBlox.TxAction",
454
+ "name": "action",
455
+ "type": "uint8"
456
+ },
457
+ {
458
+ "internalType": "uint256",
459
+ "name": "deadline",
460
+ "type": "uint256"
461
+ },
462
+ {
463
+ "internalType": "uint256",
464
+ "name": "maxGasPrice",
465
+ "type": "uint256"
466
+ },
467
+ {
468
+ "internalType": "address",
469
+ "name": "signer",
470
+ "type": "address"
471
+ }
472
+ ],
473
+ "internalType": "struct EngineBlox.MetaTxParams",
474
+ "name": "metaTxParams",
475
+ "type": "tuple"
476
+ }
477
+ ],
478
+ "name": "generateUnsignedMetaTransactionForExisting",
479
+ "outputs": [
480
+ {
481
+ "components": [
482
+ {
483
+ "components": [
484
+ {
485
+ "internalType": "uint256",
486
+ "name": "txId",
487
+ "type": "uint256"
488
+ },
489
+ {
490
+ "internalType": "uint256",
491
+ "name": "releaseTime",
492
+ "type": "uint256"
493
+ },
494
+ {
495
+ "internalType": "enum EngineBlox.TxStatus",
496
+ "name": "status",
497
+ "type": "uint8"
498
+ },
499
+ {
500
+ "components": [
501
+ {
502
+ "internalType": "address",
503
+ "name": "requester",
504
+ "type": "address"
505
+ },
506
+ {
507
+ "internalType": "address",
508
+ "name": "target",
509
+ "type": "address"
510
+ },
511
+ {
512
+ "internalType": "uint256",
513
+ "name": "value",
514
+ "type": "uint256"
515
+ },
516
+ {
517
+ "internalType": "uint256",
518
+ "name": "gasLimit",
519
+ "type": "uint256"
520
+ },
521
+ {
522
+ "internalType": "bytes32",
523
+ "name": "operationType",
524
+ "type": "bytes32"
525
+ },
526
+ {
527
+ "internalType": "bytes4",
528
+ "name": "executionSelector",
529
+ "type": "bytes4"
530
+ },
531
+ {
532
+ "internalType": "bytes",
533
+ "name": "executionParams",
534
+ "type": "bytes"
535
+ }
536
+ ],
537
+ "internalType": "struct EngineBlox.TxParams",
538
+ "name": "params",
539
+ "type": "tuple"
540
+ },
541
+ {
542
+ "internalType": "bytes32",
543
+ "name": "message",
544
+ "type": "bytes32"
545
+ },
546
+ {
547
+ "internalType": "bytes",
548
+ "name": "result",
549
+ "type": "bytes"
550
+ },
551
+ {
552
+ "components": [
553
+ {
554
+ "internalType": "address",
555
+ "name": "recipient",
556
+ "type": "address"
557
+ },
558
+ {
559
+ "internalType": "uint256",
560
+ "name": "nativeTokenAmount",
561
+ "type": "uint256"
562
+ },
563
+ {
564
+ "internalType": "address",
565
+ "name": "erc20TokenAddress",
566
+ "type": "address"
567
+ },
568
+ {
569
+ "internalType": "uint256",
570
+ "name": "erc20TokenAmount",
571
+ "type": "uint256"
572
+ }
573
+ ],
574
+ "internalType": "struct EngineBlox.PaymentDetails",
575
+ "name": "payment",
576
+ "type": "tuple"
577
+ }
578
+ ],
579
+ "internalType": "struct EngineBlox.TxRecord",
580
+ "name": "txRecord",
581
+ "type": "tuple"
582
+ },
583
+ {
584
+ "components": [
585
+ {
586
+ "internalType": "uint256",
587
+ "name": "chainId",
588
+ "type": "uint256"
589
+ },
590
+ {
591
+ "internalType": "uint256",
592
+ "name": "nonce",
593
+ "type": "uint256"
594
+ },
595
+ {
596
+ "internalType": "address",
597
+ "name": "handlerContract",
598
+ "type": "address"
599
+ },
600
+ {
601
+ "internalType": "bytes4",
602
+ "name": "handlerSelector",
603
+ "type": "bytes4"
604
+ },
605
+ {
606
+ "internalType": "enum EngineBlox.TxAction",
607
+ "name": "action",
608
+ "type": "uint8"
609
+ },
610
+ {
611
+ "internalType": "uint256",
612
+ "name": "deadline",
613
+ "type": "uint256"
614
+ },
615
+ {
616
+ "internalType": "uint256",
617
+ "name": "maxGasPrice",
618
+ "type": "uint256"
619
+ },
620
+ {
621
+ "internalType": "address",
622
+ "name": "signer",
623
+ "type": "address"
624
+ }
625
+ ],
626
+ "internalType": "struct EngineBlox.MetaTxParams",
627
+ "name": "params",
628
+ "type": "tuple"
629
+ },
630
+ {
631
+ "internalType": "bytes32",
632
+ "name": "message",
633
+ "type": "bytes32"
634
+ },
635
+ {
636
+ "internalType": "bytes",
637
+ "name": "signature",
638
+ "type": "bytes"
639
+ },
640
+ {
641
+ "internalType": "bytes",
642
+ "name": "data",
643
+ "type": "bytes"
644
+ }
645
+ ],
646
+ "internalType": "struct EngineBlox.MetaTransaction",
647
+ "name": "",
648
+ "type": "tuple"
649
+ }
650
+ ],
651
+ "stateMutability": "view",
652
+ "type": "function"
653
+ },
654
+ {
655
+ "inputs": [
656
+ {
657
+ "internalType": "address",
658
+ "name": "requester",
659
+ "type": "address"
660
+ },
661
+ {
662
+ "internalType": "address",
663
+ "name": "target",
664
+ "type": "address"
665
+ },
666
+ {
667
+ "internalType": "uint256",
668
+ "name": "value",
669
+ "type": "uint256"
670
+ },
671
+ {
672
+ "internalType": "uint256",
673
+ "name": "gasLimit",
674
+ "type": "uint256"
675
+ },
676
+ {
677
+ "internalType": "bytes32",
678
+ "name": "operationType",
679
+ "type": "bytes32"
680
+ },
681
+ {
682
+ "internalType": "bytes4",
683
+ "name": "executionSelector",
684
+ "type": "bytes4"
685
+ },
686
+ {
687
+ "internalType": "bytes",
688
+ "name": "executionParams",
689
+ "type": "bytes"
690
+ },
691
+ {
692
+ "components": [
693
+ {
694
+ "internalType": "uint256",
695
+ "name": "chainId",
696
+ "type": "uint256"
697
+ },
698
+ {
699
+ "internalType": "uint256",
700
+ "name": "nonce",
701
+ "type": "uint256"
702
+ },
703
+ {
704
+ "internalType": "address",
705
+ "name": "handlerContract",
706
+ "type": "address"
707
+ },
708
+ {
709
+ "internalType": "bytes4",
710
+ "name": "handlerSelector",
711
+ "type": "bytes4"
712
+ },
713
+ {
714
+ "internalType": "enum EngineBlox.TxAction",
715
+ "name": "action",
716
+ "type": "uint8"
717
+ },
718
+ {
719
+ "internalType": "uint256",
720
+ "name": "deadline",
721
+ "type": "uint256"
722
+ },
723
+ {
724
+ "internalType": "uint256",
725
+ "name": "maxGasPrice",
726
+ "type": "uint256"
727
+ },
728
+ {
729
+ "internalType": "address",
730
+ "name": "signer",
731
+ "type": "address"
732
+ }
733
+ ],
734
+ "internalType": "struct EngineBlox.MetaTxParams",
735
+ "name": "metaTxParams",
736
+ "type": "tuple"
737
+ }
738
+ ],
739
+ "name": "generateUnsignedMetaTransactionForNew",
740
+ "outputs": [
741
+ {
742
+ "components": [
743
+ {
744
+ "components": [
745
+ {
746
+ "internalType": "uint256",
747
+ "name": "txId",
748
+ "type": "uint256"
749
+ },
750
+ {
751
+ "internalType": "uint256",
752
+ "name": "releaseTime",
753
+ "type": "uint256"
754
+ },
755
+ {
756
+ "internalType": "enum EngineBlox.TxStatus",
757
+ "name": "status",
758
+ "type": "uint8"
759
+ },
760
+ {
761
+ "components": [
762
+ {
763
+ "internalType": "address",
764
+ "name": "requester",
765
+ "type": "address"
766
+ },
767
+ {
768
+ "internalType": "address",
769
+ "name": "target",
770
+ "type": "address"
771
+ },
772
+ {
773
+ "internalType": "uint256",
774
+ "name": "value",
775
+ "type": "uint256"
776
+ },
777
+ {
778
+ "internalType": "uint256",
779
+ "name": "gasLimit",
780
+ "type": "uint256"
781
+ },
782
+ {
783
+ "internalType": "bytes32",
784
+ "name": "operationType",
785
+ "type": "bytes32"
786
+ },
787
+ {
788
+ "internalType": "bytes4",
789
+ "name": "executionSelector",
790
+ "type": "bytes4"
791
+ },
792
+ {
793
+ "internalType": "bytes",
794
+ "name": "executionParams",
795
+ "type": "bytes"
796
+ }
797
+ ],
798
+ "internalType": "struct EngineBlox.TxParams",
799
+ "name": "params",
800
+ "type": "tuple"
801
+ },
802
+ {
803
+ "internalType": "bytes32",
804
+ "name": "message",
805
+ "type": "bytes32"
806
+ },
807
+ {
808
+ "internalType": "bytes",
809
+ "name": "result",
810
+ "type": "bytes"
811
+ },
812
+ {
813
+ "components": [
814
+ {
815
+ "internalType": "address",
816
+ "name": "recipient",
817
+ "type": "address"
818
+ },
819
+ {
820
+ "internalType": "uint256",
821
+ "name": "nativeTokenAmount",
822
+ "type": "uint256"
823
+ },
824
+ {
825
+ "internalType": "address",
826
+ "name": "erc20TokenAddress",
827
+ "type": "address"
828
+ },
829
+ {
830
+ "internalType": "uint256",
831
+ "name": "erc20TokenAmount",
832
+ "type": "uint256"
833
+ }
834
+ ],
835
+ "internalType": "struct EngineBlox.PaymentDetails",
836
+ "name": "payment",
837
+ "type": "tuple"
838
+ }
839
+ ],
840
+ "internalType": "struct EngineBlox.TxRecord",
841
+ "name": "txRecord",
842
+ "type": "tuple"
843
+ },
844
+ {
845
+ "components": [
846
+ {
847
+ "internalType": "uint256",
848
+ "name": "chainId",
849
+ "type": "uint256"
850
+ },
851
+ {
852
+ "internalType": "uint256",
853
+ "name": "nonce",
854
+ "type": "uint256"
855
+ },
856
+ {
857
+ "internalType": "address",
858
+ "name": "handlerContract",
859
+ "type": "address"
860
+ },
861
+ {
862
+ "internalType": "bytes4",
863
+ "name": "handlerSelector",
864
+ "type": "bytes4"
865
+ },
866
+ {
867
+ "internalType": "enum EngineBlox.TxAction",
868
+ "name": "action",
869
+ "type": "uint8"
870
+ },
871
+ {
872
+ "internalType": "uint256",
873
+ "name": "deadline",
874
+ "type": "uint256"
875
+ },
876
+ {
877
+ "internalType": "uint256",
878
+ "name": "maxGasPrice",
879
+ "type": "uint256"
880
+ },
881
+ {
882
+ "internalType": "address",
883
+ "name": "signer",
884
+ "type": "address"
885
+ }
886
+ ],
887
+ "internalType": "struct EngineBlox.MetaTxParams",
888
+ "name": "params",
889
+ "type": "tuple"
890
+ },
891
+ {
892
+ "internalType": "bytes32",
893
+ "name": "message",
894
+ "type": "bytes32"
895
+ },
896
+ {
897
+ "internalType": "bytes",
898
+ "name": "signature",
899
+ "type": "bytes"
900
+ },
901
+ {
902
+ "internalType": "bytes",
903
+ "name": "data",
904
+ "type": "bytes"
905
+ }
906
+ ],
907
+ "internalType": "struct EngineBlox.MetaTransaction",
908
+ "name": "",
909
+ "type": "tuple"
910
+ }
911
+ ],
912
+ "stateMutability": "view",
913
+ "type": "function"
914
+ },
915
+ {
916
+ "inputs": [
917
+ {
918
+ "internalType": "bytes32",
919
+ "name": "roleHash",
920
+ "type": "bytes32"
921
+ }
922
+ ],
923
+ "name": "getActiveRolePermissions",
924
+ "outputs": [
925
+ {
926
+ "components": [
927
+ {
928
+ "internalType": "bytes4",
929
+ "name": "functionSelector",
930
+ "type": "bytes4"
931
+ },
932
+ {
933
+ "internalType": "uint16",
934
+ "name": "grantedActionsBitmap",
935
+ "type": "uint16"
936
+ },
937
+ {
938
+ "internalType": "bytes4[]",
939
+ "name": "handlerForSelectors",
940
+ "type": "bytes4[]"
941
+ }
942
+ ],
943
+ "internalType": "struct EngineBlox.FunctionPermission[]",
944
+ "name": "",
945
+ "type": "tuple[]"
946
+ }
947
+ ],
948
+ "stateMutability": "view",
949
+ "type": "function"
950
+ },
951
+ {
952
+ "inputs": [],
953
+ "name": "getBroadcasters",
954
+ "outputs": [
955
+ {
956
+ "internalType": "address[]",
957
+ "name": "",
958
+ "type": "address[]"
959
+ }
960
+ ],
961
+ "stateMutability": "view",
962
+ "type": "function"
963
+ },
964
+ {
965
+ "inputs": [],
966
+ "name": "getPendingTransactions",
967
+ "outputs": [
968
+ {
969
+ "internalType": "uint256[]",
970
+ "name": "",
971
+ "type": "uint256[]"
972
+ }
973
+ ],
974
+ "stateMutability": "view",
975
+ "type": "function"
976
+ },
977
+ {
978
+ "inputs": [],
979
+ "name": "getRecovery",
980
+ "outputs": [
981
+ {
982
+ "internalType": "address",
983
+ "name": "",
984
+ "type": "address"
985
+ }
986
+ ],
987
+ "stateMutability": "view",
988
+ "type": "function"
989
+ },
990
+ {
991
+ "inputs": [
992
+ {
993
+ "internalType": "bytes32",
994
+ "name": "roleHash",
995
+ "type": "bytes32"
996
+ }
997
+ ],
998
+ "name": "getRole",
999
+ "outputs": [
1000
+ {
1001
+ "internalType": "string",
1002
+ "name": "roleName",
1003
+ "type": "string"
1004
+ },
1005
+ {
1006
+ "internalType": "bytes32",
1007
+ "name": "roleHashReturn",
1008
+ "type": "bytes32"
1009
+ },
1010
+ {
1011
+ "internalType": "uint256",
1012
+ "name": "maxWallets",
1013
+ "type": "uint256"
1014
+ },
1015
+ {
1016
+ "internalType": "uint256",
1017
+ "name": "walletCount",
1018
+ "type": "uint256"
1019
+ },
1020
+ {
1021
+ "internalType": "bool",
1022
+ "name": "isProtected",
1023
+ "type": "bool"
1024
+ }
1025
+ ],
1026
+ "stateMutability": "view",
1027
+ "type": "function"
1028
+ },
1029
+ {
1030
+ "inputs": [
1031
+ {
1032
+ "internalType": "address",
1033
+ "name": "signer",
1034
+ "type": "address"
1035
+ }
1036
+ ],
1037
+ "name": "getSignerNonce",
1038
+ "outputs": [
1039
+ {
1040
+ "internalType": "uint256",
1041
+ "name": "",
1042
+ "type": "uint256"
1043
+ }
1044
+ ],
1045
+ "stateMutability": "view",
1046
+ "type": "function"
1047
+ },
1048
+ {
1049
+ "inputs": [],
1050
+ "name": "getSupportedFunctions",
1051
+ "outputs": [
1052
+ {
1053
+ "internalType": "bytes4[]",
1054
+ "name": "",
1055
+ "type": "bytes4[]"
1056
+ }
1057
+ ],
1058
+ "stateMutability": "view",
1059
+ "type": "function"
1060
+ },
1061
+ {
1062
+ "inputs": [],
1063
+ "name": "getSupportedOperationTypes",
1064
+ "outputs": [
1065
+ {
1066
+ "internalType": "bytes32[]",
1067
+ "name": "",
1068
+ "type": "bytes32[]"
1069
+ }
1070
+ ],
1071
+ "stateMutability": "view",
1072
+ "type": "function"
1073
+ },
1074
+ {
1075
+ "inputs": [],
1076
+ "name": "getSupportedRoles",
1077
+ "outputs": [
1078
+ {
1079
+ "internalType": "bytes32[]",
1080
+ "name": "",
1081
+ "type": "bytes32[]"
1082
+ }
1083
+ ],
1084
+ "stateMutability": "view",
1085
+ "type": "function"
1086
+ },
1087
+ {
1088
+ "inputs": [],
1089
+ "name": "getTimeLockPeriodSec",
1090
+ "outputs": [
1091
+ {
1092
+ "internalType": "uint256",
1093
+ "name": "",
1094
+ "type": "uint256"
1095
+ }
1096
+ ],
1097
+ "stateMutability": "view",
1098
+ "type": "function"
1099
+ },
1100
+ {
1101
+ "inputs": [
1102
+ {
1103
+ "internalType": "uint256",
1104
+ "name": "txId",
1105
+ "type": "uint256"
1106
+ }
1107
+ ],
1108
+ "name": "getTransaction",
1109
+ "outputs": [
1110
+ {
1111
+ "components": [
1112
+ {
1113
+ "internalType": "uint256",
1114
+ "name": "txId",
1115
+ "type": "uint256"
1116
+ },
1117
+ {
1118
+ "internalType": "uint256",
1119
+ "name": "releaseTime",
1120
+ "type": "uint256"
1121
+ },
1122
+ {
1123
+ "internalType": "enum EngineBlox.TxStatus",
1124
+ "name": "status",
1125
+ "type": "uint8"
1126
+ },
1127
+ {
1128
+ "components": [
1129
+ {
1130
+ "internalType": "address",
1131
+ "name": "requester",
1132
+ "type": "address"
1133
+ },
1134
+ {
1135
+ "internalType": "address",
1136
+ "name": "target",
1137
+ "type": "address"
1138
+ },
1139
+ {
1140
+ "internalType": "uint256",
1141
+ "name": "value",
1142
+ "type": "uint256"
1143
+ },
1144
+ {
1145
+ "internalType": "uint256",
1146
+ "name": "gasLimit",
1147
+ "type": "uint256"
1148
+ },
1149
+ {
1150
+ "internalType": "bytes32",
1151
+ "name": "operationType",
1152
+ "type": "bytes32"
1153
+ },
1154
+ {
1155
+ "internalType": "bytes4",
1156
+ "name": "executionSelector",
1157
+ "type": "bytes4"
1158
+ },
1159
+ {
1160
+ "internalType": "bytes",
1161
+ "name": "executionParams",
1162
+ "type": "bytes"
1163
+ }
1164
+ ],
1165
+ "internalType": "struct EngineBlox.TxParams",
1166
+ "name": "params",
1167
+ "type": "tuple"
1168
+ },
1169
+ {
1170
+ "internalType": "bytes32",
1171
+ "name": "message",
1172
+ "type": "bytes32"
1173
+ },
1174
+ {
1175
+ "internalType": "bytes",
1176
+ "name": "result",
1177
+ "type": "bytes"
1178
+ },
1179
+ {
1180
+ "components": [
1181
+ {
1182
+ "internalType": "address",
1183
+ "name": "recipient",
1184
+ "type": "address"
1185
+ },
1186
+ {
1187
+ "internalType": "uint256",
1188
+ "name": "nativeTokenAmount",
1189
+ "type": "uint256"
1190
+ },
1191
+ {
1192
+ "internalType": "address",
1193
+ "name": "erc20TokenAddress",
1194
+ "type": "address"
1195
+ },
1196
+ {
1197
+ "internalType": "uint256",
1198
+ "name": "erc20TokenAmount",
1199
+ "type": "uint256"
1200
+ }
1201
+ ],
1202
+ "internalType": "struct EngineBlox.PaymentDetails",
1203
+ "name": "payment",
1204
+ "type": "tuple"
1205
+ }
1206
+ ],
1207
+ "internalType": "struct EngineBlox.TxRecord",
1208
+ "name": "",
1209
+ "type": "tuple"
1210
+ }
1211
+ ],
1212
+ "stateMutability": "view",
1213
+ "type": "function"
1214
+ },
1215
+ {
1216
+ "inputs": [
1217
+ {
1218
+ "internalType": "uint256",
1219
+ "name": "fromTxId",
1220
+ "type": "uint256"
1221
+ },
1222
+ {
1223
+ "internalType": "uint256",
1224
+ "name": "toTxId",
1225
+ "type": "uint256"
1226
+ }
1227
+ ],
1228
+ "name": "getTransactionHistory",
1229
+ "outputs": [
1230
+ {
1231
+ "components": [
1232
+ {
1233
+ "internalType": "uint256",
1234
+ "name": "txId",
1235
+ "type": "uint256"
1236
+ },
1237
+ {
1238
+ "internalType": "uint256",
1239
+ "name": "releaseTime",
1240
+ "type": "uint256"
1241
+ },
1242
+ {
1243
+ "internalType": "enum EngineBlox.TxStatus",
1244
+ "name": "status",
1245
+ "type": "uint8"
1246
+ },
1247
+ {
1248
+ "components": [
1249
+ {
1250
+ "internalType": "address",
1251
+ "name": "requester",
1252
+ "type": "address"
1253
+ },
1254
+ {
1255
+ "internalType": "address",
1256
+ "name": "target",
1257
+ "type": "address"
1258
+ },
1259
+ {
1260
+ "internalType": "uint256",
1261
+ "name": "value",
1262
+ "type": "uint256"
1263
+ },
1264
+ {
1265
+ "internalType": "uint256",
1266
+ "name": "gasLimit",
1267
+ "type": "uint256"
1268
+ },
1269
+ {
1270
+ "internalType": "bytes32",
1271
+ "name": "operationType",
1272
+ "type": "bytes32"
1273
+ },
1274
+ {
1275
+ "internalType": "bytes4",
1276
+ "name": "executionSelector",
1277
+ "type": "bytes4"
1278
+ },
1279
+ {
1280
+ "internalType": "bytes",
1281
+ "name": "executionParams",
1282
+ "type": "bytes"
1283
+ }
1284
+ ],
1285
+ "internalType": "struct EngineBlox.TxParams",
1286
+ "name": "params",
1287
+ "type": "tuple"
1288
+ },
1289
+ {
1290
+ "internalType": "bytes32",
1291
+ "name": "message",
1292
+ "type": "bytes32"
1293
+ },
1294
+ {
1295
+ "internalType": "bytes",
1296
+ "name": "result",
1297
+ "type": "bytes"
1298
+ },
1299
+ {
1300
+ "components": [
1301
+ {
1302
+ "internalType": "address",
1303
+ "name": "recipient",
1304
+ "type": "address"
1305
+ },
1306
+ {
1307
+ "internalType": "uint256",
1308
+ "name": "nativeTokenAmount",
1309
+ "type": "uint256"
1310
+ },
1311
+ {
1312
+ "internalType": "address",
1313
+ "name": "erc20TokenAddress",
1314
+ "type": "address"
1315
+ },
1316
+ {
1317
+ "internalType": "uint256",
1318
+ "name": "erc20TokenAmount",
1319
+ "type": "uint256"
1320
+ }
1321
+ ],
1322
+ "internalType": "struct EngineBlox.PaymentDetails",
1323
+ "name": "payment",
1324
+ "type": "tuple"
1325
+ }
1326
+ ],
1327
+ "internalType": "struct EngineBlox.TxRecord[]",
1328
+ "name": "",
1329
+ "type": "tuple[]"
1330
+ }
1331
+ ],
1332
+ "stateMutability": "view",
1333
+ "type": "function"
1334
+ },
1335
+ {
1336
+ "inputs": [
1337
+ {
1338
+ "internalType": "address",
1339
+ "name": "wallet",
1340
+ "type": "address"
1341
+ }
1342
+ ],
1343
+ "name": "getWalletRoles",
1344
+ "outputs": [
1345
+ {
1346
+ "internalType": "bytes32[]",
1347
+ "name": "",
1348
+ "type": "bytes32[]"
1349
+ }
1350
+ ],
1351
+ "stateMutability": "view",
1352
+ "type": "function"
1353
+ },
1354
+ {
1355
+ "inputs": [
1356
+ {
1357
+ "internalType": "bytes32",
1358
+ "name": "roleHash",
1359
+ "type": "bytes32"
1360
+ },
1361
+ {
1362
+ "internalType": "address",
1363
+ "name": "wallet",
1364
+ "type": "address"
1365
+ }
1366
+ ],
1367
+ "name": "hasRole",
1368
+ "outputs": [
1369
+ {
1370
+ "internalType": "bool",
1371
+ "name": "",
1372
+ "type": "bool"
1373
+ }
1374
+ ],
1375
+ "stateMutability": "view",
1376
+ "type": "function"
1377
+ },
1378
+ {
1379
+ "inputs": [],
1380
+ "name": "initialized",
1381
+ "outputs": [
1382
+ {
1383
+ "internalType": "bool",
1384
+ "name": "",
1385
+ "type": "bool"
1386
+ }
1387
+ ],
1388
+ "stateMutability": "view",
1389
+ "type": "function"
1390
+ },
1391
+ {
1392
+ "inputs": [
1393
+ {
1394
+ "internalType": "bytes4",
1395
+ "name": "functionSelector",
1396
+ "type": "bytes4"
1397
+ },
1398
+ {
1399
+ "internalType": "enum EngineBlox.TxAction",
1400
+ "name": "action",
1401
+ "type": "uint8"
1402
+ }
1403
+ ],
1404
+ "name": "isActionSupportedByFunction",
1405
+ "outputs": [
1406
+ {
1407
+ "internalType": "bool",
1408
+ "name": "",
1409
+ "type": "bool"
1410
+ }
1411
+ ],
1412
+ "stateMutability": "view",
1413
+ "type": "function"
1414
+ },
1415
+ {
1416
+ "inputs": [],
1417
+ "name": "owner",
1418
+ "outputs": [
1419
+ {
1420
+ "internalType": "address",
1421
+ "name": "",
1422
+ "type": "address"
1423
+ }
1424
+ ],
1425
+ "stateMutability": "view",
1426
+ "type": "function"
1427
+ },
1428
+ {
1429
+ "inputs": [
1430
+ {
1431
+ "internalType": "address",
1432
+ "name": "initialOwner",
1433
+ "type": "address"
1434
+ },
1435
+ {
1436
+ "internalType": "address",
1437
+ "name": "broadcaster",
1438
+ "type": "address"
1439
+ },
1440
+ {
1441
+ "internalType": "address",
1442
+ "name": "recovery",
1443
+ "type": "address"
1444
+ },
1445
+ {
1446
+ "internalType": "uint256",
1447
+ "name": "timeLockPeriodSec",
1448
+ "type": "uint256"
1449
+ },
1450
+ {
1451
+ "internalType": "address",
1452
+ "name": "eventForwarder",
1453
+ "type": "address"
1454
+ }
1455
+ ],
1456
+ "name": "initialize",
1457
+ "outputs": [],
1458
+ "stateMutability": "nonpayable",
1459
+ "type": "function"
1460
+ },
1461
+ {
1462
+ "inputs": [
1463
+ {
1464
+ "internalType": "bytes4",
1465
+ "name": "interfaceId",
1466
+ "type": "bytes4"
1467
+ }
1468
+ ],
1469
+ "name": "supportsInterface",
1470
+ "outputs": [
1471
+ {
1472
+ "internalType": "bool",
1473
+ "name": "",
1474
+ "type": "bool"
1475
+ }
1476
+ ],
1477
+ "stateMutability": "view",
1478
+ "type": "function"
1479
+ },
1480
+ {
1481
+ "inputs": [
1482
+ {
1483
+ "internalType": "address",
1484
+ "name": "target",
1485
+ "type": "address"
1486
+ },
1487
+ {
1488
+ "internalType": "uint256",
1489
+ "name": "value",
1490
+ "type": "uint256"
1491
+ },
1492
+ {
1493
+ "internalType": "bytes4",
1494
+ "name": "functionSelector",
1495
+ "type": "bytes4"
1496
+ },
1497
+ {
1498
+ "internalType": "bytes",
1499
+ "name": "params",
1500
+ "type": "bytes"
1501
+ },
1502
+ {
1503
+ "internalType": "uint256",
1504
+ "name": "gasLimit",
1505
+ "type": "uint256"
1506
+ },
1507
+ {
1508
+ "internalType": "bytes32",
1509
+ "name": "operationType",
1510
+ "type": "bytes32"
1511
+ }
1512
+ ],
1513
+ "name": "executeWithTimeLock",
1514
+ "outputs": [
1515
+ {
1516
+ "components": [
1517
+ {
1518
+ "internalType": "uint256",
1519
+ "name": "txId",
1520
+ "type": "uint256"
1521
+ },
1522
+ {
1523
+ "internalType": "uint256",
1524
+ "name": "releaseTime",
1525
+ "type": "uint256"
1526
+ },
1527
+ {
1528
+ "internalType": "enum EngineBlox.TxStatus",
1529
+ "name": "status",
1530
+ "type": "uint8"
1531
+ },
1532
+ {
1533
+ "components": [
1534
+ {
1535
+ "internalType": "address",
1536
+ "name": "requester",
1537
+ "type": "address"
1538
+ },
1539
+ {
1540
+ "internalType": "address",
1541
+ "name": "target",
1542
+ "type": "address"
1543
+ },
1544
+ {
1545
+ "internalType": "uint256",
1546
+ "name": "value",
1547
+ "type": "uint256"
1548
+ },
1549
+ {
1550
+ "internalType": "uint256",
1551
+ "name": "gasLimit",
1552
+ "type": "uint256"
1553
+ },
1554
+ {
1555
+ "internalType": "bytes32",
1556
+ "name": "operationType",
1557
+ "type": "bytes32"
1558
+ },
1559
+ {
1560
+ "internalType": "bytes4",
1561
+ "name": "executionSelector",
1562
+ "type": "bytes4"
1563
+ },
1564
+ {
1565
+ "internalType": "bytes",
1566
+ "name": "executionParams",
1567
+ "type": "bytes"
1568
+ }
1569
+ ],
1570
+ "internalType": "struct EngineBlox.TxParams",
1571
+ "name": "params",
1572
+ "type": "tuple"
1573
+ },
1574
+ {
1575
+ "internalType": "bytes32",
1576
+ "name": "message",
1577
+ "type": "bytes32"
1578
+ },
1579
+ {
1580
+ "internalType": "bytes",
1581
+ "name": "result",
1582
+ "type": "bytes"
1583
+ },
1584
+ {
1585
+ "components": [
1586
+ {
1587
+ "internalType": "address",
1588
+ "name": "recipient",
1589
+ "type": "address"
1590
+ },
1591
+ {
1592
+ "internalType": "uint256",
1593
+ "name": "nativeTokenAmount",
1594
+ "type": "uint256"
1595
+ },
1596
+ {
1597
+ "internalType": "address",
1598
+ "name": "erc20TokenAddress",
1599
+ "type": "address"
1600
+ },
1601
+ {
1602
+ "internalType": "uint256",
1603
+ "name": "erc20TokenAmount",
1604
+ "type": "uint256"
1605
+ }
1606
+ ],
1607
+ "internalType": "struct EngineBlox.PaymentDetails",
1608
+ "name": "payment",
1609
+ "type": "tuple"
1610
+ }
1611
+ ],
1612
+ "internalType": "struct EngineBlox.TxRecord",
1613
+ "name": "",
1614
+ "type": "tuple"
1615
+ }
1616
+ ],
1617
+ "stateMutability": "nonpayable",
1618
+ "type": "function"
1619
+ },
1620
+ {
1621
+ "inputs": [
1622
+ {
1623
+ "internalType": "uint256",
1624
+ "name": "txId",
1625
+ "type": "uint256"
1626
+ }
1627
+ ],
1628
+ "name": "approveTimeLockExecution",
1629
+ "outputs": [
1630
+ {
1631
+ "components": [
1632
+ {
1633
+ "internalType": "uint256",
1634
+ "name": "txId",
1635
+ "type": "uint256"
1636
+ },
1637
+ {
1638
+ "internalType": "uint256",
1639
+ "name": "releaseTime",
1640
+ "type": "uint256"
1641
+ },
1642
+ {
1643
+ "internalType": "enum EngineBlox.TxStatus",
1644
+ "name": "status",
1645
+ "type": "uint8"
1646
+ },
1647
+ {
1648
+ "components": [
1649
+ {
1650
+ "internalType": "address",
1651
+ "name": "requester",
1652
+ "type": "address"
1653
+ },
1654
+ {
1655
+ "internalType": "address",
1656
+ "name": "target",
1657
+ "type": "address"
1658
+ },
1659
+ {
1660
+ "internalType": "uint256",
1661
+ "name": "value",
1662
+ "type": "uint256"
1663
+ },
1664
+ {
1665
+ "internalType": "uint256",
1666
+ "name": "gasLimit",
1667
+ "type": "uint256"
1668
+ },
1669
+ {
1670
+ "internalType": "bytes32",
1671
+ "name": "operationType",
1672
+ "type": "bytes32"
1673
+ },
1674
+ {
1675
+ "internalType": "bytes4",
1676
+ "name": "executionSelector",
1677
+ "type": "bytes4"
1678
+ },
1679
+ {
1680
+ "internalType": "bytes",
1681
+ "name": "executionParams",
1682
+ "type": "bytes"
1683
+ }
1684
+ ],
1685
+ "internalType": "struct EngineBlox.TxParams",
1686
+ "name": "params",
1687
+ "type": "tuple"
1688
+ },
1689
+ {
1690
+ "internalType": "bytes32",
1691
+ "name": "message",
1692
+ "type": "bytes32"
1693
+ },
1694
+ {
1695
+ "internalType": "bytes",
1696
+ "name": "result",
1697
+ "type": "bytes"
1698
+ },
1699
+ {
1700
+ "components": [
1701
+ {
1702
+ "internalType": "address",
1703
+ "name": "recipient",
1704
+ "type": "address"
1705
+ },
1706
+ {
1707
+ "internalType": "uint256",
1708
+ "name": "nativeTokenAmount",
1709
+ "type": "uint256"
1710
+ },
1711
+ {
1712
+ "internalType": "address",
1713
+ "name": "erc20TokenAddress",
1714
+ "type": "address"
1715
+ },
1716
+ {
1717
+ "internalType": "uint256",
1718
+ "name": "erc20TokenAmount",
1719
+ "type": "uint256"
1720
+ }
1721
+ ],
1722
+ "internalType": "struct EngineBlox.PaymentDetails",
1723
+ "name": "payment",
1724
+ "type": "tuple"
1725
+ }
1726
+ ],
1727
+ "internalType": "struct EngineBlox.TxRecord",
1728
+ "name": "",
1729
+ "type": "tuple"
1730
+ }
1731
+ ],
1732
+ "stateMutability": "nonpayable",
1733
+ "type": "function"
1734
+ },
1735
+ {
1736
+ "inputs": [
1737
+ {
1738
+ "internalType": "uint256",
1739
+ "name": "txId",
1740
+ "type": "uint256"
1741
+ }
1742
+ ],
1743
+ "name": "cancelTimeLockExecution",
1744
+ "outputs": [
1745
+ {
1746
+ "components": [
1747
+ {
1748
+ "internalType": "uint256",
1749
+ "name": "txId",
1750
+ "type": "uint256"
1751
+ },
1752
+ {
1753
+ "internalType": "uint256",
1754
+ "name": "releaseTime",
1755
+ "type": "uint256"
1756
+ },
1757
+ {
1758
+ "internalType": "enum EngineBlox.TxStatus",
1759
+ "name": "status",
1760
+ "type": "uint8"
1761
+ },
1762
+ {
1763
+ "components": [
1764
+ {
1765
+ "internalType": "address",
1766
+ "name": "requester",
1767
+ "type": "address"
1768
+ },
1769
+ {
1770
+ "internalType": "address",
1771
+ "name": "target",
1772
+ "type": "address"
1773
+ },
1774
+ {
1775
+ "internalType": "uint256",
1776
+ "name": "value",
1777
+ "type": "uint256"
1778
+ },
1779
+ {
1780
+ "internalType": "uint256",
1781
+ "name": "gasLimit",
1782
+ "type": "uint256"
1783
+ },
1784
+ {
1785
+ "internalType": "bytes32",
1786
+ "name": "operationType",
1787
+ "type": "bytes32"
1788
+ },
1789
+ {
1790
+ "internalType": "bytes4",
1791
+ "name": "executionSelector",
1792
+ "type": "bytes4"
1793
+ },
1794
+ {
1795
+ "internalType": "bytes",
1796
+ "name": "executionParams",
1797
+ "type": "bytes"
1798
+ }
1799
+ ],
1800
+ "internalType": "struct EngineBlox.TxParams",
1801
+ "name": "params",
1802
+ "type": "tuple"
1803
+ },
1804
+ {
1805
+ "internalType": "bytes32",
1806
+ "name": "message",
1807
+ "type": "bytes32"
1808
+ },
1809
+ {
1810
+ "internalType": "bytes",
1811
+ "name": "result",
1812
+ "type": "bytes"
1813
+ },
1814
+ {
1815
+ "components": [
1816
+ {
1817
+ "internalType": "address",
1818
+ "name": "recipient",
1819
+ "type": "address"
1820
+ },
1821
+ {
1822
+ "internalType": "uint256",
1823
+ "name": "nativeTokenAmount",
1824
+ "type": "uint256"
1825
+ },
1826
+ {
1827
+ "internalType": "address",
1828
+ "name": "erc20TokenAddress",
1829
+ "type": "address"
1830
+ },
1831
+ {
1832
+ "internalType": "uint256",
1833
+ "name": "erc20TokenAmount",
1834
+ "type": "uint256"
1835
+ }
1836
+ ],
1837
+ "internalType": "struct EngineBlox.PaymentDetails",
1838
+ "name": "payment",
1839
+ "type": "tuple"
1840
+ }
1841
+ ],
1842
+ "internalType": "struct EngineBlox.TxRecord",
1843
+ "name": "",
1844
+ "type": "tuple"
1845
+ }
1846
+ ],
1847
+ "stateMutability": "nonpayable",
1848
+ "type": "function"
1849
+ },
1850
+ {
1851
+ "inputs": [
1852
+ {
1853
+ "components": [
1854
+ {
1855
+ "components": [
1856
+ {
1857
+ "internalType": "uint256",
1858
+ "name": "txId",
1859
+ "type": "uint256"
1860
+ },
1861
+ {
1862
+ "internalType": "uint256",
1863
+ "name": "releaseTime",
1864
+ "type": "uint256"
1865
+ },
1866
+ {
1867
+ "internalType": "enum EngineBlox.TxStatus",
1868
+ "name": "status",
1869
+ "type": "uint8"
1870
+ },
1871
+ {
1872
+ "components": [
1873
+ {
1874
+ "internalType": "address",
1875
+ "name": "requester",
1876
+ "type": "address"
1877
+ },
1878
+ {
1879
+ "internalType": "address",
1880
+ "name": "target",
1881
+ "type": "address"
1882
+ },
1883
+ {
1884
+ "internalType": "uint256",
1885
+ "name": "value",
1886
+ "type": "uint256"
1887
+ },
1888
+ {
1889
+ "internalType": "uint256",
1890
+ "name": "gasLimit",
1891
+ "type": "uint256"
1892
+ },
1893
+ {
1894
+ "internalType": "bytes32",
1895
+ "name": "operationType",
1896
+ "type": "bytes32"
1897
+ },
1898
+ {
1899
+ "internalType": "bytes4",
1900
+ "name": "executionSelector",
1901
+ "type": "bytes4"
1902
+ },
1903
+ {
1904
+ "internalType": "bytes",
1905
+ "name": "executionParams",
1906
+ "type": "bytes"
1907
+ }
1908
+ ],
1909
+ "internalType": "struct EngineBlox.TxParams",
1910
+ "name": "params",
1911
+ "type": "tuple"
1912
+ },
1913
+ {
1914
+ "internalType": "bytes32",
1915
+ "name": "message",
1916
+ "type": "bytes32"
1917
+ },
1918
+ {
1919
+ "internalType": "bytes",
1920
+ "name": "result",
1921
+ "type": "bytes"
1922
+ },
1923
+ {
1924
+ "components": [
1925
+ {
1926
+ "internalType": "address",
1927
+ "name": "recipient",
1928
+ "type": "address"
1929
+ },
1930
+ {
1931
+ "internalType": "uint256",
1932
+ "name": "nativeTokenAmount",
1933
+ "type": "uint256"
1934
+ },
1935
+ {
1936
+ "internalType": "address",
1937
+ "name": "erc20TokenAddress",
1938
+ "type": "address"
1939
+ },
1940
+ {
1941
+ "internalType": "uint256",
1942
+ "name": "erc20TokenAmount",
1943
+ "type": "uint256"
1944
+ }
1945
+ ],
1946
+ "internalType": "struct EngineBlox.PaymentDetails",
1947
+ "name": "payment",
1948
+ "type": "tuple"
1949
+ }
1950
+ ],
1951
+ "internalType": "struct EngineBlox.TxRecord",
1952
+ "name": "txRecord",
1953
+ "type": "tuple"
1954
+ },
1955
+ {
1956
+ "components": [
1957
+ {
1958
+ "internalType": "uint256",
1959
+ "name": "chainId",
1960
+ "type": "uint256"
1961
+ },
1962
+ {
1963
+ "internalType": "uint256",
1964
+ "name": "nonce",
1965
+ "type": "uint256"
1966
+ },
1967
+ {
1968
+ "internalType": "address",
1969
+ "name": "handlerContract",
1970
+ "type": "address"
1971
+ },
1972
+ {
1973
+ "internalType": "bytes4",
1974
+ "name": "handlerSelector",
1975
+ "type": "bytes4"
1976
+ },
1977
+ {
1978
+ "internalType": "enum EngineBlox.TxAction",
1979
+ "name": "action",
1980
+ "type": "uint8"
1981
+ },
1982
+ {
1983
+ "internalType": "uint256",
1984
+ "name": "deadline",
1985
+ "type": "uint256"
1986
+ },
1987
+ {
1988
+ "internalType": "uint256",
1989
+ "name": "maxGasPrice",
1990
+ "type": "uint256"
1991
+ },
1992
+ {
1993
+ "internalType": "address",
1994
+ "name": "signer",
1995
+ "type": "address"
1996
+ }
1997
+ ],
1998
+ "internalType": "struct EngineBlox.MetaTxParams",
1999
+ "name": "params",
2000
+ "type": "tuple"
2001
+ },
2002
+ {
2003
+ "internalType": "bytes32",
2004
+ "name": "message",
2005
+ "type": "bytes32"
2006
+ },
2007
+ {
2008
+ "internalType": "bytes",
2009
+ "name": "signature",
2010
+ "type": "bytes"
2011
+ },
2012
+ {
2013
+ "internalType": "bytes",
2014
+ "name": "data",
2015
+ "type": "bytes"
2016
+ }
2017
+ ],
2018
+ "internalType": "struct EngineBlox.MetaTransaction",
2019
+ "name": "metaTx",
2020
+ "type": "tuple"
2021
+ }
2022
+ ],
2023
+ "name": "approveTimeLockExecutionWithMetaTx",
2024
+ "outputs": [
2025
+ {
2026
+ "components": [
2027
+ {
2028
+ "internalType": "uint256",
2029
+ "name": "txId",
2030
+ "type": "uint256"
2031
+ },
2032
+ {
2033
+ "internalType": "uint256",
2034
+ "name": "releaseTime",
2035
+ "type": "uint256"
2036
+ },
2037
+ {
2038
+ "internalType": "enum EngineBlox.TxStatus",
2039
+ "name": "status",
2040
+ "type": "uint8"
2041
+ },
2042
+ {
2043
+ "components": [
2044
+ {
2045
+ "internalType": "address",
2046
+ "name": "requester",
2047
+ "type": "address"
2048
+ },
2049
+ {
2050
+ "internalType": "address",
2051
+ "name": "target",
2052
+ "type": "address"
2053
+ },
2054
+ {
2055
+ "internalType": "uint256",
2056
+ "name": "value",
2057
+ "type": "uint256"
2058
+ },
2059
+ {
2060
+ "internalType": "uint256",
2061
+ "name": "gasLimit",
2062
+ "type": "uint256"
2063
+ },
2064
+ {
2065
+ "internalType": "bytes32",
2066
+ "name": "operationType",
2067
+ "type": "bytes32"
2068
+ },
2069
+ {
2070
+ "internalType": "bytes4",
2071
+ "name": "executionSelector",
2072
+ "type": "bytes4"
2073
+ },
2074
+ {
2075
+ "internalType": "bytes",
2076
+ "name": "executionParams",
2077
+ "type": "bytes"
2078
+ }
2079
+ ],
2080
+ "internalType": "struct EngineBlox.TxParams",
2081
+ "name": "params",
2082
+ "type": "tuple"
2083
+ },
2084
+ {
2085
+ "internalType": "bytes32",
2086
+ "name": "message",
2087
+ "type": "bytes32"
2088
+ },
2089
+ {
2090
+ "internalType": "bytes",
2091
+ "name": "result",
2092
+ "type": "bytes"
2093
+ },
2094
+ {
2095
+ "components": [
2096
+ {
2097
+ "internalType": "address",
2098
+ "name": "recipient",
2099
+ "type": "address"
2100
+ },
2101
+ {
2102
+ "internalType": "uint256",
2103
+ "name": "nativeTokenAmount",
2104
+ "type": "uint256"
2105
+ },
2106
+ {
2107
+ "internalType": "address",
2108
+ "name": "erc20TokenAddress",
2109
+ "type": "address"
2110
+ },
2111
+ {
2112
+ "internalType": "uint256",
2113
+ "name": "erc20TokenAmount",
2114
+ "type": "uint256"
2115
+ }
2116
+ ],
2117
+ "internalType": "struct EngineBlox.PaymentDetails",
2118
+ "name": "payment",
2119
+ "type": "tuple"
2120
+ }
2121
+ ],
2122
+ "internalType": "struct EngineBlox.TxRecord",
2123
+ "name": "",
2124
+ "type": "tuple"
2125
+ }
2126
+ ],
2127
+ "stateMutability": "nonpayable",
2128
+ "type": "function"
2129
+ },
2130
+ {
2131
+ "inputs": [
2132
+ {
2133
+ "components": [
2134
+ {
2135
+ "components": [
2136
+ {
2137
+ "internalType": "uint256",
2138
+ "name": "txId",
2139
+ "type": "uint256"
2140
+ },
2141
+ {
2142
+ "internalType": "uint256",
2143
+ "name": "releaseTime",
2144
+ "type": "uint256"
2145
+ },
2146
+ {
2147
+ "internalType": "enum EngineBlox.TxStatus",
2148
+ "name": "status",
2149
+ "type": "uint8"
2150
+ },
2151
+ {
2152
+ "components": [
2153
+ {
2154
+ "internalType": "address",
2155
+ "name": "requester",
2156
+ "type": "address"
2157
+ },
2158
+ {
2159
+ "internalType": "address",
2160
+ "name": "target",
2161
+ "type": "address"
2162
+ },
2163
+ {
2164
+ "internalType": "uint256",
2165
+ "name": "value",
2166
+ "type": "uint256"
2167
+ },
2168
+ {
2169
+ "internalType": "uint256",
2170
+ "name": "gasLimit",
2171
+ "type": "uint256"
2172
+ },
2173
+ {
2174
+ "internalType": "bytes32",
2175
+ "name": "operationType",
2176
+ "type": "bytes32"
2177
+ },
2178
+ {
2179
+ "internalType": "bytes4",
2180
+ "name": "executionSelector",
2181
+ "type": "bytes4"
2182
+ },
2183
+ {
2184
+ "internalType": "bytes",
2185
+ "name": "executionParams",
2186
+ "type": "bytes"
2187
+ }
2188
+ ],
2189
+ "internalType": "struct EngineBlox.TxParams",
2190
+ "name": "params",
2191
+ "type": "tuple"
2192
+ },
2193
+ {
2194
+ "internalType": "bytes32",
2195
+ "name": "message",
2196
+ "type": "bytes32"
2197
+ },
2198
+ {
2199
+ "internalType": "bytes",
2200
+ "name": "result",
2201
+ "type": "bytes"
2202
+ },
2203
+ {
2204
+ "components": [
2205
+ {
2206
+ "internalType": "address",
2207
+ "name": "recipient",
2208
+ "type": "address"
2209
+ },
2210
+ {
2211
+ "internalType": "uint256",
2212
+ "name": "nativeTokenAmount",
2213
+ "type": "uint256"
2214
+ },
2215
+ {
2216
+ "internalType": "address",
2217
+ "name": "erc20TokenAddress",
2218
+ "type": "address"
2219
+ },
2220
+ {
2221
+ "internalType": "uint256",
2222
+ "name": "erc20TokenAmount",
2223
+ "type": "uint256"
2224
+ }
2225
+ ],
2226
+ "internalType": "struct EngineBlox.PaymentDetails",
2227
+ "name": "payment",
2228
+ "type": "tuple"
2229
+ }
2230
+ ],
2231
+ "internalType": "struct EngineBlox.TxRecord",
2232
+ "name": "txRecord",
2233
+ "type": "tuple"
2234
+ },
2235
+ {
2236
+ "components": [
2237
+ {
2238
+ "internalType": "uint256",
2239
+ "name": "chainId",
2240
+ "type": "uint256"
2241
+ },
2242
+ {
2243
+ "internalType": "uint256",
2244
+ "name": "nonce",
2245
+ "type": "uint256"
2246
+ },
2247
+ {
2248
+ "internalType": "address",
2249
+ "name": "handlerContract",
2250
+ "type": "address"
2251
+ },
2252
+ {
2253
+ "internalType": "bytes4",
2254
+ "name": "handlerSelector",
2255
+ "type": "bytes4"
2256
+ },
2257
+ {
2258
+ "internalType": "enum EngineBlox.TxAction",
2259
+ "name": "action",
2260
+ "type": "uint8"
2261
+ },
2262
+ {
2263
+ "internalType": "uint256",
2264
+ "name": "deadline",
2265
+ "type": "uint256"
2266
+ },
2267
+ {
2268
+ "internalType": "uint256",
2269
+ "name": "maxGasPrice",
2270
+ "type": "uint256"
2271
+ },
2272
+ {
2273
+ "internalType": "address",
2274
+ "name": "signer",
2275
+ "type": "address"
2276
+ }
2277
+ ],
2278
+ "internalType": "struct EngineBlox.MetaTxParams",
2279
+ "name": "params",
2280
+ "type": "tuple"
2281
+ },
2282
+ {
2283
+ "internalType": "bytes32",
2284
+ "name": "message",
2285
+ "type": "bytes32"
2286
+ },
2287
+ {
2288
+ "internalType": "bytes",
2289
+ "name": "signature",
2290
+ "type": "bytes"
2291
+ },
2292
+ {
2293
+ "internalType": "bytes",
2294
+ "name": "data",
2295
+ "type": "bytes"
2296
+ }
2297
+ ],
2298
+ "internalType": "struct EngineBlox.MetaTransaction",
2299
+ "name": "metaTx",
2300
+ "type": "tuple"
2301
+ }
2302
+ ],
2303
+ "name": "cancelTimeLockExecutionWithMetaTx",
2304
+ "outputs": [
2305
+ {
2306
+ "components": [
2307
+ {
2308
+ "internalType": "uint256",
2309
+ "name": "txId",
2310
+ "type": "uint256"
2311
+ },
2312
+ {
2313
+ "internalType": "uint256",
2314
+ "name": "releaseTime",
2315
+ "type": "uint256"
2316
+ },
2317
+ {
2318
+ "internalType": "enum EngineBlox.TxStatus",
2319
+ "name": "status",
2320
+ "type": "uint8"
2321
+ },
2322
+ {
2323
+ "components": [
2324
+ {
2325
+ "internalType": "address",
2326
+ "name": "requester",
2327
+ "type": "address"
2328
+ },
2329
+ {
2330
+ "internalType": "address",
2331
+ "name": "target",
2332
+ "type": "address"
2333
+ },
2334
+ {
2335
+ "internalType": "uint256",
2336
+ "name": "value",
2337
+ "type": "uint256"
2338
+ },
2339
+ {
2340
+ "internalType": "uint256",
2341
+ "name": "gasLimit",
2342
+ "type": "uint256"
2343
+ },
2344
+ {
2345
+ "internalType": "bytes32",
2346
+ "name": "operationType",
2347
+ "type": "bytes32"
2348
+ },
2349
+ {
2350
+ "internalType": "bytes4",
2351
+ "name": "executionSelector",
2352
+ "type": "bytes4"
2353
+ },
2354
+ {
2355
+ "internalType": "bytes",
2356
+ "name": "executionParams",
2357
+ "type": "bytes"
2358
+ }
2359
+ ],
2360
+ "internalType": "struct EngineBlox.TxParams",
2361
+ "name": "params",
2362
+ "type": "tuple"
2363
+ },
2364
+ {
2365
+ "internalType": "bytes32",
2366
+ "name": "message",
2367
+ "type": "bytes32"
2368
+ },
2369
+ {
2370
+ "internalType": "bytes",
2371
+ "name": "result",
2372
+ "type": "bytes"
2373
+ },
2374
+ {
2375
+ "components": [
2376
+ {
2377
+ "internalType": "address",
2378
+ "name": "recipient",
2379
+ "type": "address"
2380
+ },
2381
+ {
2382
+ "internalType": "uint256",
2383
+ "name": "nativeTokenAmount",
2384
+ "type": "uint256"
2385
+ },
2386
+ {
2387
+ "internalType": "address",
2388
+ "name": "erc20TokenAddress",
2389
+ "type": "address"
2390
+ },
2391
+ {
2392
+ "internalType": "uint256",
2393
+ "name": "erc20TokenAmount",
2394
+ "type": "uint256"
2395
+ }
2396
+ ],
2397
+ "internalType": "struct EngineBlox.PaymentDetails",
2398
+ "name": "payment",
2399
+ "type": "tuple"
2400
+ }
2401
+ ],
2402
+ "internalType": "struct EngineBlox.TxRecord",
2403
+ "name": "",
2404
+ "type": "tuple"
2405
+ }
2406
+ ],
2407
+ "stateMutability": "nonpayable",
2408
+ "type": "function"
2409
+ },
2410
+ {
2411
+ "inputs": [
2412
+ {
2413
+ "components": [
2414
+ {
2415
+ "components": [
2416
+ {
2417
+ "internalType": "uint256",
2418
+ "name": "txId",
2419
+ "type": "uint256"
2420
+ },
2421
+ {
2422
+ "internalType": "uint256",
2423
+ "name": "releaseTime",
2424
+ "type": "uint256"
2425
+ },
2426
+ {
2427
+ "internalType": "enum EngineBlox.TxStatus",
2428
+ "name": "status",
2429
+ "type": "uint8"
2430
+ },
2431
+ {
2432
+ "components": [
2433
+ {
2434
+ "internalType": "address",
2435
+ "name": "requester",
2436
+ "type": "address"
2437
+ },
2438
+ {
2439
+ "internalType": "address",
2440
+ "name": "target",
2441
+ "type": "address"
2442
+ },
2443
+ {
2444
+ "internalType": "uint256",
2445
+ "name": "value",
2446
+ "type": "uint256"
2447
+ },
2448
+ {
2449
+ "internalType": "uint256",
2450
+ "name": "gasLimit",
2451
+ "type": "uint256"
2452
+ },
2453
+ {
2454
+ "internalType": "bytes32",
2455
+ "name": "operationType",
2456
+ "type": "bytes32"
2457
+ },
2458
+ {
2459
+ "internalType": "bytes4",
2460
+ "name": "executionSelector",
2461
+ "type": "bytes4"
2462
+ },
2463
+ {
2464
+ "internalType": "bytes",
2465
+ "name": "executionParams",
2466
+ "type": "bytes"
2467
+ }
2468
+ ],
2469
+ "internalType": "struct EngineBlox.TxParams",
2470
+ "name": "params",
2471
+ "type": "tuple"
2472
+ },
2473
+ {
2474
+ "internalType": "bytes32",
2475
+ "name": "message",
2476
+ "type": "bytes32"
2477
+ },
2478
+ {
2479
+ "internalType": "bytes",
2480
+ "name": "result",
2481
+ "type": "bytes"
2482
+ },
2483
+ {
2484
+ "components": [
2485
+ {
2486
+ "internalType": "address",
2487
+ "name": "recipient",
2488
+ "type": "address"
2489
+ },
2490
+ {
2491
+ "internalType": "uint256",
2492
+ "name": "nativeTokenAmount",
2493
+ "type": "uint256"
2494
+ },
2495
+ {
2496
+ "internalType": "address",
2497
+ "name": "erc20TokenAddress",
2498
+ "type": "address"
2499
+ },
2500
+ {
2501
+ "internalType": "uint256",
2502
+ "name": "erc20TokenAmount",
2503
+ "type": "uint256"
2504
+ }
2505
+ ],
2506
+ "internalType": "struct EngineBlox.PaymentDetails",
2507
+ "name": "payment",
2508
+ "type": "tuple"
2509
+ }
2510
+ ],
2511
+ "internalType": "struct EngineBlox.TxRecord",
2512
+ "name": "txRecord",
2513
+ "type": "tuple"
2514
+ },
2515
+ {
2516
+ "components": [
2517
+ {
2518
+ "internalType": "uint256",
2519
+ "name": "chainId",
2520
+ "type": "uint256"
2521
+ },
2522
+ {
2523
+ "internalType": "uint256",
2524
+ "name": "nonce",
2525
+ "type": "uint256"
2526
+ },
2527
+ {
2528
+ "internalType": "address",
2529
+ "name": "handlerContract",
2530
+ "type": "address"
2531
+ },
2532
+ {
2533
+ "internalType": "bytes4",
2534
+ "name": "handlerSelector",
2535
+ "type": "bytes4"
2536
+ },
2537
+ {
2538
+ "internalType": "enum EngineBlox.TxAction",
2539
+ "name": "action",
2540
+ "type": "uint8"
2541
+ },
2542
+ {
2543
+ "internalType": "uint256",
2544
+ "name": "deadline",
2545
+ "type": "uint256"
2546
+ },
2547
+ {
2548
+ "internalType": "uint256",
2549
+ "name": "maxGasPrice",
2550
+ "type": "uint256"
2551
+ },
2552
+ {
2553
+ "internalType": "address",
2554
+ "name": "signer",
2555
+ "type": "address"
2556
+ }
2557
+ ],
2558
+ "internalType": "struct EngineBlox.MetaTxParams",
2559
+ "name": "params",
2560
+ "type": "tuple"
2561
+ },
2562
+ {
2563
+ "internalType": "bytes32",
2564
+ "name": "message",
2565
+ "type": "bytes32"
2566
+ },
2567
+ {
2568
+ "internalType": "bytes",
2569
+ "name": "signature",
2570
+ "type": "bytes"
2571
+ },
2572
+ {
2573
+ "internalType": "bytes",
2574
+ "name": "data",
2575
+ "type": "bytes"
2576
+ }
2577
+ ],
2578
+ "internalType": "struct EngineBlox.MetaTransaction",
2579
+ "name": "metaTx",
2580
+ "type": "tuple"
2581
+ }
2582
+ ],
2583
+ "name": "requestAndApproveExecution",
2584
+ "outputs": [
2585
+ {
2586
+ "components": [
2587
+ {
2588
+ "internalType": "uint256",
2589
+ "name": "txId",
2590
+ "type": "uint256"
2591
+ },
2592
+ {
2593
+ "internalType": "uint256",
2594
+ "name": "releaseTime",
2595
+ "type": "uint256"
2596
+ },
2597
+ {
2598
+ "internalType": "enum EngineBlox.TxStatus",
2599
+ "name": "status",
2600
+ "type": "uint8"
2601
+ },
2602
+ {
2603
+ "components": [
2604
+ {
2605
+ "internalType": "address",
2606
+ "name": "requester",
2607
+ "type": "address"
2608
+ },
2609
+ {
2610
+ "internalType": "address",
2611
+ "name": "target",
2612
+ "type": "address"
2613
+ },
2614
+ {
2615
+ "internalType": "uint256",
2616
+ "name": "value",
2617
+ "type": "uint256"
2618
+ },
2619
+ {
2620
+ "internalType": "uint256",
2621
+ "name": "gasLimit",
2622
+ "type": "uint256"
2623
+ },
2624
+ {
2625
+ "internalType": "bytes32",
2626
+ "name": "operationType",
2627
+ "type": "bytes32"
2628
+ },
2629
+ {
2630
+ "internalType": "bytes4",
2631
+ "name": "executionSelector",
2632
+ "type": "bytes4"
2633
+ },
2634
+ {
2635
+ "internalType": "bytes",
2636
+ "name": "executionParams",
2637
+ "type": "bytes"
2638
+ }
2639
+ ],
2640
+ "internalType": "struct EngineBlox.TxParams",
2641
+ "name": "params",
2642
+ "type": "tuple"
2643
+ },
2644
+ {
2645
+ "internalType": "bytes32",
2646
+ "name": "message",
2647
+ "type": "bytes32"
2648
+ },
2649
+ {
2650
+ "internalType": "bytes",
2651
+ "name": "result",
2652
+ "type": "bytes"
2653
+ },
2654
+ {
2655
+ "components": [
2656
+ {
2657
+ "internalType": "address",
2658
+ "name": "recipient",
2659
+ "type": "address"
2660
+ },
2661
+ {
2662
+ "internalType": "uint256",
2663
+ "name": "nativeTokenAmount",
2664
+ "type": "uint256"
2665
+ },
2666
+ {
2667
+ "internalType": "address",
2668
+ "name": "erc20TokenAddress",
2669
+ "type": "address"
2670
+ },
2671
+ {
2672
+ "internalType": "uint256",
2673
+ "name": "erc20TokenAmount",
2674
+ "type": "uint256"
2675
+ }
2676
+ ],
2677
+ "internalType": "struct EngineBlox.PaymentDetails",
2678
+ "name": "payment",
2679
+ "type": "tuple"
2680
+ }
2681
+ ],
2682
+ "internalType": "struct EngineBlox.TxRecord",
2683
+ "name": "",
2684
+ "type": "tuple"
2685
+ }
2686
+ ],
2687
+ "stateMutability": "nonpayable",
2688
+ "type": "function"
2689
+ },
2690
+ {
2691
+ "inputs": [
2692
+ {
2693
+ "components": [
2694
+ {
2695
+ "internalType": "enum GuardController.GuardConfigActionType",
2696
+ "name": "actionType",
2697
+ "type": "uint8"
2698
+ },
2699
+ {
2700
+ "internalType": "bytes",
2701
+ "name": "data",
2702
+ "type": "bytes"
2703
+ }
2704
+ ],
2705
+ "internalType": "struct GuardController.GuardConfigAction[]",
2706
+ "name": "actions",
2707
+ "type": "tuple[]"
2708
+ }
2709
+ ],
2710
+ "name": "guardConfigBatchExecutionParams",
2711
+ "outputs": [
2712
+ {
2713
+ "internalType": "bytes",
2714
+ "name": "",
2715
+ "type": "bytes"
2716
+ }
2717
+ ],
2718
+ "stateMutability": "pure",
2719
+ "type": "function"
2720
+ },
2721
+ {
2722
+ "inputs": [
2723
+ {
2724
+ "components": [
2725
+ {
2726
+ "components": [
2727
+ {
2728
+ "internalType": "uint256",
2729
+ "name": "txId",
2730
+ "type": "uint256"
2731
+ },
2732
+ {
2733
+ "internalType": "uint256",
2734
+ "name": "releaseTime",
2735
+ "type": "uint256"
2736
+ },
2737
+ {
2738
+ "internalType": "enum EngineBlox.TxStatus",
2739
+ "name": "status",
2740
+ "type": "uint8"
2741
+ },
2742
+ {
2743
+ "components": [
2744
+ {
2745
+ "internalType": "address",
2746
+ "name": "requester",
2747
+ "type": "address"
2748
+ },
2749
+ {
2750
+ "internalType": "address",
2751
+ "name": "target",
2752
+ "type": "address"
2753
+ },
2754
+ {
2755
+ "internalType": "uint256",
2756
+ "name": "value",
2757
+ "type": "uint256"
2758
+ },
2759
+ {
2760
+ "internalType": "uint256",
2761
+ "name": "gasLimit",
2762
+ "type": "uint256"
2763
+ },
2764
+ {
2765
+ "internalType": "bytes32",
2766
+ "name": "operationType",
2767
+ "type": "bytes32"
2768
+ },
2769
+ {
2770
+ "internalType": "bytes4",
2771
+ "name": "executionSelector",
2772
+ "type": "bytes4"
2773
+ },
2774
+ {
2775
+ "internalType": "bytes",
2776
+ "name": "executionParams",
2777
+ "type": "bytes"
2778
+ }
2779
+ ],
2780
+ "internalType": "struct EngineBlox.TxParams",
2781
+ "name": "params",
2782
+ "type": "tuple"
2783
+ },
2784
+ {
2785
+ "internalType": "bytes32",
2786
+ "name": "message",
2787
+ "type": "bytes32"
2788
+ },
2789
+ {
2790
+ "internalType": "bytes",
2791
+ "name": "result",
2792
+ "type": "bytes"
2793
+ },
2794
+ {
2795
+ "components": [
2796
+ {
2797
+ "internalType": "address",
2798
+ "name": "recipient",
2799
+ "type": "address"
2800
+ },
2801
+ {
2802
+ "internalType": "uint256",
2803
+ "name": "nativeTokenAmount",
2804
+ "type": "uint256"
2805
+ },
2806
+ {
2807
+ "internalType": "address",
2808
+ "name": "erc20TokenAddress",
2809
+ "type": "address"
2810
+ },
2811
+ {
2812
+ "internalType": "uint256",
2813
+ "name": "erc20TokenAmount",
2814
+ "type": "uint256"
2815
+ }
2816
+ ],
2817
+ "internalType": "struct EngineBlox.PaymentDetails",
2818
+ "name": "payment",
2819
+ "type": "tuple"
2820
+ }
2821
+ ],
2822
+ "internalType": "struct EngineBlox.TxRecord",
2823
+ "name": "txRecord",
2824
+ "type": "tuple"
2825
+ },
2826
+ {
2827
+ "components": [
2828
+ {
2829
+ "internalType": "uint256",
2830
+ "name": "chainId",
2831
+ "type": "uint256"
2832
+ },
2833
+ {
2834
+ "internalType": "uint256",
2835
+ "name": "nonce",
2836
+ "type": "uint256"
2837
+ },
2838
+ {
2839
+ "internalType": "address",
2840
+ "name": "handlerContract",
2841
+ "type": "address"
2842
+ },
2843
+ {
2844
+ "internalType": "bytes4",
2845
+ "name": "handlerSelector",
2846
+ "type": "bytes4"
2847
+ },
2848
+ {
2849
+ "internalType": "enum EngineBlox.TxAction",
2850
+ "name": "action",
2851
+ "type": "uint8"
2852
+ },
2853
+ {
2854
+ "internalType": "uint256",
2855
+ "name": "deadline",
2856
+ "type": "uint256"
2857
+ },
2858
+ {
2859
+ "internalType": "uint256",
2860
+ "name": "maxGasPrice",
2861
+ "type": "uint256"
2862
+ },
2863
+ {
2864
+ "internalType": "address",
2865
+ "name": "signer",
2866
+ "type": "address"
2867
+ }
2868
+ ],
2869
+ "internalType": "struct EngineBlox.MetaTxParams",
2870
+ "name": "params",
2871
+ "type": "tuple"
2872
+ },
2873
+ {
2874
+ "internalType": "bytes32",
2875
+ "name": "message",
2876
+ "type": "bytes32"
2877
+ },
2878
+ {
2879
+ "internalType": "bytes",
2880
+ "name": "signature",
2881
+ "type": "bytes"
2882
+ },
2883
+ {
2884
+ "internalType": "bytes",
2885
+ "name": "data",
2886
+ "type": "bytes"
2887
+ }
2888
+ ],
2889
+ "internalType": "struct EngineBlox.MetaTransaction",
2890
+ "name": "metaTx",
2891
+ "type": "tuple"
2892
+ }
2893
+ ],
2894
+ "name": "guardConfigBatchRequestAndApprove",
2895
+ "outputs": [
2896
+ {
2897
+ "components": [
2898
+ {
2899
+ "internalType": "uint256",
2900
+ "name": "txId",
2901
+ "type": "uint256"
2902
+ },
2903
+ {
2904
+ "internalType": "uint256",
2905
+ "name": "releaseTime",
2906
+ "type": "uint256"
2907
+ },
2908
+ {
2909
+ "internalType": "enum EngineBlox.TxStatus",
2910
+ "name": "status",
2911
+ "type": "uint8"
2912
+ },
2913
+ {
2914
+ "components": [
2915
+ {
2916
+ "internalType": "address",
2917
+ "name": "requester",
2918
+ "type": "address"
2919
+ },
2920
+ {
2921
+ "internalType": "address",
2922
+ "name": "target",
2923
+ "type": "address"
2924
+ },
2925
+ {
2926
+ "internalType": "uint256",
2927
+ "name": "value",
2928
+ "type": "uint256"
2929
+ },
2930
+ {
2931
+ "internalType": "uint256",
2932
+ "name": "gasLimit",
2933
+ "type": "uint256"
2934
+ },
2935
+ {
2936
+ "internalType": "bytes32",
2937
+ "name": "operationType",
2938
+ "type": "bytes32"
2939
+ },
2940
+ {
2941
+ "internalType": "bytes4",
2942
+ "name": "executionSelector",
2943
+ "type": "bytes4"
2944
+ },
2945
+ {
2946
+ "internalType": "bytes",
2947
+ "name": "executionParams",
2948
+ "type": "bytes"
2949
+ }
2950
+ ],
2951
+ "internalType": "struct EngineBlox.TxParams",
2952
+ "name": "params",
2953
+ "type": "tuple"
2954
+ },
2955
+ {
2956
+ "internalType": "bytes32",
2957
+ "name": "message",
2958
+ "type": "bytes32"
2959
+ },
2960
+ {
2961
+ "internalType": "bytes",
2962
+ "name": "result",
2963
+ "type": "bytes"
2964
+ },
2965
+ {
2966
+ "components": [
2967
+ {
2968
+ "internalType": "address",
2969
+ "name": "recipient",
2970
+ "type": "address"
2971
+ },
2972
+ {
2973
+ "internalType": "uint256",
2974
+ "name": "nativeTokenAmount",
2975
+ "type": "uint256"
2976
+ },
2977
+ {
2978
+ "internalType": "address",
2979
+ "name": "erc20TokenAddress",
2980
+ "type": "address"
2981
+ },
2982
+ {
2983
+ "internalType": "uint256",
2984
+ "name": "erc20TokenAmount",
2985
+ "type": "uint256"
2986
+ }
2987
+ ],
2988
+ "internalType": "struct EngineBlox.PaymentDetails",
2989
+ "name": "payment",
2990
+ "type": "tuple"
2991
+ }
2992
+ ],
2993
+ "internalType": "struct EngineBlox.TxRecord",
2994
+ "name": "",
2995
+ "type": "tuple"
2996
+ }
2997
+ ],
2998
+ "stateMutability": "nonpayable",
2999
+ "type": "function"
3000
+ },
3001
+ {
3002
+ "inputs": [
3003
+ {
3004
+ "components": [
3005
+ {
3006
+ "internalType": "enum GuardController.GuardConfigActionType",
3007
+ "name": "actionType",
3008
+ "type": "uint8"
3009
+ },
3010
+ {
3011
+ "internalType": "bytes",
3012
+ "name": "data",
3013
+ "type": "bytes"
3014
+ }
3015
+ ],
3016
+ "internalType": "struct GuardController.GuardConfigAction[]",
3017
+ "name": "actions",
3018
+ "type": "tuple[]"
3019
+ }
3020
+ ],
3021
+ "name": "executeGuardConfigBatch",
3022
+ "outputs": [],
3023
+ "stateMutability": "nonpayable",
3024
+ "type": "function"
3025
+ },
3026
+ {
3027
+ "inputs": [
3028
+ {
3029
+ "internalType": "bytes4",
3030
+ "name": "functionSelector",
3031
+ "type": "bytes4"
3032
+ }
3033
+ ],
3034
+ "name": "getAllowedTargets",
3035
+ "outputs": [
3036
+ {
3037
+ "internalType": "address[]",
3038
+ "name": "",
3039
+ "type": "address[]"
3040
+ }
3041
+ ],
3042
+ "stateMutability": "view",
3043
+ "type": "function"
3044
+ }
3045
+ ]