@bloxchain/sdk 1.0.0-alpha → 1.0.0-alpha.10

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 (119) hide show
  1. package/README.md +48 -10
  2. package/abi/{ControlBlox.abi.json → AccountBlox.abi.json} +699 -2974
  3. package/abi/BareBlox.abi.json +127 -90
  4. package/abi/BaseStateMachine.abi.json +127 -90
  5. package/abi/EngineBlox.abi.json +11 -31
  6. package/abi/GuardController.abi.json +217 -895
  7. package/abi/GuardControllerDefinitions.abi.json +380 -0
  8. package/abi/IDefinition.abi.json +19 -0
  9. package/abi/RoleBlox.abi.json +818 -2404
  10. package/abi/RuntimeRBAC.abi.json +122 -328
  11. package/abi/RuntimeRBACDefinitions.abi.json +243 -0
  12. package/abi/SecureBlox.abi.json +620 -1952
  13. package/abi/SecureOwnable.abi.json +469 -1801
  14. package/abi/SecureOwnableDefinitions.abi.json +57 -0
  15. package/abi/SimpleRWA20.abi.json +486 -1999
  16. package/abi/SimpleRWA20Definitions.abi.json +19 -0
  17. package/abi/SimpleVault.abi.json +884 -2685
  18. package/abi/SimpleVaultDefinitions.abi.json +19 -0
  19. package/dist/abi/AccountBlox.abi.json +3935 -0
  20. package/dist/abi/BareBlox.abi.json +1378 -0
  21. package/dist/abi/BaseStateMachine.abi.json +1259 -1222
  22. package/dist/abi/EngineBlox.abi.json +852 -0
  23. package/dist/abi/GuardController.abi.json +2232 -2910
  24. package/dist/abi/GuardControllerDefinitions.abi.json +380 -0
  25. package/dist/abi/IDefinition.abi.json +110 -91
  26. package/dist/abi/RoleBlox.abi.json +2983 -0
  27. package/dist/abi/RuntimeRBAC.abi.json +1540 -1746
  28. package/dist/abi/RuntimeRBACDefinitions.abi.json +376 -0
  29. package/dist/abi/SecureBlox.abi.json +2753 -0
  30. package/dist/abi/SecureOwnable.abi.json +2583 -3915
  31. package/dist/abi/SecureOwnableDefinitions.abi.json +411 -0
  32. package/dist/abi/SimpleRWA20.abi.json +4032 -0
  33. package/dist/abi/SimpleRWA20Definitions.abi.json +191 -0
  34. package/dist/abi/SimpleVault.abi.json +3407 -0
  35. package/dist/abi/SimpleVaultDefinitions.abi.json +269 -0
  36. package/dist/abi.d.ts +11 -0
  37. package/dist/abi.d.ts.map +1 -0
  38. package/dist/abi.js +10 -0
  39. package/dist/abi.js.map +1 -0
  40. package/dist/contracts/BaseStateMachine.d.ts +9 -0
  41. package/dist/contracts/BaseStateMachine.d.ts.map +1 -1
  42. package/dist/contracts/BaseStateMachine.js +12 -0
  43. package/dist/contracts/BaseStateMachine.js.map +1 -1
  44. package/dist/contracts/GuardController.d.ts +4 -4
  45. package/dist/contracts/GuardController.d.ts.map +1 -1
  46. package/dist/contracts/GuardController.js +8 -7
  47. package/dist/contracts/GuardController.js.map +1 -1
  48. package/dist/contracts/RuntimeRBAC.d.ts +4 -20
  49. package/dist/contracts/RuntimeRBAC.d.ts.map +1 -1
  50. package/dist/contracts/RuntimeRBAC.js +5 -12
  51. package/dist/contracts/RuntimeRBAC.js.map +1 -1
  52. package/dist/contracts/SecureOwnable.d.ts +3 -3
  53. package/dist/contracts/SecureOwnable.d.ts.map +1 -1
  54. package/dist/contracts/SecureOwnable.js +7 -8
  55. package/dist/contracts/SecureOwnable.js.map +1 -1
  56. package/dist/contracts/core/BaseStateMachine.d.ts +98 -0
  57. package/dist/contracts/core/BaseStateMachine.d.ts.map +1 -0
  58. package/dist/contracts/core/BaseStateMachine.js +271 -0
  59. package/dist/contracts/core/BaseStateMachine.js.map +1 -0
  60. package/dist/contracts/core/GuardController.d.ts +120 -0
  61. package/dist/contracts/core/GuardController.d.ts.map +1 -0
  62. package/dist/contracts/core/GuardController.js +150 -0
  63. package/dist/contracts/core/GuardController.js.map +1 -0
  64. package/dist/contracts/core/RuntimeRBAC.d.ts +40 -0
  65. package/dist/contracts/core/RuntimeRBAC.d.ts.map +1 -0
  66. package/dist/contracts/core/RuntimeRBAC.js +50 -0
  67. package/dist/contracts/core/RuntimeRBAC.js.map +1 -0
  68. package/dist/contracts/core/SecureOwnable.d.ts +41 -0
  69. package/dist/contracts/core/SecureOwnable.d.ts.map +1 -0
  70. package/dist/contracts/core/SecureOwnable.js +81 -0
  71. package/dist/contracts/core/SecureOwnable.js.map +1 -0
  72. package/dist/index.d.ts +6 -4
  73. package/dist/index.d.ts.map +1 -1
  74. package/dist/index.js +5 -4
  75. package/dist/index.js.map +1 -1
  76. package/dist/interfaces/base.state.machine.index.d.ts +3 -0
  77. package/dist/interfaces/base.state.machine.index.d.ts.map +1 -1
  78. package/dist/interfaces/core.access.index.d.ts +3 -14
  79. package/dist/interfaces/core.access.index.d.ts.map +1 -1
  80. package/dist/interfaces/core.execution.index.d.ts +2 -2
  81. package/dist/interfaces/core.execution.index.d.ts.map +1 -1
  82. package/dist/interfaces/core.security.index.d.ts +1 -1
  83. package/dist/interfaces/core.security.index.d.ts.map +1 -1
  84. package/dist/lib/EngineBlox.d.ts +0 -9
  85. package/dist/lib/EngineBlox.d.ts.map +1 -1
  86. package/dist/lib/EngineBlox.js +0 -9
  87. package/dist/lib/EngineBlox.js.map +1 -1
  88. package/dist/lib/definitions/GuardControllerDefinitions.d.ts +43 -0
  89. package/dist/lib/definitions/GuardControllerDefinitions.d.ts.map +1 -0
  90. package/dist/lib/definitions/GuardControllerDefinitions.js +69 -0
  91. package/dist/lib/definitions/GuardControllerDefinitions.js.map +1 -0
  92. package/dist/lib/definitions/RuntimeRBACDefinitions.d.ts +59 -0
  93. package/dist/lib/definitions/RuntimeRBACDefinitions.d.ts.map +1 -0
  94. package/dist/lib/definitions/RuntimeRBACDefinitions.js +92 -0
  95. package/dist/lib/definitions/RuntimeRBACDefinitions.js.map +1 -0
  96. package/dist/lib/definitions/SecureOwnableDefinitions.d.ts +17 -0
  97. package/dist/lib/definitions/SecureOwnableDefinitions.d.ts.map +1 -0
  98. package/dist/lib/definitions/SecureOwnableDefinitions.js +21 -0
  99. package/dist/lib/definitions/SecureOwnableDefinitions.js.map +1 -0
  100. package/dist/lib/definitions/index.d.ts +9 -0
  101. package/dist/lib/definitions/index.d.ts.map +1 -0
  102. package/dist/lib/definitions/index.js +8 -0
  103. package/dist/lib/definitions/index.js.map +1 -0
  104. package/dist/types/base.state.machine.index.d.ts +0 -1
  105. package/dist/types/base.state.machine.index.d.ts.map +1 -1
  106. package/dist/types/base.state.machine.index.js +1 -2
  107. package/dist/types/base.state.machine.index.js.map +1 -1
  108. package/dist/types/core.execution.index.d.ts +1 -1
  109. package/dist/types/core.execution.index.js +1 -1
  110. package/dist/types/core.security.index.d.ts.map +1 -1
  111. package/dist/types/core.security.index.js +2 -2
  112. package/dist/types/core.security.index.js.map +1 -1
  113. package/dist/utils/contract-errors.d.ts +15 -2
  114. package/dist/utils/contract-errors.d.ts.map +1 -1
  115. package/dist/utils/contract-errors.js +18 -4
  116. package/dist/utils/contract-errors.js.map +1 -1
  117. package/dist/utils/interface-ids.js +1 -1
  118. package/dist/utils/interface-ids.js.map +1 -1
  119. package/package.json +75 -65
@@ -0,0 +1,4032 @@
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": "bytes32",
22
+ "name": "resourceId",
23
+ "type": "bytes32"
24
+ }
25
+ ],
26
+ "name": "CannotModifyProtected",
27
+ "type": "error"
28
+ },
29
+ {
30
+ "inputs": [
31
+ {
32
+ "internalType": "address",
33
+ "name": "spender",
34
+ "type": "address"
35
+ },
36
+ {
37
+ "internalType": "uint256",
38
+ "name": "allowance",
39
+ "type": "uint256"
40
+ },
41
+ {
42
+ "internalType": "uint256",
43
+ "name": "needed",
44
+ "type": "uint256"
45
+ }
46
+ ],
47
+ "name": "ERC20InsufficientAllowance",
48
+ "type": "error"
49
+ },
50
+ {
51
+ "inputs": [
52
+ {
53
+ "internalType": "address",
54
+ "name": "sender",
55
+ "type": "address"
56
+ },
57
+ {
58
+ "internalType": "uint256",
59
+ "name": "balance",
60
+ "type": "uint256"
61
+ },
62
+ {
63
+ "internalType": "uint256",
64
+ "name": "needed",
65
+ "type": "uint256"
66
+ }
67
+ ],
68
+ "name": "ERC20InsufficientBalance",
69
+ "type": "error"
70
+ },
71
+ {
72
+ "inputs": [
73
+ {
74
+ "internalType": "address",
75
+ "name": "approver",
76
+ "type": "address"
77
+ }
78
+ ],
79
+ "name": "ERC20InvalidApprover",
80
+ "type": "error"
81
+ },
82
+ {
83
+ "inputs": [
84
+ {
85
+ "internalType": "address",
86
+ "name": "receiver",
87
+ "type": "address"
88
+ }
89
+ ],
90
+ "name": "ERC20InvalidReceiver",
91
+ "type": "error"
92
+ },
93
+ {
94
+ "inputs": [
95
+ {
96
+ "internalType": "address",
97
+ "name": "sender",
98
+ "type": "address"
99
+ }
100
+ ],
101
+ "name": "ERC20InvalidSender",
102
+ "type": "error"
103
+ },
104
+ {
105
+ "inputs": [
106
+ {
107
+ "internalType": "address",
108
+ "name": "spender",
109
+ "type": "address"
110
+ }
111
+ ],
112
+ "name": "ERC20InvalidSpender",
113
+ "type": "error"
114
+ },
115
+ {
116
+ "inputs": [
117
+ {
118
+ "internalType": "address",
119
+ "name": "provided",
120
+ "type": "address"
121
+ }
122
+ ],
123
+ "name": "InvalidAddress",
124
+ "type": "error"
125
+ },
126
+ {
127
+ "inputs": [
128
+ {
129
+ "internalType": "bytes4",
130
+ "name": "selector",
131
+ "type": "bytes4"
132
+ }
133
+ ],
134
+ "name": "InvalidHandlerSelector",
135
+ "type": "error"
136
+ },
137
+ {
138
+ "inputs": [],
139
+ "name": "InvalidInitialization",
140
+ "type": "error"
141
+ },
142
+ {
143
+ "inputs": [
144
+ {
145
+ "internalType": "bytes32",
146
+ "name": "actualType",
147
+ "type": "bytes32"
148
+ },
149
+ {
150
+ "internalType": "bytes32",
151
+ "name": "expectedType",
152
+ "type": "bytes32"
153
+ }
154
+ ],
155
+ "name": "InvalidOperationType",
156
+ "type": "error"
157
+ },
158
+ {
159
+ "inputs": [
160
+ {
161
+ "internalType": "uint256",
162
+ "name": "from",
163
+ "type": "uint256"
164
+ },
165
+ {
166
+ "internalType": "uint256",
167
+ "name": "to",
168
+ "type": "uint256"
169
+ }
170
+ ],
171
+ "name": "InvalidRange",
172
+ "type": "error"
173
+ },
174
+ {
175
+ "inputs": [
176
+ {
177
+ "internalType": "address",
178
+ "name": "caller",
179
+ "type": "address"
180
+ }
181
+ ],
182
+ "name": "NoPermission",
183
+ "type": "error"
184
+ },
185
+ {
186
+ "inputs": [],
187
+ "name": "NotInitializing",
188
+ "type": "error"
189
+ },
190
+ {
191
+ "inputs": [],
192
+ "name": "NotSupported",
193
+ "type": "error"
194
+ },
195
+ {
196
+ "inputs": [
197
+ {
198
+ "internalType": "address",
199
+ "name": "caller",
200
+ "type": "address"
201
+ },
202
+ {
203
+ "internalType": "address",
204
+ "name": "contractAddress",
205
+ "type": "address"
206
+ }
207
+ ],
208
+ "name": "OnlyCallableByContract",
209
+ "type": "error"
210
+ },
211
+ {
212
+ "inputs": [],
213
+ "name": "PendingSecureRequest",
214
+ "type": "error"
215
+ },
216
+ {
217
+ "inputs": [
218
+ {
219
+ "internalType": "uint256",
220
+ "name": "rangeSize",
221
+ "type": "uint256"
222
+ },
223
+ {
224
+ "internalType": "uint256",
225
+ "name": "maxRangeSize",
226
+ "type": "uint256"
227
+ }
228
+ ],
229
+ "name": "RangeSizeExceeded",
230
+ "type": "error"
231
+ },
232
+ {
233
+ "inputs": [],
234
+ "name": "ReentrancyGuardReentrantCall",
235
+ "type": "error"
236
+ },
237
+ {
238
+ "inputs": [
239
+ {
240
+ "internalType": "bytes32",
241
+ "name": "resourceId",
242
+ "type": "bytes32"
243
+ }
244
+ ],
245
+ "name": "ResourceNotFound",
246
+ "type": "error"
247
+ },
248
+ {
249
+ "inputs": [
250
+ {
251
+ "internalType": "address",
252
+ "name": "caller",
253
+ "type": "address"
254
+ },
255
+ {
256
+ "internalType": "address",
257
+ "name": "owner",
258
+ "type": "address"
259
+ }
260
+ ],
261
+ "name": "RestrictedOwner",
262
+ "type": "error"
263
+ },
264
+ {
265
+ "inputs": [
266
+ {
267
+ "internalType": "address",
268
+ "name": "caller",
269
+ "type": "address"
270
+ },
271
+ {
272
+ "internalType": "address",
273
+ "name": "owner",
274
+ "type": "address"
275
+ },
276
+ {
277
+ "internalType": "address",
278
+ "name": "recovery",
279
+ "type": "address"
280
+ }
281
+ ],
282
+ "name": "RestrictedOwnerRecovery",
283
+ "type": "error"
284
+ },
285
+ {
286
+ "inputs": [
287
+ {
288
+ "internalType": "address",
289
+ "name": "caller",
290
+ "type": "address"
291
+ },
292
+ {
293
+ "internalType": "address",
294
+ "name": "recovery",
295
+ "type": "address"
296
+ }
297
+ ],
298
+ "name": "RestrictedRecovery",
299
+ "type": "error"
300
+ },
301
+ {
302
+ "anonymous": false,
303
+ "inputs": [
304
+ {
305
+ "indexed": true,
306
+ "internalType": "address",
307
+ "name": "owner",
308
+ "type": "address"
309
+ },
310
+ {
311
+ "indexed": true,
312
+ "internalType": "address",
313
+ "name": "spender",
314
+ "type": "address"
315
+ },
316
+ {
317
+ "indexed": false,
318
+ "internalType": "uint256",
319
+ "name": "value",
320
+ "type": "uint256"
321
+ }
322
+ ],
323
+ "name": "Approval",
324
+ "type": "event"
325
+ },
326
+ {
327
+ "anonymous": false,
328
+ "inputs": [
329
+ {
330
+ "indexed": true,
331
+ "internalType": "bytes4",
332
+ "name": "functionSelector",
333
+ "type": "bytes4"
334
+ },
335
+ {
336
+ "indexed": false,
337
+ "internalType": "bytes",
338
+ "name": "data",
339
+ "type": "bytes"
340
+ }
341
+ ],
342
+ "name": "ComponentEvent",
343
+ "type": "event"
344
+ },
345
+ {
346
+ "anonymous": false,
347
+ "inputs": [
348
+ {
349
+ "indexed": false,
350
+ "internalType": "uint64",
351
+ "name": "version",
352
+ "type": "uint64"
353
+ }
354
+ ],
355
+ "name": "Initialized",
356
+ "type": "event"
357
+ },
358
+ {
359
+ "anonymous": false,
360
+ "inputs": [
361
+ {
362
+ "indexed": true,
363
+ "internalType": "address",
364
+ "name": "from",
365
+ "type": "address"
366
+ },
367
+ {
368
+ "indexed": false,
369
+ "internalType": "uint256",
370
+ "name": "amount",
371
+ "type": "uint256"
372
+ }
373
+ ],
374
+ "name": "TokensBurned",
375
+ "type": "event"
376
+ },
377
+ {
378
+ "anonymous": false,
379
+ "inputs": [
380
+ {
381
+ "indexed": true,
382
+ "internalType": "address",
383
+ "name": "to",
384
+ "type": "address"
385
+ },
386
+ {
387
+ "indexed": false,
388
+ "internalType": "uint256",
389
+ "name": "amount",
390
+ "type": "uint256"
391
+ }
392
+ ],
393
+ "name": "TokensMinted",
394
+ "type": "event"
395
+ },
396
+ {
397
+ "anonymous": false,
398
+ "inputs": [
399
+ {
400
+ "indexed": true,
401
+ "internalType": "address",
402
+ "name": "from",
403
+ "type": "address"
404
+ },
405
+ {
406
+ "indexed": true,
407
+ "internalType": "address",
408
+ "name": "to",
409
+ "type": "address"
410
+ },
411
+ {
412
+ "indexed": false,
413
+ "internalType": "uint256",
414
+ "name": "value",
415
+ "type": "uint256"
416
+ }
417
+ ],
418
+ "name": "Transfer",
419
+ "type": "event"
420
+ },
421
+ {
422
+ "inputs": [
423
+ {
424
+ "internalType": "address",
425
+ "name": "owner",
426
+ "type": "address"
427
+ },
428
+ {
429
+ "internalType": "address",
430
+ "name": "spender",
431
+ "type": "address"
432
+ }
433
+ ],
434
+ "name": "allowance",
435
+ "outputs": [
436
+ {
437
+ "internalType": "uint256",
438
+ "name": "",
439
+ "type": "uint256"
440
+ }
441
+ ],
442
+ "stateMutability": "view",
443
+ "type": "function"
444
+ },
445
+ {
446
+ "inputs": [
447
+ {
448
+ "internalType": "address",
449
+ "name": "spender",
450
+ "type": "address"
451
+ },
452
+ {
453
+ "internalType": "uint256",
454
+ "name": "value",
455
+ "type": "uint256"
456
+ }
457
+ ],
458
+ "name": "approve",
459
+ "outputs": [
460
+ {
461
+ "internalType": "bool",
462
+ "name": "",
463
+ "type": "bool"
464
+ }
465
+ ],
466
+ "stateMutability": "nonpayable",
467
+ "type": "function"
468
+ },
469
+ {
470
+ "inputs": [
471
+ {
472
+ "internalType": "address",
473
+ "name": "account",
474
+ "type": "address"
475
+ }
476
+ ],
477
+ "name": "balanceOf",
478
+ "outputs": [
479
+ {
480
+ "internalType": "uint256",
481
+ "name": "",
482
+ "type": "uint256"
483
+ }
484
+ ],
485
+ "stateMutability": "view",
486
+ "type": "function"
487
+ },
488
+ {
489
+ "inputs": [
490
+ {
491
+ "internalType": "uint256",
492
+ "name": "value",
493
+ "type": "uint256"
494
+ }
495
+ ],
496
+ "name": "burn",
497
+ "outputs": [],
498
+ "stateMutability": "nonpayable",
499
+ "type": "function"
500
+ },
501
+ {
502
+ "inputs": [
503
+ {
504
+ "internalType": "address",
505
+ "name": "account",
506
+ "type": "address"
507
+ },
508
+ {
509
+ "internalType": "uint256",
510
+ "name": "value",
511
+ "type": "uint256"
512
+ }
513
+ ],
514
+ "name": "burnFrom",
515
+ "outputs": [],
516
+ "stateMutability": "nonpayable",
517
+ "type": "function"
518
+ },
519
+ {
520
+ "inputs": [
521
+ {
522
+ "internalType": "address",
523
+ "name": "handlerContract",
524
+ "type": "address"
525
+ },
526
+ {
527
+ "internalType": "bytes4",
528
+ "name": "handlerSelector",
529
+ "type": "bytes4"
530
+ },
531
+ {
532
+ "internalType": "enum EngineBlox.TxAction",
533
+ "name": "action",
534
+ "type": "uint8"
535
+ },
536
+ {
537
+ "internalType": "uint256",
538
+ "name": "deadline",
539
+ "type": "uint256"
540
+ },
541
+ {
542
+ "internalType": "uint256",
543
+ "name": "maxGasPrice",
544
+ "type": "uint256"
545
+ },
546
+ {
547
+ "internalType": "address",
548
+ "name": "signer",
549
+ "type": "address"
550
+ }
551
+ ],
552
+ "name": "createMetaTxParams",
553
+ "outputs": [
554
+ {
555
+ "components": [
556
+ {
557
+ "internalType": "uint256",
558
+ "name": "chainId",
559
+ "type": "uint256"
560
+ },
561
+ {
562
+ "internalType": "uint256",
563
+ "name": "nonce",
564
+ "type": "uint256"
565
+ },
566
+ {
567
+ "internalType": "address",
568
+ "name": "handlerContract",
569
+ "type": "address"
570
+ },
571
+ {
572
+ "internalType": "bytes4",
573
+ "name": "handlerSelector",
574
+ "type": "bytes4"
575
+ },
576
+ {
577
+ "internalType": "enum EngineBlox.TxAction",
578
+ "name": "action",
579
+ "type": "uint8"
580
+ },
581
+ {
582
+ "internalType": "uint256",
583
+ "name": "deadline",
584
+ "type": "uint256"
585
+ },
586
+ {
587
+ "internalType": "uint256",
588
+ "name": "maxGasPrice",
589
+ "type": "uint256"
590
+ },
591
+ {
592
+ "internalType": "address",
593
+ "name": "signer",
594
+ "type": "address"
595
+ }
596
+ ],
597
+ "internalType": "struct EngineBlox.MetaTxParams",
598
+ "name": "",
599
+ "type": "tuple"
600
+ }
601
+ ],
602
+ "stateMutability": "view",
603
+ "type": "function"
604
+ },
605
+ {
606
+ "inputs": [],
607
+ "name": "decimals",
608
+ "outputs": [
609
+ {
610
+ "internalType": "uint8",
611
+ "name": "",
612
+ "type": "uint8"
613
+ }
614
+ ],
615
+ "stateMutability": "view",
616
+ "type": "function"
617
+ },
618
+ {
619
+ "inputs": [
620
+ {
621
+ "internalType": "address",
622
+ "name": "newBroadcaster",
623
+ "type": "address"
624
+ },
625
+ {
626
+ "internalType": "uint256",
627
+ "name": "location",
628
+ "type": "uint256"
629
+ }
630
+ ],
631
+ "name": "executeBroadcasterUpdate",
632
+ "outputs": [],
633
+ "stateMutability": "nonpayable",
634
+ "type": "function"
635
+ },
636
+ {
637
+ "inputs": [
638
+ {
639
+ "internalType": "address",
640
+ "name": "newRecoveryAddress",
641
+ "type": "address"
642
+ }
643
+ ],
644
+ "name": "executeRecoveryUpdate",
645
+ "outputs": [],
646
+ "stateMutability": "nonpayable",
647
+ "type": "function"
648
+ },
649
+ {
650
+ "inputs": [
651
+ {
652
+ "internalType": "uint256",
653
+ "name": "newTimeLockPeriodSec",
654
+ "type": "uint256"
655
+ }
656
+ ],
657
+ "name": "executeTimeLockUpdate",
658
+ "outputs": [],
659
+ "stateMutability": "nonpayable",
660
+ "type": "function"
661
+ },
662
+ {
663
+ "inputs": [
664
+ {
665
+ "internalType": "address",
666
+ "name": "newOwner",
667
+ "type": "address"
668
+ }
669
+ ],
670
+ "name": "executeTransferOwnership",
671
+ "outputs": [],
672
+ "stateMutability": "nonpayable",
673
+ "type": "function"
674
+ },
675
+ {
676
+ "inputs": [
677
+ {
678
+ "internalType": "bytes4",
679
+ "name": "functionSelector",
680
+ "type": "bytes4"
681
+ }
682
+ ],
683
+ "name": "functionSchemaExists",
684
+ "outputs": [
685
+ {
686
+ "internalType": "bool",
687
+ "name": "",
688
+ "type": "bool"
689
+ }
690
+ ],
691
+ "stateMutability": "view",
692
+ "type": "function"
693
+ },
694
+ {
695
+ "inputs": [
696
+ {
697
+ "internalType": "uint256",
698
+ "name": "txId",
699
+ "type": "uint256"
700
+ },
701
+ {
702
+ "components": [
703
+ {
704
+ "internalType": "uint256",
705
+ "name": "chainId",
706
+ "type": "uint256"
707
+ },
708
+ {
709
+ "internalType": "uint256",
710
+ "name": "nonce",
711
+ "type": "uint256"
712
+ },
713
+ {
714
+ "internalType": "address",
715
+ "name": "handlerContract",
716
+ "type": "address"
717
+ },
718
+ {
719
+ "internalType": "bytes4",
720
+ "name": "handlerSelector",
721
+ "type": "bytes4"
722
+ },
723
+ {
724
+ "internalType": "enum EngineBlox.TxAction",
725
+ "name": "action",
726
+ "type": "uint8"
727
+ },
728
+ {
729
+ "internalType": "uint256",
730
+ "name": "deadline",
731
+ "type": "uint256"
732
+ },
733
+ {
734
+ "internalType": "uint256",
735
+ "name": "maxGasPrice",
736
+ "type": "uint256"
737
+ },
738
+ {
739
+ "internalType": "address",
740
+ "name": "signer",
741
+ "type": "address"
742
+ }
743
+ ],
744
+ "internalType": "struct EngineBlox.MetaTxParams",
745
+ "name": "metaTxParams",
746
+ "type": "tuple"
747
+ }
748
+ ],
749
+ "name": "generateUnsignedMetaTransactionForExisting",
750
+ "outputs": [
751
+ {
752
+ "components": [
753
+ {
754
+ "components": [
755
+ {
756
+ "internalType": "uint256",
757
+ "name": "txId",
758
+ "type": "uint256"
759
+ },
760
+ {
761
+ "internalType": "uint256",
762
+ "name": "releaseTime",
763
+ "type": "uint256"
764
+ },
765
+ {
766
+ "internalType": "enum EngineBlox.TxStatus",
767
+ "name": "status",
768
+ "type": "uint8"
769
+ },
770
+ {
771
+ "components": [
772
+ {
773
+ "internalType": "address",
774
+ "name": "requester",
775
+ "type": "address"
776
+ },
777
+ {
778
+ "internalType": "address",
779
+ "name": "target",
780
+ "type": "address"
781
+ },
782
+ {
783
+ "internalType": "uint256",
784
+ "name": "value",
785
+ "type": "uint256"
786
+ },
787
+ {
788
+ "internalType": "uint256",
789
+ "name": "gasLimit",
790
+ "type": "uint256"
791
+ },
792
+ {
793
+ "internalType": "bytes32",
794
+ "name": "operationType",
795
+ "type": "bytes32"
796
+ },
797
+ {
798
+ "internalType": "bytes4",
799
+ "name": "executionSelector",
800
+ "type": "bytes4"
801
+ },
802
+ {
803
+ "internalType": "bytes",
804
+ "name": "executionParams",
805
+ "type": "bytes"
806
+ }
807
+ ],
808
+ "internalType": "struct EngineBlox.TxParams",
809
+ "name": "params",
810
+ "type": "tuple"
811
+ },
812
+ {
813
+ "internalType": "bytes32",
814
+ "name": "message",
815
+ "type": "bytes32"
816
+ },
817
+ {
818
+ "internalType": "bytes",
819
+ "name": "result",
820
+ "type": "bytes"
821
+ },
822
+ {
823
+ "components": [
824
+ {
825
+ "internalType": "address",
826
+ "name": "recipient",
827
+ "type": "address"
828
+ },
829
+ {
830
+ "internalType": "uint256",
831
+ "name": "nativeTokenAmount",
832
+ "type": "uint256"
833
+ },
834
+ {
835
+ "internalType": "address",
836
+ "name": "erc20TokenAddress",
837
+ "type": "address"
838
+ },
839
+ {
840
+ "internalType": "uint256",
841
+ "name": "erc20TokenAmount",
842
+ "type": "uint256"
843
+ }
844
+ ],
845
+ "internalType": "struct EngineBlox.PaymentDetails",
846
+ "name": "payment",
847
+ "type": "tuple"
848
+ }
849
+ ],
850
+ "internalType": "struct EngineBlox.TxRecord",
851
+ "name": "txRecord",
852
+ "type": "tuple"
853
+ },
854
+ {
855
+ "components": [
856
+ {
857
+ "internalType": "uint256",
858
+ "name": "chainId",
859
+ "type": "uint256"
860
+ },
861
+ {
862
+ "internalType": "uint256",
863
+ "name": "nonce",
864
+ "type": "uint256"
865
+ },
866
+ {
867
+ "internalType": "address",
868
+ "name": "handlerContract",
869
+ "type": "address"
870
+ },
871
+ {
872
+ "internalType": "bytes4",
873
+ "name": "handlerSelector",
874
+ "type": "bytes4"
875
+ },
876
+ {
877
+ "internalType": "enum EngineBlox.TxAction",
878
+ "name": "action",
879
+ "type": "uint8"
880
+ },
881
+ {
882
+ "internalType": "uint256",
883
+ "name": "deadline",
884
+ "type": "uint256"
885
+ },
886
+ {
887
+ "internalType": "uint256",
888
+ "name": "maxGasPrice",
889
+ "type": "uint256"
890
+ },
891
+ {
892
+ "internalType": "address",
893
+ "name": "signer",
894
+ "type": "address"
895
+ }
896
+ ],
897
+ "internalType": "struct EngineBlox.MetaTxParams",
898
+ "name": "params",
899
+ "type": "tuple"
900
+ },
901
+ {
902
+ "internalType": "bytes32",
903
+ "name": "message",
904
+ "type": "bytes32"
905
+ },
906
+ {
907
+ "internalType": "bytes",
908
+ "name": "signature",
909
+ "type": "bytes"
910
+ },
911
+ {
912
+ "internalType": "bytes",
913
+ "name": "data",
914
+ "type": "bytes"
915
+ }
916
+ ],
917
+ "internalType": "struct EngineBlox.MetaTransaction",
918
+ "name": "",
919
+ "type": "tuple"
920
+ }
921
+ ],
922
+ "stateMutability": "view",
923
+ "type": "function"
924
+ },
925
+ {
926
+ "inputs": [
927
+ {
928
+ "internalType": "address",
929
+ "name": "requester",
930
+ "type": "address"
931
+ },
932
+ {
933
+ "internalType": "address",
934
+ "name": "target",
935
+ "type": "address"
936
+ },
937
+ {
938
+ "internalType": "uint256",
939
+ "name": "value",
940
+ "type": "uint256"
941
+ },
942
+ {
943
+ "internalType": "uint256",
944
+ "name": "gasLimit",
945
+ "type": "uint256"
946
+ },
947
+ {
948
+ "internalType": "bytes32",
949
+ "name": "operationType",
950
+ "type": "bytes32"
951
+ },
952
+ {
953
+ "internalType": "bytes4",
954
+ "name": "executionSelector",
955
+ "type": "bytes4"
956
+ },
957
+ {
958
+ "internalType": "bytes",
959
+ "name": "executionParams",
960
+ "type": "bytes"
961
+ },
962
+ {
963
+ "components": [
964
+ {
965
+ "internalType": "uint256",
966
+ "name": "chainId",
967
+ "type": "uint256"
968
+ },
969
+ {
970
+ "internalType": "uint256",
971
+ "name": "nonce",
972
+ "type": "uint256"
973
+ },
974
+ {
975
+ "internalType": "address",
976
+ "name": "handlerContract",
977
+ "type": "address"
978
+ },
979
+ {
980
+ "internalType": "bytes4",
981
+ "name": "handlerSelector",
982
+ "type": "bytes4"
983
+ },
984
+ {
985
+ "internalType": "enum EngineBlox.TxAction",
986
+ "name": "action",
987
+ "type": "uint8"
988
+ },
989
+ {
990
+ "internalType": "uint256",
991
+ "name": "deadline",
992
+ "type": "uint256"
993
+ },
994
+ {
995
+ "internalType": "uint256",
996
+ "name": "maxGasPrice",
997
+ "type": "uint256"
998
+ },
999
+ {
1000
+ "internalType": "address",
1001
+ "name": "signer",
1002
+ "type": "address"
1003
+ }
1004
+ ],
1005
+ "internalType": "struct EngineBlox.MetaTxParams",
1006
+ "name": "metaTxParams",
1007
+ "type": "tuple"
1008
+ }
1009
+ ],
1010
+ "name": "generateUnsignedMetaTransactionForNew",
1011
+ "outputs": [
1012
+ {
1013
+ "components": [
1014
+ {
1015
+ "components": [
1016
+ {
1017
+ "internalType": "uint256",
1018
+ "name": "txId",
1019
+ "type": "uint256"
1020
+ },
1021
+ {
1022
+ "internalType": "uint256",
1023
+ "name": "releaseTime",
1024
+ "type": "uint256"
1025
+ },
1026
+ {
1027
+ "internalType": "enum EngineBlox.TxStatus",
1028
+ "name": "status",
1029
+ "type": "uint8"
1030
+ },
1031
+ {
1032
+ "components": [
1033
+ {
1034
+ "internalType": "address",
1035
+ "name": "requester",
1036
+ "type": "address"
1037
+ },
1038
+ {
1039
+ "internalType": "address",
1040
+ "name": "target",
1041
+ "type": "address"
1042
+ },
1043
+ {
1044
+ "internalType": "uint256",
1045
+ "name": "value",
1046
+ "type": "uint256"
1047
+ },
1048
+ {
1049
+ "internalType": "uint256",
1050
+ "name": "gasLimit",
1051
+ "type": "uint256"
1052
+ },
1053
+ {
1054
+ "internalType": "bytes32",
1055
+ "name": "operationType",
1056
+ "type": "bytes32"
1057
+ },
1058
+ {
1059
+ "internalType": "bytes4",
1060
+ "name": "executionSelector",
1061
+ "type": "bytes4"
1062
+ },
1063
+ {
1064
+ "internalType": "bytes",
1065
+ "name": "executionParams",
1066
+ "type": "bytes"
1067
+ }
1068
+ ],
1069
+ "internalType": "struct EngineBlox.TxParams",
1070
+ "name": "params",
1071
+ "type": "tuple"
1072
+ },
1073
+ {
1074
+ "internalType": "bytes32",
1075
+ "name": "message",
1076
+ "type": "bytes32"
1077
+ },
1078
+ {
1079
+ "internalType": "bytes",
1080
+ "name": "result",
1081
+ "type": "bytes"
1082
+ },
1083
+ {
1084
+ "components": [
1085
+ {
1086
+ "internalType": "address",
1087
+ "name": "recipient",
1088
+ "type": "address"
1089
+ },
1090
+ {
1091
+ "internalType": "uint256",
1092
+ "name": "nativeTokenAmount",
1093
+ "type": "uint256"
1094
+ },
1095
+ {
1096
+ "internalType": "address",
1097
+ "name": "erc20TokenAddress",
1098
+ "type": "address"
1099
+ },
1100
+ {
1101
+ "internalType": "uint256",
1102
+ "name": "erc20TokenAmount",
1103
+ "type": "uint256"
1104
+ }
1105
+ ],
1106
+ "internalType": "struct EngineBlox.PaymentDetails",
1107
+ "name": "payment",
1108
+ "type": "tuple"
1109
+ }
1110
+ ],
1111
+ "internalType": "struct EngineBlox.TxRecord",
1112
+ "name": "txRecord",
1113
+ "type": "tuple"
1114
+ },
1115
+ {
1116
+ "components": [
1117
+ {
1118
+ "internalType": "uint256",
1119
+ "name": "chainId",
1120
+ "type": "uint256"
1121
+ },
1122
+ {
1123
+ "internalType": "uint256",
1124
+ "name": "nonce",
1125
+ "type": "uint256"
1126
+ },
1127
+ {
1128
+ "internalType": "address",
1129
+ "name": "handlerContract",
1130
+ "type": "address"
1131
+ },
1132
+ {
1133
+ "internalType": "bytes4",
1134
+ "name": "handlerSelector",
1135
+ "type": "bytes4"
1136
+ },
1137
+ {
1138
+ "internalType": "enum EngineBlox.TxAction",
1139
+ "name": "action",
1140
+ "type": "uint8"
1141
+ },
1142
+ {
1143
+ "internalType": "uint256",
1144
+ "name": "deadline",
1145
+ "type": "uint256"
1146
+ },
1147
+ {
1148
+ "internalType": "uint256",
1149
+ "name": "maxGasPrice",
1150
+ "type": "uint256"
1151
+ },
1152
+ {
1153
+ "internalType": "address",
1154
+ "name": "signer",
1155
+ "type": "address"
1156
+ }
1157
+ ],
1158
+ "internalType": "struct EngineBlox.MetaTxParams",
1159
+ "name": "params",
1160
+ "type": "tuple"
1161
+ },
1162
+ {
1163
+ "internalType": "bytes32",
1164
+ "name": "message",
1165
+ "type": "bytes32"
1166
+ },
1167
+ {
1168
+ "internalType": "bytes",
1169
+ "name": "signature",
1170
+ "type": "bytes"
1171
+ },
1172
+ {
1173
+ "internalType": "bytes",
1174
+ "name": "data",
1175
+ "type": "bytes"
1176
+ }
1177
+ ],
1178
+ "internalType": "struct EngineBlox.MetaTransaction",
1179
+ "name": "",
1180
+ "type": "tuple"
1181
+ }
1182
+ ],
1183
+ "stateMutability": "view",
1184
+ "type": "function"
1185
+ },
1186
+ {
1187
+ "inputs": [
1188
+ {
1189
+ "internalType": "bytes32",
1190
+ "name": "roleHash",
1191
+ "type": "bytes32"
1192
+ }
1193
+ ],
1194
+ "name": "getActiveRolePermissions",
1195
+ "outputs": [
1196
+ {
1197
+ "components": [
1198
+ {
1199
+ "internalType": "bytes4",
1200
+ "name": "functionSelector",
1201
+ "type": "bytes4"
1202
+ },
1203
+ {
1204
+ "internalType": "uint16",
1205
+ "name": "grantedActionsBitmap",
1206
+ "type": "uint16"
1207
+ },
1208
+ {
1209
+ "internalType": "bytes4[]",
1210
+ "name": "handlerForSelectors",
1211
+ "type": "bytes4[]"
1212
+ }
1213
+ ],
1214
+ "internalType": "struct EngineBlox.FunctionPermission[]",
1215
+ "name": "",
1216
+ "type": "tuple[]"
1217
+ }
1218
+ ],
1219
+ "stateMutability": "view",
1220
+ "type": "function"
1221
+ },
1222
+ {
1223
+ "inputs": [],
1224
+ "name": "getBroadcasters",
1225
+ "outputs": [
1226
+ {
1227
+ "internalType": "address[]",
1228
+ "name": "",
1229
+ "type": "address[]"
1230
+ }
1231
+ ],
1232
+ "stateMutability": "view",
1233
+ "type": "function"
1234
+ },
1235
+ {
1236
+ "inputs": [
1237
+ {
1238
+ "internalType": "bytes4",
1239
+ "name": "functionSelector",
1240
+ "type": "bytes4"
1241
+ }
1242
+ ],
1243
+ "name": "getFunctionSchema",
1244
+ "outputs": [
1245
+ {
1246
+ "components": [
1247
+ {
1248
+ "internalType": "string",
1249
+ "name": "functionSignature",
1250
+ "type": "string"
1251
+ },
1252
+ {
1253
+ "internalType": "bytes4",
1254
+ "name": "functionSelector",
1255
+ "type": "bytes4"
1256
+ },
1257
+ {
1258
+ "internalType": "bytes32",
1259
+ "name": "operationType",
1260
+ "type": "bytes32"
1261
+ },
1262
+ {
1263
+ "internalType": "string",
1264
+ "name": "operationName",
1265
+ "type": "string"
1266
+ },
1267
+ {
1268
+ "internalType": "uint16",
1269
+ "name": "supportedActionsBitmap",
1270
+ "type": "uint16"
1271
+ },
1272
+ {
1273
+ "internalType": "bool",
1274
+ "name": "isProtected",
1275
+ "type": "bool"
1276
+ },
1277
+ {
1278
+ "internalType": "bytes4[]",
1279
+ "name": "handlerForSelectors",
1280
+ "type": "bytes4[]"
1281
+ }
1282
+ ],
1283
+ "internalType": "struct EngineBlox.FunctionSchema",
1284
+ "name": "",
1285
+ "type": "tuple"
1286
+ }
1287
+ ],
1288
+ "stateMutability": "view",
1289
+ "type": "function"
1290
+ },
1291
+ {
1292
+ "inputs": [
1293
+ {
1294
+ "internalType": "bytes4",
1295
+ "name": "functionSelector",
1296
+ "type": "bytes4"
1297
+ }
1298
+ ],
1299
+ "name": "getFunctionWhitelistTargets",
1300
+ "outputs": [
1301
+ {
1302
+ "internalType": "address[]",
1303
+ "name": "",
1304
+ "type": "address[]"
1305
+ }
1306
+ ],
1307
+ "stateMutability": "view",
1308
+ "type": "function"
1309
+ },
1310
+ {
1311
+ "inputs": [
1312
+ {
1313
+ "internalType": "bytes4",
1314
+ "name": "functionSelector",
1315
+ "type": "bytes4"
1316
+ }
1317
+ ],
1318
+ "name": "getHooks",
1319
+ "outputs": [
1320
+ {
1321
+ "internalType": "address[]",
1322
+ "name": "hooks",
1323
+ "type": "address[]"
1324
+ }
1325
+ ],
1326
+ "stateMutability": "view",
1327
+ "type": "function"
1328
+ },
1329
+ {
1330
+ "inputs": [],
1331
+ "name": "getPendingTransactions",
1332
+ "outputs": [
1333
+ {
1334
+ "internalType": "uint256[]",
1335
+ "name": "",
1336
+ "type": "uint256[]"
1337
+ }
1338
+ ],
1339
+ "stateMutability": "view",
1340
+ "type": "function"
1341
+ },
1342
+ {
1343
+ "inputs": [],
1344
+ "name": "getRecovery",
1345
+ "outputs": [
1346
+ {
1347
+ "internalType": "address",
1348
+ "name": "",
1349
+ "type": "address"
1350
+ }
1351
+ ],
1352
+ "stateMutability": "view",
1353
+ "type": "function"
1354
+ },
1355
+ {
1356
+ "inputs": [
1357
+ {
1358
+ "internalType": "bytes32",
1359
+ "name": "roleHash",
1360
+ "type": "bytes32"
1361
+ }
1362
+ ],
1363
+ "name": "getRole",
1364
+ "outputs": [
1365
+ {
1366
+ "internalType": "string",
1367
+ "name": "roleName",
1368
+ "type": "string"
1369
+ },
1370
+ {
1371
+ "internalType": "bytes32",
1372
+ "name": "roleHashReturn",
1373
+ "type": "bytes32"
1374
+ },
1375
+ {
1376
+ "internalType": "uint256",
1377
+ "name": "maxWallets",
1378
+ "type": "uint256"
1379
+ },
1380
+ {
1381
+ "internalType": "uint256",
1382
+ "name": "walletCount",
1383
+ "type": "uint256"
1384
+ },
1385
+ {
1386
+ "internalType": "bool",
1387
+ "name": "isProtected",
1388
+ "type": "bool"
1389
+ }
1390
+ ],
1391
+ "stateMutability": "view",
1392
+ "type": "function"
1393
+ },
1394
+ {
1395
+ "inputs": [
1396
+ {
1397
+ "internalType": "address",
1398
+ "name": "signer",
1399
+ "type": "address"
1400
+ }
1401
+ ],
1402
+ "name": "getSignerNonce",
1403
+ "outputs": [
1404
+ {
1405
+ "internalType": "uint256",
1406
+ "name": "",
1407
+ "type": "uint256"
1408
+ }
1409
+ ],
1410
+ "stateMutability": "view",
1411
+ "type": "function"
1412
+ },
1413
+ {
1414
+ "inputs": [],
1415
+ "name": "getSupportedFunctions",
1416
+ "outputs": [
1417
+ {
1418
+ "internalType": "bytes4[]",
1419
+ "name": "",
1420
+ "type": "bytes4[]"
1421
+ }
1422
+ ],
1423
+ "stateMutability": "view",
1424
+ "type": "function"
1425
+ },
1426
+ {
1427
+ "inputs": [],
1428
+ "name": "getSupportedOperationTypes",
1429
+ "outputs": [
1430
+ {
1431
+ "internalType": "bytes32[]",
1432
+ "name": "",
1433
+ "type": "bytes32[]"
1434
+ }
1435
+ ],
1436
+ "stateMutability": "view",
1437
+ "type": "function"
1438
+ },
1439
+ {
1440
+ "inputs": [],
1441
+ "name": "getSupportedRoles",
1442
+ "outputs": [
1443
+ {
1444
+ "internalType": "bytes32[]",
1445
+ "name": "",
1446
+ "type": "bytes32[]"
1447
+ }
1448
+ ],
1449
+ "stateMutability": "view",
1450
+ "type": "function"
1451
+ },
1452
+ {
1453
+ "inputs": [],
1454
+ "name": "getTimeLockPeriodSec",
1455
+ "outputs": [
1456
+ {
1457
+ "internalType": "uint256",
1458
+ "name": "",
1459
+ "type": "uint256"
1460
+ }
1461
+ ],
1462
+ "stateMutability": "view",
1463
+ "type": "function"
1464
+ },
1465
+ {
1466
+ "inputs": [
1467
+ {
1468
+ "internalType": "uint256",
1469
+ "name": "txId",
1470
+ "type": "uint256"
1471
+ }
1472
+ ],
1473
+ "name": "getTransaction",
1474
+ "outputs": [
1475
+ {
1476
+ "components": [
1477
+ {
1478
+ "internalType": "uint256",
1479
+ "name": "txId",
1480
+ "type": "uint256"
1481
+ },
1482
+ {
1483
+ "internalType": "uint256",
1484
+ "name": "releaseTime",
1485
+ "type": "uint256"
1486
+ },
1487
+ {
1488
+ "internalType": "enum EngineBlox.TxStatus",
1489
+ "name": "status",
1490
+ "type": "uint8"
1491
+ },
1492
+ {
1493
+ "components": [
1494
+ {
1495
+ "internalType": "address",
1496
+ "name": "requester",
1497
+ "type": "address"
1498
+ },
1499
+ {
1500
+ "internalType": "address",
1501
+ "name": "target",
1502
+ "type": "address"
1503
+ },
1504
+ {
1505
+ "internalType": "uint256",
1506
+ "name": "value",
1507
+ "type": "uint256"
1508
+ },
1509
+ {
1510
+ "internalType": "uint256",
1511
+ "name": "gasLimit",
1512
+ "type": "uint256"
1513
+ },
1514
+ {
1515
+ "internalType": "bytes32",
1516
+ "name": "operationType",
1517
+ "type": "bytes32"
1518
+ },
1519
+ {
1520
+ "internalType": "bytes4",
1521
+ "name": "executionSelector",
1522
+ "type": "bytes4"
1523
+ },
1524
+ {
1525
+ "internalType": "bytes",
1526
+ "name": "executionParams",
1527
+ "type": "bytes"
1528
+ }
1529
+ ],
1530
+ "internalType": "struct EngineBlox.TxParams",
1531
+ "name": "params",
1532
+ "type": "tuple"
1533
+ },
1534
+ {
1535
+ "internalType": "bytes32",
1536
+ "name": "message",
1537
+ "type": "bytes32"
1538
+ },
1539
+ {
1540
+ "internalType": "bytes",
1541
+ "name": "result",
1542
+ "type": "bytes"
1543
+ },
1544
+ {
1545
+ "components": [
1546
+ {
1547
+ "internalType": "address",
1548
+ "name": "recipient",
1549
+ "type": "address"
1550
+ },
1551
+ {
1552
+ "internalType": "uint256",
1553
+ "name": "nativeTokenAmount",
1554
+ "type": "uint256"
1555
+ },
1556
+ {
1557
+ "internalType": "address",
1558
+ "name": "erc20TokenAddress",
1559
+ "type": "address"
1560
+ },
1561
+ {
1562
+ "internalType": "uint256",
1563
+ "name": "erc20TokenAmount",
1564
+ "type": "uint256"
1565
+ }
1566
+ ],
1567
+ "internalType": "struct EngineBlox.PaymentDetails",
1568
+ "name": "payment",
1569
+ "type": "tuple"
1570
+ }
1571
+ ],
1572
+ "internalType": "struct EngineBlox.TxRecord",
1573
+ "name": "",
1574
+ "type": "tuple"
1575
+ }
1576
+ ],
1577
+ "stateMutability": "view",
1578
+ "type": "function"
1579
+ },
1580
+ {
1581
+ "inputs": [
1582
+ {
1583
+ "internalType": "uint256",
1584
+ "name": "fromTxId",
1585
+ "type": "uint256"
1586
+ },
1587
+ {
1588
+ "internalType": "uint256",
1589
+ "name": "toTxId",
1590
+ "type": "uint256"
1591
+ }
1592
+ ],
1593
+ "name": "getTransactionHistory",
1594
+ "outputs": [
1595
+ {
1596
+ "components": [
1597
+ {
1598
+ "internalType": "uint256",
1599
+ "name": "txId",
1600
+ "type": "uint256"
1601
+ },
1602
+ {
1603
+ "internalType": "uint256",
1604
+ "name": "releaseTime",
1605
+ "type": "uint256"
1606
+ },
1607
+ {
1608
+ "internalType": "enum EngineBlox.TxStatus",
1609
+ "name": "status",
1610
+ "type": "uint8"
1611
+ },
1612
+ {
1613
+ "components": [
1614
+ {
1615
+ "internalType": "address",
1616
+ "name": "requester",
1617
+ "type": "address"
1618
+ },
1619
+ {
1620
+ "internalType": "address",
1621
+ "name": "target",
1622
+ "type": "address"
1623
+ },
1624
+ {
1625
+ "internalType": "uint256",
1626
+ "name": "value",
1627
+ "type": "uint256"
1628
+ },
1629
+ {
1630
+ "internalType": "uint256",
1631
+ "name": "gasLimit",
1632
+ "type": "uint256"
1633
+ },
1634
+ {
1635
+ "internalType": "bytes32",
1636
+ "name": "operationType",
1637
+ "type": "bytes32"
1638
+ },
1639
+ {
1640
+ "internalType": "bytes4",
1641
+ "name": "executionSelector",
1642
+ "type": "bytes4"
1643
+ },
1644
+ {
1645
+ "internalType": "bytes",
1646
+ "name": "executionParams",
1647
+ "type": "bytes"
1648
+ }
1649
+ ],
1650
+ "internalType": "struct EngineBlox.TxParams",
1651
+ "name": "params",
1652
+ "type": "tuple"
1653
+ },
1654
+ {
1655
+ "internalType": "bytes32",
1656
+ "name": "message",
1657
+ "type": "bytes32"
1658
+ },
1659
+ {
1660
+ "internalType": "bytes",
1661
+ "name": "result",
1662
+ "type": "bytes"
1663
+ },
1664
+ {
1665
+ "components": [
1666
+ {
1667
+ "internalType": "address",
1668
+ "name": "recipient",
1669
+ "type": "address"
1670
+ },
1671
+ {
1672
+ "internalType": "uint256",
1673
+ "name": "nativeTokenAmount",
1674
+ "type": "uint256"
1675
+ },
1676
+ {
1677
+ "internalType": "address",
1678
+ "name": "erc20TokenAddress",
1679
+ "type": "address"
1680
+ },
1681
+ {
1682
+ "internalType": "uint256",
1683
+ "name": "erc20TokenAmount",
1684
+ "type": "uint256"
1685
+ }
1686
+ ],
1687
+ "internalType": "struct EngineBlox.PaymentDetails",
1688
+ "name": "payment",
1689
+ "type": "tuple"
1690
+ }
1691
+ ],
1692
+ "internalType": "struct EngineBlox.TxRecord[]",
1693
+ "name": "",
1694
+ "type": "tuple[]"
1695
+ }
1696
+ ],
1697
+ "stateMutability": "view",
1698
+ "type": "function"
1699
+ },
1700
+ {
1701
+ "inputs": [
1702
+ {
1703
+ "internalType": "address",
1704
+ "name": "wallet",
1705
+ "type": "address"
1706
+ }
1707
+ ],
1708
+ "name": "getWalletRoles",
1709
+ "outputs": [
1710
+ {
1711
+ "internalType": "bytes32[]",
1712
+ "name": "",
1713
+ "type": "bytes32[]"
1714
+ }
1715
+ ],
1716
+ "stateMutability": "view",
1717
+ "type": "function"
1718
+ },
1719
+ {
1720
+ "inputs": [
1721
+ {
1722
+ "internalType": "bytes32",
1723
+ "name": "roleHash",
1724
+ "type": "bytes32"
1725
+ }
1726
+ ],
1727
+ "name": "getWalletsInRole",
1728
+ "outputs": [
1729
+ {
1730
+ "internalType": "address[]",
1731
+ "name": "",
1732
+ "type": "address[]"
1733
+ }
1734
+ ],
1735
+ "stateMutability": "view",
1736
+ "type": "function"
1737
+ },
1738
+ {
1739
+ "inputs": [
1740
+ {
1741
+ "internalType": "bytes32",
1742
+ "name": "roleHash",
1743
+ "type": "bytes32"
1744
+ },
1745
+ {
1746
+ "internalType": "address",
1747
+ "name": "wallet",
1748
+ "type": "address"
1749
+ }
1750
+ ],
1751
+ "name": "hasRole",
1752
+ "outputs": [
1753
+ {
1754
+ "internalType": "bool",
1755
+ "name": "",
1756
+ "type": "bool"
1757
+ }
1758
+ ],
1759
+ "stateMutability": "view",
1760
+ "type": "function"
1761
+ },
1762
+ {
1763
+ "inputs": [],
1764
+ "name": "initialized",
1765
+ "outputs": [
1766
+ {
1767
+ "internalType": "bool",
1768
+ "name": "",
1769
+ "type": "bool"
1770
+ }
1771
+ ],
1772
+ "stateMutability": "view",
1773
+ "type": "function"
1774
+ },
1775
+ {
1776
+ "inputs": [
1777
+ {
1778
+ "internalType": "bytes4",
1779
+ "name": "functionSelector",
1780
+ "type": "bytes4"
1781
+ },
1782
+ {
1783
+ "internalType": "enum EngineBlox.TxAction",
1784
+ "name": "action",
1785
+ "type": "uint8"
1786
+ }
1787
+ ],
1788
+ "name": "isActionSupportedByFunction",
1789
+ "outputs": [
1790
+ {
1791
+ "internalType": "bool",
1792
+ "name": "",
1793
+ "type": "bool"
1794
+ }
1795
+ ],
1796
+ "stateMutability": "view",
1797
+ "type": "function"
1798
+ },
1799
+ {
1800
+ "inputs": [],
1801
+ "name": "name",
1802
+ "outputs": [
1803
+ {
1804
+ "internalType": "string",
1805
+ "name": "",
1806
+ "type": "string"
1807
+ }
1808
+ ],
1809
+ "stateMutability": "view",
1810
+ "type": "function"
1811
+ },
1812
+ {
1813
+ "inputs": [],
1814
+ "name": "owner",
1815
+ "outputs": [
1816
+ {
1817
+ "internalType": "address",
1818
+ "name": "",
1819
+ "type": "address"
1820
+ }
1821
+ ],
1822
+ "stateMutability": "view",
1823
+ "type": "function"
1824
+ },
1825
+ {
1826
+ "inputs": [
1827
+ {
1828
+ "internalType": "bytes4",
1829
+ "name": "interfaceId",
1830
+ "type": "bytes4"
1831
+ }
1832
+ ],
1833
+ "name": "supportsInterface",
1834
+ "outputs": [
1835
+ {
1836
+ "internalType": "bool",
1837
+ "name": "",
1838
+ "type": "bool"
1839
+ }
1840
+ ],
1841
+ "stateMutability": "view",
1842
+ "type": "function"
1843
+ },
1844
+ {
1845
+ "inputs": [],
1846
+ "name": "symbol",
1847
+ "outputs": [
1848
+ {
1849
+ "internalType": "string",
1850
+ "name": "",
1851
+ "type": "string"
1852
+ }
1853
+ ],
1854
+ "stateMutability": "view",
1855
+ "type": "function"
1856
+ },
1857
+ {
1858
+ "inputs": [],
1859
+ "name": "totalSupply",
1860
+ "outputs": [
1861
+ {
1862
+ "internalType": "uint256",
1863
+ "name": "",
1864
+ "type": "uint256"
1865
+ }
1866
+ ],
1867
+ "stateMutability": "view",
1868
+ "type": "function"
1869
+ },
1870
+ {
1871
+ "inputs": [
1872
+ {
1873
+ "internalType": "address",
1874
+ "name": "to",
1875
+ "type": "address"
1876
+ },
1877
+ {
1878
+ "internalType": "uint256",
1879
+ "name": "value",
1880
+ "type": "uint256"
1881
+ }
1882
+ ],
1883
+ "name": "transfer",
1884
+ "outputs": [
1885
+ {
1886
+ "internalType": "bool",
1887
+ "name": "",
1888
+ "type": "bool"
1889
+ }
1890
+ ],
1891
+ "stateMutability": "nonpayable",
1892
+ "type": "function"
1893
+ },
1894
+ {
1895
+ "inputs": [
1896
+ {
1897
+ "internalType": "address",
1898
+ "name": "from",
1899
+ "type": "address"
1900
+ },
1901
+ {
1902
+ "internalType": "address",
1903
+ "name": "to",
1904
+ "type": "address"
1905
+ },
1906
+ {
1907
+ "internalType": "uint256",
1908
+ "name": "value",
1909
+ "type": "uint256"
1910
+ }
1911
+ ],
1912
+ "name": "transferFrom",
1913
+ "outputs": [
1914
+ {
1915
+ "internalType": "bool",
1916
+ "name": "",
1917
+ "type": "bool"
1918
+ }
1919
+ ],
1920
+ "stateMutability": "nonpayable",
1921
+ "type": "function"
1922
+ },
1923
+ {
1924
+ "inputs": [
1925
+ {
1926
+ "components": [
1927
+ {
1928
+ "components": [
1929
+ {
1930
+ "internalType": "uint256",
1931
+ "name": "txId",
1932
+ "type": "uint256"
1933
+ },
1934
+ {
1935
+ "internalType": "uint256",
1936
+ "name": "releaseTime",
1937
+ "type": "uint256"
1938
+ },
1939
+ {
1940
+ "internalType": "enum EngineBlox.TxStatus",
1941
+ "name": "status",
1942
+ "type": "uint8"
1943
+ },
1944
+ {
1945
+ "components": [
1946
+ {
1947
+ "internalType": "address",
1948
+ "name": "requester",
1949
+ "type": "address"
1950
+ },
1951
+ {
1952
+ "internalType": "address",
1953
+ "name": "target",
1954
+ "type": "address"
1955
+ },
1956
+ {
1957
+ "internalType": "uint256",
1958
+ "name": "value",
1959
+ "type": "uint256"
1960
+ },
1961
+ {
1962
+ "internalType": "uint256",
1963
+ "name": "gasLimit",
1964
+ "type": "uint256"
1965
+ },
1966
+ {
1967
+ "internalType": "bytes32",
1968
+ "name": "operationType",
1969
+ "type": "bytes32"
1970
+ },
1971
+ {
1972
+ "internalType": "bytes4",
1973
+ "name": "executionSelector",
1974
+ "type": "bytes4"
1975
+ },
1976
+ {
1977
+ "internalType": "bytes",
1978
+ "name": "executionParams",
1979
+ "type": "bytes"
1980
+ }
1981
+ ],
1982
+ "internalType": "struct EngineBlox.TxParams",
1983
+ "name": "params",
1984
+ "type": "tuple"
1985
+ },
1986
+ {
1987
+ "internalType": "bytes32",
1988
+ "name": "message",
1989
+ "type": "bytes32"
1990
+ },
1991
+ {
1992
+ "internalType": "bytes",
1993
+ "name": "result",
1994
+ "type": "bytes"
1995
+ },
1996
+ {
1997
+ "components": [
1998
+ {
1999
+ "internalType": "address",
2000
+ "name": "recipient",
2001
+ "type": "address"
2002
+ },
2003
+ {
2004
+ "internalType": "uint256",
2005
+ "name": "nativeTokenAmount",
2006
+ "type": "uint256"
2007
+ },
2008
+ {
2009
+ "internalType": "address",
2010
+ "name": "erc20TokenAddress",
2011
+ "type": "address"
2012
+ },
2013
+ {
2014
+ "internalType": "uint256",
2015
+ "name": "erc20TokenAmount",
2016
+ "type": "uint256"
2017
+ }
2018
+ ],
2019
+ "internalType": "struct EngineBlox.PaymentDetails",
2020
+ "name": "payment",
2021
+ "type": "tuple"
2022
+ }
2023
+ ],
2024
+ "internalType": "struct EngineBlox.TxRecord",
2025
+ "name": "txRecord",
2026
+ "type": "tuple"
2027
+ },
2028
+ {
2029
+ "components": [
2030
+ {
2031
+ "internalType": "uint256",
2032
+ "name": "chainId",
2033
+ "type": "uint256"
2034
+ },
2035
+ {
2036
+ "internalType": "uint256",
2037
+ "name": "nonce",
2038
+ "type": "uint256"
2039
+ },
2040
+ {
2041
+ "internalType": "address",
2042
+ "name": "handlerContract",
2043
+ "type": "address"
2044
+ },
2045
+ {
2046
+ "internalType": "bytes4",
2047
+ "name": "handlerSelector",
2048
+ "type": "bytes4"
2049
+ },
2050
+ {
2051
+ "internalType": "enum EngineBlox.TxAction",
2052
+ "name": "action",
2053
+ "type": "uint8"
2054
+ },
2055
+ {
2056
+ "internalType": "uint256",
2057
+ "name": "deadline",
2058
+ "type": "uint256"
2059
+ },
2060
+ {
2061
+ "internalType": "uint256",
2062
+ "name": "maxGasPrice",
2063
+ "type": "uint256"
2064
+ },
2065
+ {
2066
+ "internalType": "address",
2067
+ "name": "signer",
2068
+ "type": "address"
2069
+ }
2070
+ ],
2071
+ "internalType": "struct EngineBlox.MetaTxParams",
2072
+ "name": "params",
2073
+ "type": "tuple"
2074
+ },
2075
+ {
2076
+ "internalType": "bytes32",
2077
+ "name": "message",
2078
+ "type": "bytes32"
2079
+ },
2080
+ {
2081
+ "internalType": "bytes",
2082
+ "name": "signature",
2083
+ "type": "bytes"
2084
+ },
2085
+ {
2086
+ "internalType": "bytes",
2087
+ "name": "data",
2088
+ "type": "bytes"
2089
+ }
2090
+ ],
2091
+ "internalType": "struct EngineBlox.MetaTransaction",
2092
+ "name": "metaTx",
2093
+ "type": "tuple"
2094
+ }
2095
+ ],
2096
+ "name": "transferOwnershipApprovalWithMetaTx",
2097
+ "outputs": [
2098
+ {
2099
+ "internalType": "uint256",
2100
+ "name": "",
2101
+ "type": "uint256"
2102
+ }
2103
+ ],
2104
+ "stateMutability": "nonpayable",
2105
+ "type": "function"
2106
+ },
2107
+ {
2108
+ "inputs": [
2109
+ {
2110
+ "internalType": "uint256",
2111
+ "name": "txId",
2112
+ "type": "uint256"
2113
+ }
2114
+ ],
2115
+ "name": "transferOwnershipCancellation",
2116
+ "outputs": [
2117
+ {
2118
+ "internalType": "uint256",
2119
+ "name": "",
2120
+ "type": "uint256"
2121
+ }
2122
+ ],
2123
+ "stateMutability": "nonpayable",
2124
+ "type": "function"
2125
+ },
2126
+ {
2127
+ "inputs": [
2128
+ {
2129
+ "components": [
2130
+ {
2131
+ "components": [
2132
+ {
2133
+ "internalType": "uint256",
2134
+ "name": "txId",
2135
+ "type": "uint256"
2136
+ },
2137
+ {
2138
+ "internalType": "uint256",
2139
+ "name": "releaseTime",
2140
+ "type": "uint256"
2141
+ },
2142
+ {
2143
+ "internalType": "enum EngineBlox.TxStatus",
2144
+ "name": "status",
2145
+ "type": "uint8"
2146
+ },
2147
+ {
2148
+ "components": [
2149
+ {
2150
+ "internalType": "address",
2151
+ "name": "requester",
2152
+ "type": "address"
2153
+ },
2154
+ {
2155
+ "internalType": "address",
2156
+ "name": "target",
2157
+ "type": "address"
2158
+ },
2159
+ {
2160
+ "internalType": "uint256",
2161
+ "name": "value",
2162
+ "type": "uint256"
2163
+ },
2164
+ {
2165
+ "internalType": "uint256",
2166
+ "name": "gasLimit",
2167
+ "type": "uint256"
2168
+ },
2169
+ {
2170
+ "internalType": "bytes32",
2171
+ "name": "operationType",
2172
+ "type": "bytes32"
2173
+ },
2174
+ {
2175
+ "internalType": "bytes4",
2176
+ "name": "executionSelector",
2177
+ "type": "bytes4"
2178
+ },
2179
+ {
2180
+ "internalType": "bytes",
2181
+ "name": "executionParams",
2182
+ "type": "bytes"
2183
+ }
2184
+ ],
2185
+ "internalType": "struct EngineBlox.TxParams",
2186
+ "name": "params",
2187
+ "type": "tuple"
2188
+ },
2189
+ {
2190
+ "internalType": "bytes32",
2191
+ "name": "message",
2192
+ "type": "bytes32"
2193
+ },
2194
+ {
2195
+ "internalType": "bytes",
2196
+ "name": "result",
2197
+ "type": "bytes"
2198
+ },
2199
+ {
2200
+ "components": [
2201
+ {
2202
+ "internalType": "address",
2203
+ "name": "recipient",
2204
+ "type": "address"
2205
+ },
2206
+ {
2207
+ "internalType": "uint256",
2208
+ "name": "nativeTokenAmount",
2209
+ "type": "uint256"
2210
+ },
2211
+ {
2212
+ "internalType": "address",
2213
+ "name": "erc20TokenAddress",
2214
+ "type": "address"
2215
+ },
2216
+ {
2217
+ "internalType": "uint256",
2218
+ "name": "erc20TokenAmount",
2219
+ "type": "uint256"
2220
+ }
2221
+ ],
2222
+ "internalType": "struct EngineBlox.PaymentDetails",
2223
+ "name": "payment",
2224
+ "type": "tuple"
2225
+ }
2226
+ ],
2227
+ "internalType": "struct EngineBlox.TxRecord",
2228
+ "name": "txRecord",
2229
+ "type": "tuple"
2230
+ },
2231
+ {
2232
+ "components": [
2233
+ {
2234
+ "internalType": "uint256",
2235
+ "name": "chainId",
2236
+ "type": "uint256"
2237
+ },
2238
+ {
2239
+ "internalType": "uint256",
2240
+ "name": "nonce",
2241
+ "type": "uint256"
2242
+ },
2243
+ {
2244
+ "internalType": "address",
2245
+ "name": "handlerContract",
2246
+ "type": "address"
2247
+ },
2248
+ {
2249
+ "internalType": "bytes4",
2250
+ "name": "handlerSelector",
2251
+ "type": "bytes4"
2252
+ },
2253
+ {
2254
+ "internalType": "enum EngineBlox.TxAction",
2255
+ "name": "action",
2256
+ "type": "uint8"
2257
+ },
2258
+ {
2259
+ "internalType": "uint256",
2260
+ "name": "deadline",
2261
+ "type": "uint256"
2262
+ },
2263
+ {
2264
+ "internalType": "uint256",
2265
+ "name": "maxGasPrice",
2266
+ "type": "uint256"
2267
+ },
2268
+ {
2269
+ "internalType": "address",
2270
+ "name": "signer",
2271
+ "type": "address"
2272
+ }
2273
+ ],
2274
+ "internalType": "struct EngineBlox.MetaTxParams",
2275
+ "name": "params",
2276
+ "type": "tuple"
2277
+ },
2278
+ {
2279
+ "internalType": "bytes32",
2280
+ "name": "message",
2281
+ "type": "bytes32"
2282
+ },
2283
+ {
2284
+ "internalType": "bytes",
2285
+ "name": "signature",
2286
+ "type": "bytes"
2287
+ },
2288
+ {
2289
+ "internalType": "bytes",
2290
+ "name": "data",
2291
+ "type": "bytes"
2292
+ }
2293
+ ],
2294
+ "internalType": "struct EngineBlox.MetaTransaction",
2295
+ "name": "metaTx",
2296
+ "type": "tuple"
2297
+ }
2298
+ ],
2299
+ "name": "transferOwnershipCancellationWithMetaTx",
2300
+ "outputs": [
2301
+ {
2302
+ "internalType": "uint256",
2303
+ "name": "",
2304
+ "type": "uint256"
2305
+ }
2306
+ ],
2307
+ "stateMutability": "nonpayable",
2308
+ "type": "function"
2309
+ },
2310
+ {
2311
+ "inputs": [
2312
+ {
2313
+ "internalType": "uint256",
2314
+ "name": "txId",
2315
+ "type": "uint256"
2316
+ }
2317
+ ],
2318
+ "name": "transferOwnershipDelayedApproval",
2319
+ "outputs": [
2320
+ {
2321
+ "internalType": "uint256",
2322
+ "name": "",
2323
+ "type": "uint256"
2324
+ }
2325
+ ],
2326
+ "stateMutability": "nonpayable",
2327
+ "type": "function"
2328
+ },
2329
+ {
2330
+ "inputs": [],
2331
+ "name": "transferOwnershipRequest",
2332
+ "outputs": [
2333
+ {
2334
+ "internalType": "uint256",
2335
+ "name": "txId",
2336
+ "type": "uint256"
2337
+ }
2338
+ ],
2339
+ "stateMutability": "nonpayable",
2340
+ "type": "function"
2341
+ },
2342
+ {
2343
+ "inputs": [
2344
+ {
2345
+ "components": [
2346
+ {
2347
+ "components": [
2348
+ {
2349
+ "internalType": "uint256",
2350
+ "name": "txId",
2351
+ "type": "uint256"
2352
+ },
2353
+ {
2354
+ "internalType": "uint256",
2355
+ "name": "releaseTime",
2356
+ "type": "uint256"
2357
+ },
2358
+ {
2359
+ "internalType": "enum EngineBlox.TxStatus",
2360
+ "name": "status",
2361
+ "type": "uint8"
2362
+ },
2363
+ {
2364
+ "components": [
2365
+ {
2366
+ "internalType": "address",
2367
+ "name": "requester",
2368
+ "type": "address"
2369
+ },
2370
+ {
2371
+ "internalType": "address",
2372
+ "name": "target",
2373
+ "type": "address"
2374
+ },
2375
+ {
2376
+ "internalType": "uint256",
2377
+ "name": "value",
2378
+ "type": "uint256"
2379
+ },
2380
+ {
2381
+ "internalType": "uint256",
2382
+ "name": "gasLimit",
2383
+ "type": "uint256"
2384
+ },
2385
+ {
2386
+ "internalType": "bytes32",
2387
+ "name": "operationType",
2388
+ "type": "bytes32"
2389
+ },
2390
+ {
2391
+ "internalType": "bytes4",
2392
+ "name": "executionSelector",
2393
+ "type": "bytes4"
2394
+ },
2395
+ {
2396
+ "internalType": "bytes",
2397
+ "name": "executionParams",
2398
+ "type": "bytes"
2399
+ }
2400
+ ],
2401
+ "internalType": "struct EngineBlox.TxParams",
2402
+ "name": "params",
2403
+ "type": "tuple"
2404
+ },
2405
+ {
2406
+ "internalType": "bytes32",
2407
+ "name": "message",
2408
+ "type": "bytes32"
2409
+ },
2410
+ {
2411
+ "internalType": "bytes",
2412
+ "name": "result",
2413
+ "type": "bytes"
2414
+ },
2415
+ {
2416
+ "components": [
2417
+ {
2418
+ "internalType": "address",
2419
+ "name": "recipient",
2420
+ "type": "address"
2421
+ },
2422
+ {
2423
+ "internalType": "uint256",
2424
+ "name": "nativeTokenAmount",
2425
+ "type": "uint256"
2426
+ },
2427
+ {
2428
+ "internalType": "address",
2429
+ "name": "erc20TokenAddress",
2430
+ "type": "address"
2431
+ },
2432
+ {
2433
+ "internalType": "uint256",
2434
+ "name": "erc20TokenAmount",
2435
+ "type": "uint256"
2436
+ }
2437
+ ],
2438
+ "internalType": "struct EngineBlox.PaymentDetails",
2439
+ "name": "payment",
2440
+ "type": "tuple"
2441
+ }
2442
+ ],
2443
+ "internalType": "struct EngineBlox.TxRecord",
2444
+ "name": "txRecord",
2445
+ "type": "tuple"
2446
+ },
2447
+ {
2448
+ "components": [
2449
+ {
2450
+ "internalType": "uint256",
2451
+ "name": "chainId",
2452
+ "type": "uint256"
2453
+ },
2454
+ {
2455
+ "internalType": "uint256",
2456
+ "name": "nonce",
2457
+ "type": "uint256"
2458
+ },
2459
+ {
2460
+ "internalType": "address",
2461
+ "name": "handlerContract",
2462
+ "type": "address"
2463
+ },
2464
+ {
2465
+ "internalType": "bytes4",
2466
+ "name": "handlerSelector",
2467
+ "type": "bytes4"
2468
+ },
2469
+ {
2470
+ "internalType": "enum EngineBlox.TxAction",
2471
+ "name": "action",
2472
+ "type": "uint8"
2473
+ },
2474
+ {
2475
+ "internalType": "uint256",
2476
+ "name": "deadline",
2477
+ "type": "uint256"
2478
+ },
2479
+ {
2480
+ "internalType": "uint256",
2481
+ "name": "maxGasPrice",
2482
+ "type": "uint256"
2483
+ },
2484
+ {
2485
+ "internalType": "address",
2486
+ "name": "signer",
2487
+ "type": "address"
2488
+ }
2489
+ ],
2490
+ "internalType": "struct EngineBlox.MetaTxParams",
2491
+ "name": "params",
2492
+ "type": "tuple"
2493
+ },
2494
+ {
2495
+ "internalType": "bytes32",
2496
+ "name": "message",
2497
+ "type": "bytes32"
2498
+ },
2499
+ {
2500
+ "internalType": "bytes",
2501
+ "name": "signature",
2502
+ "type": "bytes"
2503
+ },
2504
+ {
2505
+ "internalType": "bytes",
2506
+ "name": "data",
2507
+ "type": "bytes"
2508
+ }
2509
+ ],
2510
+ "internalType": "struct EngineBlox.MetaTransaction",
2511
+ "name": "metaTx",
2512
+ "type": "tuple"
2513
+ }
2514
+ ],
2515
+ "name": "updateBroadcasterApprovalWithMetaTx",
2516
+ "outputs": [
2517
+ {
2518
+ "internalType": "uint256",
2519
+ "name": "",
2520
+ "type": "uint256"
2521
+ }
2522
+ ],
2523
+ "stateMutability": "nonpayable",
2524
+ "type": "function"
2525
+ },
2526
+ {
2527
+ "inputs": [
2528
+ {
2529
+ "internalType": "uint256",
2530
+ "name": "txId",
2531
+ "type": "uint256"
2532
+ }
2533
+ ],
2534
+ "name": "updateBroadcasterCancellation",
2535
+ "outputs": [
2536
+ {
2537
+ "internalType": "uint256",
2538
+ "name": "",
2539
+ "type": "uint256"
2540
+ }
2541
+ ],
2542
+ "stateMutability": "nonpayable",
2543
+ "type": "function"
2544
+ },
2545
+ {
2546
+ "inputs": [
2547
+ {
2548
+ "components": [
2549
+ {
2550
+ "components": [
2551
+ {
2552
+ "internalType": "uint256",
2553
+ "name": "txId",
2554
+ "type": "uint256"
2555
+ },
2556
+ {
2557
+ "internalType": "uint256",
2558
+ "name": "releaseTime",
2559
+ "type": "uint256"
2560
+ },
2561
+ {
2562
+ "internalType": "enum EngineBlox.TxStatus",
2563
+ "name": "status",
2564
+ "type": "uint8"
2565
+ },
2566
+ {
2567
+ "components": [
2568
+ {
2569
+ "internalType": "address",
2570
+ "name": "requester",
2571
+ "type": "address"
2572
+ },
2573
+ {
2574
+ "internalType": "address",
2575
+ "name": "target",
2576
+ "type": "address"
2577
+ },
2578
+ {
2579
+ "internalType": "uint256",
2580
+ "name": "value",
2581
+ "type": "uint256"
2582
+ },
2583
+ {
2584
+ "internalType": "uint256",
2585
+ "name": "gasLimit",
2586
+ "type": "uint256"
2587
+ },
2588
+ {
2589
+ "internalType": "bytes32",
2590
+ "name": "operationType",
2591
+ "type": "bytes32"
2592
+ },
2593
+ {
2594
+ "internalType": "bytes4",
2595
+ "name": "executionSelector",
2596
+ "type": "bytes4"
2597
+ },
2598
+ {
2599
+ "internalType": "bytes",
2600
+ "name": "executionParams",
2601
+ "type": "bytes"
2602
+ }
2603
+ ],
2604
+ "internalType": "struct EngineBlox.TxParams",
2605
+ "name": "params",
2606
+ "type": "tuple"
2607
+ },
2608
+ {
2609
+ "internalType": "bytes32",
2610
+ "name": "message",
2611
+ "type": "bytes32"
2612
+ },
2613
+ {
2614
+ "internalType": "bytes",
2615
+ "name": "result",
2616
+ "type": "bytes"
2617
+ },
2618
+ {
2619
+ "components": [
2620
+ {
2621
+ "internalType": "address",
2622
+ "name": "recipient",
2623
+ "type": "address"
2624
+ },
2625
+ {
2626
+ "internalType": "uint256",
2627
+ "name": "nativeTokenAmount",
2628
+ "type": "uint256"
2629
+ },
2630
+ {
2631
+ "internalType": "address",
2632
+ "name": "erc20TokenAddress",
2633
+ "type": "address"
2634
+ },
2635
+ {
2636
+ "internalType": "uint256",
2637
+ "name": "erc20TokenAmount",
2638
+ "type": "uint256"
2639
+ }
2640
+ ],
2641
+ "internalType": "struct EngineBlox.PaymentDetails",
2642
+ "name": "payment",
2643
+ "type": "tuple"
2644
+ }
2645
+ ],
2646
+ "internalType": "struct EngineBlox.TxRecord",
2647
+ "name": "txRecord",
2648
+ "type": "tuple"
2649
+ },
2650
+ {
2651
+ "components": [
2652
+ {
2653
+ "internalType": "uint256",
2654
+ "name": "chainId",
2655
+ "type": "uint256"
2656
+ },
2657
+ {
2658
+ "internalType": "uint256",
2659
+ "name": "nonce",
2660
+ "type": "uint256"
2661
+ },
2662
+ {
2663
+ "internalType": "address",
2664
+ "name": "handlerContract",
2665
+ "type": "address"
2666
+ },
2667
+ {
2668
+ "internalType": "bytes4",
2669
+ "name": "handlerSelector",
2670
+ "type": "bytes4"
2671
+ },
2672
+ {
2673
+ "internalType": "enum EngineBlox.TxAction",
2674
+ "name": "action",
2675
+ "type": "uint8"
2676
+ },
2677
+ {
2678
+ "internalType": "uint256",
2679
+ "name": "deadline",
2680
+ "type": "uint256"
2681
+ },
2682
+ {
2683
+ "internalType": "uint256",
2684
+ "name": "maxGasPrice",
2685
+ "type": "uint256"
2686
+ },
2687
+ {
2688
+ "internalType": "address",
2689
+ "name": "signer",
2690
+ "type": "address"
2691
+ }
2692
+ ],
2693
+ "internalType": "struct EngineBlox.MetaTxParams",
2694
+ "name": "params",
2695
+ "type": "tuple"
2696
+ },
2697
+ {
2698
+ "internalType": "bytes32",
2699
+ "name": "message",
2700
+ "type": "bytes32"
2701
+ },
2702
+ {
2703
+ "internalType": "bytes",
2704
+ "name": "signature",
2705
+ "type": "bytes"
2706
+ },
2707
+ {
2708
+ "internalType": "bytes",
2709
+ "name": "data",
2710
+ "type": "bytes"
2711
+ }
2712
+ ],
2713
+ "internalType": "struct EngineBlox.MetaTransaction",
2714
+ "name": "metaTx",
2715
+ "type": "tuple"
2716
+ }
2717
+ ],
2718
+ "name": "updateBroadcasterCancellationWithMetaTx",
2719
+ "outputs": [
2720
+ {
2721
+ "internalType": "uint256",
2722
+ "name": "",
2723
+ "type": "uint256"
2724
+ }
2725
+ ],
2726
+ "stateMutability": "nonpayable",
2727
+ "type": "function"
2728
+ },
2729
+ {
2730
+ "inputs": [
2731
+ {
2732
+ "internalType": "uint256",
2733
+ "name": "txId",
2734
+ "type": "uint256"
2735
+ }
2736
+ ],
2737
+ "name": "updateBroadcasterDelayedApproval",
2738
+ "outputs": [
2739
+ {
2740
+ "internalType": "uint256",
2741
+ "name": "",
2742
+ "type": "uint256"
2743
+ }
2744
+ ],
2745
+ "stateMutability": "nonpayable",
2746
+ "type": "function"
2747
+ },
2748
+ {
2749
+ "inputs": [
2750
+ {
2751
+ "internalType": "address",
2752
+ "name": "newBroadcaster",
2753
+ "type": "address"
2754
+ },
2755
+ {
2756
+ "internalType": "uint256",
2757
+ "name": "location",
2758
+ "type": "uint256"
2759
+ }
2760
+ ],
2761
+ "name": "updateBroadcasterRequest",
2762
+ "outputs": [
2763
+ {
2764
+ "internalType": "uint256",
2765
+ "name": "txId",
2766
+ "type": "uint256"
2767
+ }
2768
+ ],
2769
+ "stateMutability": "nonpayable",
2770
+ "type": "function"
2771
+ },
2772
+ {
2773
+ "inputs": [
2774
+ {
2775
+ "components": [
2776
+ {
2777
+ "components": [
2778
+ {
2779
+ "internalType": "uint256",
2780
+ "name": "txId",
2781
+ "type": "uint256"
2782
+ },
2783
+ {
2784
+ "internalType": "uint256",
2785
+ "name": "releaseTime",
2786
+ "type": "uint256"
2787
+ },
2788
+ {
2789
+ "internalType": "enum EngineBlox.TxStatus",
2790
+ "name": "status",
2791
+ "type": "uint8"
2792
+ },
2793
+ {
2794
+ "components": [
2795
+ {
2796
+ "internalType": "address",
2797
+ "name": "requester",
2798
+ "type": "address"
2799
+ },
2800
+ {
2801
+ "internalType": "address",
2802
+ "name": "target",
2803
+ "type": "address"
2804
+ },
2805
+ {
2806
+ "internalType": "uint256",
2807
+ "name": "value",
2808
+ "type": "uint256"
2809
+ },
2810
+ {
2811
+ "internalType": "uint256",
2812
+ "name": "gasLimit",
2813
+ "type": "uint256"
2814
+ },
2815
+ {
2816
+ "internalType": "bytes32",
2817
+ "name": "operationType",
2818
+ "type": "bytes32"
2819
+ },
2820
+ {
2821
+ "internalType": "bytes4",
2822
+ "name": "executionSelector",
2823
+ "type": "bytes4"
2824
+ },
2825
+ {
2826
+ "internalType": "bytes",
2827
+ "name": "executionParams",
2828
+ "type": "bytes"
2829
+ }
2830
+ ],
2831
+ "internalType": "struct EngineBlox.TxParams",
2832
+ "name": "params",
2833
+ "type": "tuple"
2834
+ },
2835
+ {
2836
+ "internalType": "bytes32",
2837
+ "name": "message",
2838
+ "type": "bytes32"
2839
+ },
2840
+ {
2841
+ "internalType": "bytes",
2842
+ "name": "result",
2843
+ "type": "bytes"
2844
+ },
2845
+ {
2846
+ "components": [
2847
+ {
2848
+ "internalType": "address",
2849
+ "name": "recipient",
2850
+ "type": "address"
2851
+ },
2852
+ {
2853
+ "internalType": "uint256",
2854
+ "name": "nativeTokenAmount",
2855
+ "type": "uint256"
2856
+ },
2857
+ {
2858
+ "internalType": "address",
2859
+ "name": "erc20TokenAddress",
2860
+ "type": "address"
2861
+ },
2862
+ {
2863
+ "internalType": "uint256",
2864
+ "name": "erc20TokenAmount",
2865
+ "type": "uint256"
2866
+ }
2867
+ ],
2868
+ "internalType": "struct EngineBlox.PaymentDetails",
2869
+ "name": "payment",
2870
+ "type": "tuple"
2871
+ }
2872
+ ],
2873
+ "internalType": "struct EngineBlox.TxRecord",
2874
+ "name": "txRecord",
2875
+ "type": "tuple"
2876
+ },
2877
+ {
2878
+ "components": [
2879
+ {
2880
+ "internalType": "uint256",
2881
+ "name": "chainId",
2882
+ "type": "uint256"
2883
+ },
2884
+ {
2885
+ "internalType": "uint256",
2886
+ "name": "nonce",
2887
+ "type": "uint256"
2888
+ },
2889
+ {
2890
+ "internalType": "address",
2891
+ "name": "handlerContract",
2892
+ "type": "address"
2893
+ },
2894
+ {
2895
+ "internalType": "bytes4",
2896
+ "name": "handlerSelector",
2897
+ "type": "bytes4"
2898
+ },
2899
+ {
2900
+ "internalType": "enum EngineBlox.TxAction",
2901
+ "name": "action",
2902
+ "type": "uint8"
2903
+ },
2904
+ {
2905
+ "internalType": "uint256",
2906
+ "name": "deadline",
2907
+ "type": "uint256"
2908
+ },
2909
+ {
2910
+ "internalType": "uint256",
2911
+ "name": "maxGasPrice",
2912
+ "type": "uint256"
2913
+ },
2914
+ {
2915
+ "internalType": "address",
2916
+ "name": "signer",
2917
+ "type": "address"
2918
+ }
2919
+ ],
2920
+ "internalType": "struct EngineBlox.MetaTxParams",
2921
+ "name": "params",
2922
+ "type": "tuple"
2923
+ },
2924
+ {
2925
+ "internalType": "bytes32",
2926
+ "name": "message",
2927
+ "type": "bytes32"
2928
+ },
2929
+ {
2930
+ "internalType": "bytes",
2931
+ "name": "signature",
2932
+ "type": "bytes"
2933
+ },
2934
+ {
2935
+ "internalType": "bytes",
2936
+ "name": "data",
2937
+ "type": "bytes"
2938
+ }
2939
+ ],
2940
+ "internalType": "struct EngineBlox.MetaTransaction",
2941
+ "name": "metaTx",
2942
+ "type": "tuple"
2943
+ }
2944
+ ],
2945
+ "name": "updateRecoveryRequestAndApprove",
2946
+ "outputs": [
2947
+ {
2948
+ "internalType": "uint256",
2949
+ "name": "",
2950
+ "type": "uint256"
2951
+ }
2952
+ ],
2953
+ "stateMutability": "nonpayable",
2954
+ "type": "function"
2955
+ },
2956
+ {
2957
+ "inputs": [
2958
+ {
2959
+ "components": [
2960
+ {
2961
+ "components": [
2962
+ {
2963
+ "internalType": "uint256",
2964
+ "name": "txId",
2965
+ "type": "uint256"
2966
+ },
2967
+ {
2968
+ "internalType": "uint256",
2969
+ "name": "releaseTime",
2970
+ "type": "uint256"
2971
+ },
2972
+ {
2973
+ "internalType": "enum EngineBlox.TxStatus",
2974
+ "name": "status",
2975
+ "type": "uint8"
2976
+ },
2977
+ {
2978
+ "components": [
2979
+ {
2980
+ "internalType": "address",
2981
+ "name": "requester",
2982
+ "type": "address"
2983
+ },
2984
+ {
2985
+ "internalType": "address",
2986
+ "name": "target",
2987
+ "type": "address"
2988
+ },
2989
+ {
2990
+ "internalType": "uint256",
2991
+ "name": "value",
2992
+ "type": "uint256"
2993
+ },
2994
+ {
2995
+ "internalType": "uint256",
2996
+ "name": "gasLimit",
2997
+ "type": "uint256"
2998
+ },
2999
+ {
3000
+ "internalType": "bytes32",
3001
+ "name": "operationType",
3002
+ "type": "bytes32"
3003
+ },
3004
+ {
3005
+ "internalType": "bytes4",
3006
+ "name": "executionSelector",
3007
+ "type": "bytes4"
3008
+ },
3009
+ {
3010
+ "internalType": "bytes",
3011
+ "name": "executionParams",
3012
+ "type": "bytes"
3013
+ }
3014
+ ],
3015
+ "internalType": "struct EngineBlox.TxParams",
3016
+ "name": "params",
3017
+ "type": "tuple"
3018
+ },
3019
+ {
3020
+ "internalType": "bytes32",
3021
+ "name": "message",
3022
+ "type": "bytes32"
3023
+ },
3024
+ {
3025
+ "internalType": "bytes",
3026
+ "name": "result",
3027
+ "type": "bytes"
3028
+ },
3029
+ {
3030
+ "components": [
3031
+ {
3032
+ "internalType": "address",
3033
+ "name": "recipient",
3034
+ "type": "address"
3035
+ },
3036
+ {
3037
+ "internalType": "uint256",
3038
+ "name": "nativeTokenAmount",
3039
+ "type": "uint256"
3040
+ },
3041
+ {
3042
+ "internalType": "address",
3043
+ "name": "erc20TokenAddress",
3044
+ "type": "address"
3045
+ },
3046
+ {
3047
+ "internalType": "uint256",
3048
+ "name": "erc20TokenAmount",
3049
+ "type": "uint256"
3050
+ }
3051
+ ],
3052
+ "internalType": "struct EngineBlox.PaymentDetails",
3053
+ "name": "payment",
3054
+ "type": "tuple"
3055
+ }
3056
+ ],
3057
+ "internalType": "struct EngineBlox.TxRecord",
3058
+ "name": "txRecord",
3059
+ "type": "tuple"
3060
+ },
3061
+ {
3062
+ "components": [
3063
+ {
3064
+ "internalType": "uint256",
3065
+ "name": "chainId",
3066
+ "type": "uint256"
3067
+ },
3068
+ {
3069
+ "internalType": "uint256",
3070
+ "name": "nonce",
3071
+ "type": "uint256"
3072
+ },
3073
+ {
3074
+ "internalType": "address",
3075
+ "name": "handlerContract",
3076
+ "type": "address"
3077
+ },
3078
+ {
3079
+ "internalType": "bytes4",
3080
+ "name": "handlerSelector",
3081
+ "type": "bytes4"
3082
+ },
3083
+ {
3084
+ "internalType": "enum EngineBlox.TxAction",
3085
+ "name": "action",
3086
+ "type": "uint8"
3087
+ },
3088
+ {
3089
+ "internalType": "uint256",
3090
+ "name": "deadline",
3091
+ "type": "uint256"
3092
+ },
3093
+ {
3094
+ "internalType": "uint256",
3095
+ "name": "maxGasPrice",
3096
+ "type": "uint256"
3097
+ },
3098
+ {
3099
+ "internalType": "address",
3100
+ "name": "signer",
3101
+ "type": "address"
3102
+ }
3103
+ ],
3104
+ "internalType": "struct EngineBlox.MetaTxParams",
3105
+ "name": "params",
3106
+ "type": "tuple"
3107
+ },
3108
+ {
3109
+ "internalType": "bytes32",
3110
+ "name": "message",
3111
+ "type": "bytes32"
3112
+ },
3113
+ {
3114
+ "internalType": "bytes",
3115
+ "name": "signature",
3116
+ "type": "bytes"
3117
+ },
3118
+ {
3119
+ "internalType": "bytes",
3120
+ "name": "data",
3121
+ "type": "bytes"
3122
+ }
3123
+ ],
3124
+ "internalType": "struct EngineBlox.MetaTransaction",
3125
+ "name": "metaTx",
3126
+ "type": "tuple"
3127
+ }
3128
+ ],
3129
+ "name": "updateTimeLockRequestAndApprove",
3130
+ "outputs": [
3131
+ {
3132
+ "internalType": "uint256",
3133
+ "name": "",
3134
+ "type": "uint256"
3135
+ }
3136
+ ],
3137
+ "stateMutability": "nonpayable",
3138
+ "type": "function"
3139
+ },
3140
+ {
3141
+ "inputs": [
3142
+ {
3143
+ "internalType": "address",
3144
+ "name": "initialOwner",
3145
+ "type": "address"
3146
+ },
3147
+ {
3148
+ "internalType": "address",
3149
+ "name": "broadcaster",
3150
+ "type": "address"
3151
+ },
3152
+ {
3153
+ "internalType": "address",
3154
+ "name": "recovery",
3155
+ "type": "address"
3156
+ },
3157
+ {
3158
+ "internalType": "uint256",
3159
+ "name": "timeLockPeriodSec",
3160
+ "type": "uint256"
3161
+ },
3162
+ {
3163
+ "internalType": "address",
3164
+ "name": "eventForwarder",
3165
+ "type": "address"
3166
+ }
3167
+ ],
3168
+ "name": "initialize",
3169
+ "outputs": [],
3170
+ "stateMutability": "nonpayable",
3171
+ "type": "function"
3172
+ },
3173
+ {
3174
+ "inputs": [
3175
+ {
3176
+ "internalType": "string",
3177
+ "name": "name",
3178
+ "type": "string"
3179
+ },
3180
+ {
3181
+ "internalType": "string",
3182
+ "name": "symbol",
3183
+ "type": "string"
3184
+ },
3185
+ {
3186
+ "internalType": "address",
3187
+ "name": "initialOwner",
3188
+ "type": "address"
3189
+ },
3190
+ {
3191
+ "internalType": "address",
3192
+ "name": "broadcaster",
3193
+ "type": "address"
3194
+ },
3195
+ {
3196
+ "internalType": "address",
3197
+ "name": "recovery",
3198
+ "type": "address"
3199
+ },
3200
+ {
3201
+ "internalType": "uint256",
3202
+ "name": "timeLockPeriodSec",
3203
+ "type": "uint256"
3204
+ },
3205
+ {
3206
+ "internalType": "address",
3207
+ "name": "eventForwarder",
3208
+ "type": "address"
3209
+ }
3210
+ ],
3211
+ "name": "initialize",
3212
+ "outputs": [],
3213
+ "stateMutability": "nonpayable",
3214
+ "type": "function"
3215
+ },
3216
+ {
3217
+ "inputs": [
3218
+ {
3219
+ "components": [
3220
+ {
3221
+ "components": [
3222
+ {
3223
+ "internalType": "uint256",
3224
+ "name": "txId",
3225
+ "type": "uint256"
3226
+ },
3227
+ {
3228
+ "internalType": "uint256",
3229
+ "name": "releaseTime",
3230
+ "type": "uint256"
3231
+ },
3232
+ {
3233
+ "internalType": "enum EngineBlox.TxStatus",
3234
+ "name": "status",
3235
+ "type": "uint8"
3236
+ },
3237
+ {
3238
+ "components": [
3239
+ {
3240
+ "internalType": "address",
3241
+ "name": "requester",
3242
+ "type": "address"
3243
+ },
3244
+ {
3245
+ "internalType": "address",
3246
+ "name": "target",
3247
+ "type": "address"
3248
+ },
3249
+ {
3250
+ "internalType": "uint256",
3251
+ "name": "value",
3252
+ "type": "uint256"
3253
+ },
3254
+ {
3255
+ "internalType": "uint256",
3256
+ "name": "gasLimit",
3257
+ "type": "uint256"
3258
+ },
3259
+ {
3260
+ "internalType": "bytes32",
3261
+ "name": "operationType",
3262
+ "type": "bytes32"
3263
+ },
3264
+ {
3265
+ "internalType": "bytes4",
3266
+ "name": "executionSelector",
3267
+ "type": "bytes4"
3268
+ },
3269
+ {
3270
+ "internalType": "bytes",
3271
+ "name": "executionParams",
3272
+ "type": "bytes"
3273
+ }
3274
+ ],
3275
+ "internalType": "struct EngineBlox.TxParams",
3276
+ "name": "params",
3277
+ "type": "tuple"
3278
+ },
3279
+ {
3280
+ "internalType": "bytes32",
3281
+ "name": "message",
3282
+ "type": "bytes32"
3283
+ },
3284
+ {
3285
+ "internalType": "bytes",
3286
+ "name": "result",
3287
+ "type": "bytes"
3288
+ },
3289
+ {
3290
+ "components": [
3291
+ {
3292
+ "internalType": "address",
3293
+ "name": "recipient",
3294
+ "type": "address"
3295
+ },
3296
+ {
3297
+ "internalType": "uint256",
3298
+ "name": "nativeTokenAmount",
3299
+ "type": "uint256"
3300
+ },
3301
+ {
3302
+ "internalType": "address",
3303
+ "name": "erc20TokenAddress",
3304
+ "type": "address"
3305
+ },
3306
+ {
3307
+ "internalType": "uint256",
3308
+ "name": "erc20TokenAmount",
3309
+ "type": "uint256"
3310
+ }
3311
+ ],
3312
+ "internalType": "struct EngineBlox.PaymentDetails",
3313
+ "name": "payment",
3314
+ "type": "tuple"
3315
+ }
3316
+ ],
3317
+ "internalType": "struct EngineBlox.TxRecord",
3318
+ "name": "txRecord",
3319
+ "type": "tuple"
3320
+ },
3321
+ {
3322
+ "components": [
3323
+ {
3324
+ "internalType": "uint256",
3325
+ "name": "chainId",
3326
+ "type": "uint256"
3327
+ },
3328
+ {
3329
+ "internalType": "uint256",
3330
+ "name": "nonce",
3331
+ "type": "uint256"
3332
+ },
3333
+ {
3334
+ "internalType": "address",
3335
+ "name": "handlerContract",
3336
+ "type": "address"
3337
+ },
3338
+ {
3339
+ "internalType": "bytes4",
3340
+ "name": "handlerSelector",
3341
+ "type": "bytes4"
3342
+ },
3343
+ {
3344
+ "internalType": "enum EngineBlox.TxAction",
3345
+ "name": "action",
3346
+ "type": "uint8"
3347
+ },
3348
+ {
3349
+ "internalType": "uint256",
3350
+ "name": "deadline",
3351
+ "type": "uint256"
3352
+ },
3353
+ {
3354
+ "internalType": "uint256",
3355
+ "name": "maxGasPrice",
3356
+ "type": "uint256"
3357
+ },
3358
+ {
3359
+ "internalType": "address",
3360
+ "name": "signer",
3361
+ "type": "address"
3362
+ }
3363
+ ],
3364
+ "internalType": "struct EngineBlox.MetaTxParams",
3365
+ "name": "params",
3366
+ "type": "tuple"
3367
+ },
3368
+ {
3369
+ "internalType": "bytes32",
3370
+ "name": "message",
3371
+ "type": "bytes32"
3372
+ },
3373
+ {
3374
+ "internalType": "bytes",
3375
+ "name": "signature",
3376
+ "type": "bytes"
3377
+ },
3378
+ {
3379
+ "internalType": "bytes",
3380
+ "name": "data",
3381
+ "type": "bytes"
3382
+ }
3383
+ ],
3384
+ "internalType": "struct EngineBlox.MetaTransaction",
3385
+ "name": "metaTx",
3386
+ "type": "tuple"
3387
+ }
3388
+ ],
3389
+ "name": "mintWithMetaTx",
3390
+ "outputs": [
3391
+ {
3392
+ "internalType": "uint256",
3393
+ "name": "txId",
3394
+ "type": "uint256"
3395
+ }
3396
+ ],
3397
+ "stateMutability": "nonpayable",
3398
+ "type": "function"
3399
+ },
3400
+ {
3401
+ "inputs": [
3402
+ {
3403
+ "components": [
3404
+ {
3405
+ "components": [
3406
+ {
3407
+ "internalType": "uint256",
3408
+ "name": "txId",
3409
+ "type": "uint256"
3410
+ },
3411
+ {
3412
+ "internalType": "uint256",
3413
+ "name": "releaseTime",
3414
+ "type": "uint256"
3415
+ },
3416
+ {
3417
+ "internalType": "enum EngineBlox.TxStatus",
3418
+ "name": "status",
3419
+ "type": "uint8"
3420
+ },
3421
+ {
3422
+ "components": [
3423
+ {
3424
+ "internalType": "address",
3425
+ "name": "requester",
3426
+ "type": "address"
3427
+ },
3428
+ {
3429
+ "internalType": "address",
3430
+ "name": "target",
3431
+ "type": "address"
3432
+ },
3433
+ {
3434
+ "internalType": "uint256",
3435
+ "name": "value",
3436
+ "type": "uint256"
3437
+ },
3438
+ {
3439
+ "internalType": "uint256",
3440
+ "name": "gasLimit",
3441
+ "type": "uint256"
3442
+ },
3443
+ {
3444
+ "internalType": "bytes32",
3445
+ "name": "operationType",
3446
+ "type": "bytes32"
3447
+ },
3448
+ {
3449
+ "internalType": "bytes4",
3450
+ "name": "executionSelector",
3451
+ "type": "bytes4"
3452
+ },
3453
+ {
3454
+ "internalType": "bytes",
3455
+ "name": "executionParams",
3456
+ "type": "bytes"
3457
+ }
3458
+ ],
3459
+ "internalType": "struct EngineBlox.TxParams",
3460
+ "name": "params",
3461
+ "type": "tuple"
3462
+ },
3463
+ {
3464
+ "internalType": "bytes32",
3465
+ "name": "message",
3466
+ "type": "bytes32"
3467
+ },
3468
+ {
3469
+ "internalType": "bytes",
3470
+ "name": "result",
3471
+ "type": "bytes"
3472
+ },
3473
+ {
3474
+ "components": [
3475
+ {
3476
+ "internalType": "address",
3477
+ "name": "recipient",
3478
+ "type": "address"
3479
+ },
3480
+ {
3481
+ "internalType": "uint256",
3482
+ "name": "nativeTokenAmount",
3483
+ "type": "uint256"
3484
+ },
3485
+ {
3486
+ "internalType": "address",
3487
+ "name": "erc20TokenAddress",
3488
+ "type": "address"
3489
+ },
3490
+ {
3491
+ "internalType": "uint256",
3492
+ "name": "erc20TokenAmount",
3493
+ "type": "uint256"
3494
+ }
3495
+ ],
3496
+ "internalType": "struct EngineBlox.PaymentDetails",
3497
+ "name": "payment",
3498
+ "type": "tuple"
3499
+ }
3500
+ ],
3501
+ "internalType": "struct EngineBlox.TxRecord",
3502
+ "name": "txRecord",
3503
+ "type": "tuple"
3504
+ },
3505
+ {
3506
+ "components": [
3507
+ {
3508
+ "internalType": "uint256",
3509
+ "name": "chainId",
3510
+ "type": "uint256"
3511
+ },
3512
+ {
3513
+ "internalType": "uint256",
3514
+ "name": "nonce",
3515
+ "type": "uint256"
3516
+ },
3517
+ {
3518
+ "internalType": "address",
3519
+ "name": "handlerContract",
3520
+ "type": "address"
3521
+ },
3522
+ {
3523
+ "internalType": "bytes4",
3524
+ "name": "handlerSelector",
3525
+ "type": "bytes4"
3526
+ },
3527
+ {
3528
+ "internalType": "enum EngineBlox.TxAction",
3529
+ "name": "action",
3530
+ "type": "uint8"
3531
+ },
3532
+ {
3533
+ "internalType": "uint256",
3534
+ "name": "deadline",
3535
+ "type": "uint256"
3536
+ },
3537
+ {
3538
+ "internalType": "uint256",
3539
+ "name": "maxGasPrice",
3540
+ "type": "uint256"
3541
+ },
3542
+ {
3543
+ "internalType": "address",
3544
+ "name": "signer",
3545
+ "type": "address"
3546
+ }
3547
+ ],
3548
+ "internalType": "struct EngineBlox.MetaTxParams",
3549
+ "name": "params",
3550
+ "type": "tuple"
3551
+ },
3552
+ {
3553
+ "internalType": "bytes32",
3554
+ "name": "message",
3555
+ "type": "bytes32"
3556
+ },
3557
+ {
3558
+ "internalType": "bytes",
3559
+ "name": "signature",
3560
+ "type": "bytes"
3561
+ },
3562
+ {
3563
+ "internalType": "bytes",
3564
+ "name": "data",
3565
+ "type": "bytes"
3566
+ }
3567
+ ],
3568
+ "internalType": "struct EngineBlox.MetaTransaction",
3569
+ "name": "metaTx",
3570
+ "type": "tuple"
3571
+ }
3572
+ ],
3573
+ "name": "burnWithMetaTx",
3574
+ "outputs": [
3575
+ {
3576
+ "internalType": "uint256",
3577
+ "name": "txId",
3578
+ "type": "uint256"
3579
+ }
3580
+ ],
3581
+ "stateMutability": "nonpayable",
3582
+ "type": "function"
3583
+ },
3584
+ {
3585
+ "inputs": [
3586
+ {
3587
+ "internalType": "address",
3588
+ "name": "to",
3589
+ "type": "address"
3590
+ },
3591
+ {
3592
+ "internalType": "uint256",
3593
+ "name": "amount",
3594
+ "type": "uint256"
3595
+ },
3596
+ {
3597
+ "components": [
3598
+ {
3599
+ "internalType": "uint256",
3600
+ "name": "deadline",
3601
+ "type": "uint256"
3602
+ },
3603
+ {
3604
+ "internalType": "uint256",
3605
+ "name": "maxGasPrice",
3606
+ "type": "uint256"
3607
+ }
3608
+ ],
3609
+ "internalType": "struct SimpleRWA20.TokenMetaTxParams",
3610
+ "name": "params",
3611
+ "type": "tuple"
3612
+ }
3613
+ ],
3614
+ "name": "generateUnsignedMintMetaTx",
3615
+ "outputs": [
3616
+ {
3617
+ "components": [
3618
+ {
3619
+ "components": [
3620
+ {
3621
+ "internalType": "uint256",
3622
+ "name": "txId",
3623
+ "type": "uint256"
3624
+ },
3625
+ {
3626
+ "internalType": "uint256",
3627
+ "name": "releaseTime",
3628
+ "type": "uint256"
3629
+ },
3630
+ {
3631
+ "internalType": "enum EngineBlox.TxStatus",
3632
+ "name": "status",
3633
+ "type": "uint8"
3634
+ },
3635
+ {
3636
+ "components": [
3637
+ {
3638
+ "internalType": "address",
3639
+ "name": "requester",
3640
+ "type": "address"
3641
+ },
3642
+ {
3643
+ "internalType": "address",
3644
+ "name": "target",
3645
+ "type": "address"
3646
+ },
3647
+ {
3648
+ "internalType": "uint256",
3649
+ "name": "value",
3650
+ "type": "uint256"
3651
+ },
3652
+ {
3653
+ "internalType": "uint256",
3654
+ "name": "gasLimit",
3655
+ "type": "uint256"
3656
+ },
3657
+ {
3658
+ "internalType": "bytes32",
3659
+ "name": "operationType",
3660
+ "type": "bytes32"
3661
+ },
3662
+ {
3663
+ "internalType": "bytes4",
3664
+ "name": "executionSelector",
3665
+ "type": "bytes4"
3666
+ },
3667
+ {
3668
+ "internalType": "bytes",
3669
+ "name": "executionParams",
3670
+ "type": "bytes"
3671
+ }
3672
+ ],
3673
+ "internalType": "struct EngineBlox.TxParams",
3674
+ "name": "params",
3675
+ "type": "tuple"
3676
+ },
3677
+ {
3678
+ "internalType": "bytes32",
3679
+ "name": "message",
3680
+ "type": "bytes32"
3681
+ },
3682
+ {
3683
+ "internalType": "bytes",
3684
+ "name": "result",
3685
+ "type": "bytes"
3686
+ },
3687
+ {
3688
+ "components": [
3689
+ {
3690
+ "internalType": "address",
3691
+ "name": "recipient",
3692
+ "type": "address"
3693
+ },
3694
+ {
3695
+ "internalType": "uint256",
3696
+ "name": "nativeTokenAmount",
3697
+ "type": "uint256"
3698
+ },
3699
+ {
3700
+ "internalType": "address",
3701
+ "name": "erc20TokenAddress",
3702
+ "type": "address"
3703
+ },
3704
+ {
3705
+ "internalType": "uint256",
3706
+ "name": "erc20TokenAmount",
3707
+ "type": "uint256"
3708
+ }
3709
+ ],
3710
+ "internalType": "struct EngineBlox.PaymentDetails",
3711
+ "name": "payment",
3712
+ "type": "tuple"
3713
+ }
3714
+ ],
3715
+ "internalType": "struct EngineBlox.TxRecord",
3716
+ "name": "txRecord",
3717
+ "type": "tuple"
3718
+ },
3719
+ {
3720
+ "components": [
3721
+ {
3722
+ "internalType": "uint256",
3723
+ "name": "chainId",
3724
+ "type": "uint256"
3725
+ },
3726
+ {
3727
+ "internalType": "uint256",
3728
+ "name": "nonce",
3729
+ "type": "uint256"
3730
+ },
3731
+ {
3732
+ "internalType": "address",
3733
+ "name": "handlerContract",
3734
+ "type": "address"
3735
+ },
3736
+ {
3737
+ "internalType": "bytes4",
3738
+ "name": "handlerSelector",
3739
+ "type": "bytes4"
3740
+ },
3741
+ {
3742
+ "internalType": "enum EngineBlox.TxAction",
3743
+ "name": "action",
3744
+ "type": "uint8"
3745
+ },
3746
+ {
3747
+ "internalType": "uint256",
3748
+ "name": "deadline",
3749
+ "type": "uint256"
3750
+ },
3751
+ {
3752
+ "internalType": "uint256",
3753
+ "name": "maxGasPrice",
3754
+ "type": "uint256"
3755
+ },
3756
+ {
3757
+ "internalType": "address",
3758
+ "name": "signer",
3759
+ "type": "address"
3760
+ }
3761
+ ],
3762
+ "internalType": "struct EngineBlox.MetaTxParams",
3763
+ "name": "params",
3764
+ "type": "tuple"
3765
+ },
3766
+ {
3767
+ "internalType": "bytes32",
3768
+ "name": "message",
3769
+ "type": "bytes32"
3770
+ },
3771
+ {
3772
+ "internalType": "bytes",
3773
+ "name": "signature",
3774
+ "type": "bytes"
3775
+ },
3776
+ {
3777
+ "internalType": "bytes",
3778
+ "name": "data",
3779
+ "type": "bytes"
3780
+ }
3781
+ ],
3782
+ "internalType": "struct EngineBlox.MetaTransaction",
3783
+ "name": "",
3784
+ "type": "tuple"
3785
+ }
3786
+ ],
3787
+ "stateMutability": "view",
3788
+ "type": "function"
3789
+ },
3790
+ {
3791
+ "inputs": [
3792
+ {
3793
+ "internalType": "address",
3794
+ "name": "from",
3795
+ "type": "address"
3796
+ },
3797
+ {
3798
+ "internalType": "uint256",
3799
+ "name": "amount",
3800
+ "type": "uint256"
3801
+ },
3802
+ {
3803
+ "components": [
3804
+ {
3805
+ "internalType": "uint256",
3806
+ "name": "deadline",
3807
+ "type": "uint256"
3808
+ },
3809
+ {
3810
+ "internalType": "uint256",
3811
+ "name": "maxGasPrice",
3812
+ "type": "uint256"
3813
+ }
3814
+ ],
3815
+ "internalType": "struct SimpleRWA20.TokenMetaTxParams",
3816
+ "name": "params",
3817
+ "type": "tuple"
3818
+ }
3819
+ ],
3820
+ "name": "generateUnsignedBurnMetaTx",
3821
+ "outputs": [
3822
+ {
3823
+ "components": [
3824
+ {
3825
+ "components": [
3826
+ {
3827
+ "internalType": "uint256",
3828
+ "name": "txId",
3829
+ "type": "uint256"
3830
+ },
3831
+ {
3832
+ "internalType": "uint256",
3833
+ "name": "releaseTime",
3834
+ "type": "uint256"
3835
+ },
3836
+ {
3837
+ "internalType": "enum EngineBlox.TxStatus",
3838
+ "name": "status",
3839
+ "type": "uint8"
3840
+ },
3841
+ {
3842
+ "components": [
3843
+ {
3844
+ "internalType": "address",
3845
+ "name": "requester",
3846
+ "type": "address"
3847
+ },
3848
+ {
3849
+ "internalType": "address",
3850
+ "name": "target",
3851
+ "type": "address"
3852
+ },
3853
+ {
3854
+ "internalType": "uint256",
3855
+ "name": "value",
3856
+ "type": "uint256"
3857
+ },
3858
+ {
3859
+ "internalType": "uint256",
3860
+ "name": "gasLimit",
3861
+ "type": "uint256"
3862
+ },
3863
+ {
3864
+ "internalType": "bytes32",
3865
+ "name": "operationType",
3866
+ "type": "bytes32"
3867
+ },
3868
+ {
3869
+ "internalType": "bytes4",
3870
+ "name": "executionSelector",
3871
+ "type": "bytes4"
3872
+ },
3873
+ {
3874
+ "internalType": "bytes",
3875
+ "name": "executionParams",
3876
+ "type": "bytes"
3877
+ }
3878
+ ],
3879
+ "internalType": "struct EngineBlox.TxParams",
3880
+ "name": "params",
3881
+ "type": "tuple"
3882
+ },
3883
+ {
3884
+ "internalType": "bytes32",
3885
+ "name": "message",
3886
+ "type": "bytes32"
3887
+ },
3888
+ {
3889
+ "internalType": "bytes",
3890
+ "name": "result",
3891
+ "type": "bytes"
3892
+ },
3893
+ {
3894
+ "components": [
3895
+ {
3896
+ "internalType": "address",
3897
+ "name": "recipient",
3898
+ "type": "address"
3899
+ },
3900
+ {
3901
+ "internalType": "uint256",
3902
+ "name": "nativeTokenAmount",
3903
+ "type": "uint256"
3904
+ },
3905
+ {
3906
+ "internalType": "address",
3907
+ "name": "erc20TokenAddress",
3908
+ "type": "address"
3909
+ },
3910
+ {
3911
+ "internalType": "uint256",
3912
+ "name": "erc20TokenAmount",
3913
+ "type": "uint256"
3914
+ }
3915
+ ],
3916
+ "internalType": "struct EngineBlox.PaymentDetails",
3917
+ "name": "payment",
3918
+ "type": "tuple"
3919
+ }
3920
+ ],
3921
+ "internalType": "struct EngineBlox.TxRecord",
3922
+ "name": "txRecord",
3923
+ "type": "tuple"
3924
+ },
3925
+ {
3926
+ "components": [
3927
+ {
3928
+ "internalType": "uint256",
3929
+ "name": "chainId",
3930
+ "type": "uint256"
3931
+ },
3932
+ {
3933
+ "internalType": "uint256",
3934
+ "name": "nonce",
3935
+ "type": "uint256"
3936
+ },
3937
+ {
3938
+ "internalType": "address",
3939
+ "name": "handlerContract",
3940
+ "type": "address"
3941
+ },
3942
+ {
3943
+ "internalType": "bytes4",
3944
+ "name": "handlerSelector",
3945
+ "type": "bytes4"
3946
+ },
3947
+ {
3948
+ "internalType": "enum EngineBlox.TxAction",
3949
+ "name": "action",
3950
+ "type": "uint8"
3951
+ },
3952
+ {
3953
+ "internalType": "uint256",
3954
+ "name": "deadline",
3955
+ "type": "uint256"
3956
+ },
3957
+ {
3958
+ "internalType": "uint256",
3959
+ "name": "maxGasPrice",
3960
+ "type": "uint256"
3961
+ },
3962
+ {
3963
+ "internalType": "address",
3964
+ "name": "signer",
3965
+ "type": "address"
3966
+ }
3967
+ ],
3968
+ "internalType": "struct EngineBlox.MetaTxParams",
3969
+ "name": "params",
3970
+ "type": "tuple"
3971
+ },
3972
+ {
3973
+ "internalType": "bytes32",
3974
+ "name": "message",
3975
+ "type": "bytes32"
3976
+ },
3977
+ {
3978
+ "internalType": "bytes",
3979
+ "name": "signature",
3980
+ "type": "bytes"
3981
+ },
3982
+ {
3983
+ "internalType": "bytes",
3984
+ "name": "data",
3985
+ "type": "bytes"
3986
+ }
3987
+ ],
3988
+ "internalType": "struct EngineBlox.MetaTransaction",
3989
+ "name": "",
3990
+ "type": "tuple"
3991
+ }
3992
+ ],
3993
+ "stateMutability": "view",
3994
+ "type": "function"
3995
+ },
3996
+ {
3997
+ "inputs": [
3998
+ {
3999
+ "internalType": "address",
4000
+ "name": "to",
4001
+ "type": "address"
4002
+ },
4003
+ {
4004
+ "internalType": "uint256",
4005
+ "name": "amount",
4006
+ "type": "uint256"
4007
+ }
4008
+ ],
4009
+ "name": "executeMint",
4010
+ "outputs": [],
4011
+ "stateMutability": "nonpayable",
4012
+ "type": "function"
4013
+ },
4014
+ {
4015
+ "inputs": [
4016
+ {
4017
+ "internalType": "address",
4018
+ "name": "from",
4019
+ "type": "address"
4020
+ },
4021
+ {
4022
+ "internalType": "uint256",
4023
+ "name": "amount",
4024
+ "type": "uint256"
4025
+ }
4026
+ ],
4027
+ "name": "executeBurn",
4028
+ "outputs": [],
4029
+ "stateMutability": "nonpayable",
4030
+ "type": "function"
4031
+ }
4032
+ ]