@bloxchain/sdk 1.0.0-alpha.2 → 1.0.0-alpha.20
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.
- package/README.md +376 -376
- package/abi/AccountBlox.abi.json +609 -2479
- package/abi/BareBlox.abi.json +94 -0
- package/abi/BaseStateMachine.abi.json +85 -45
- package/abi/CopyBlox.abi.json +1593 -0
- package/abi/EngineBlox.abi.json +73 -90
- package/abi/GuardController.abi.json +252 -806
- package/abi/GuardControllerDefinitions.abi.json +411 -0
- package/abi/IDefinition.abi.json +5 -0
- package/abi/RoleBlox.abi.json +375 -1590
- package/abi/RuntimeRBAC.abi.json +155 -218
- package/abi/RuntimeRBACDefinitions.abi.json +179 -0
- package/abi/SecureBlox.abi.json +436 -1511
- package/abi/SecureOwnable.abi.json +524 -1621
- package/abi/SecureOwnableDefinitions.abi.json +5 -0
- package/abi/SimpleRWA20.abi.json +478 -1756
- package/abi/SimpleRWA20Definitions.abi.json +5 -0
- package/abi/SimpleVault.abi.json +648 -2214
- package/abi/SimpleVaultDefinitions.abi.json +5 -0
- package/dist/abi/AccountBlox.abi.json +3929 -0
- package/dist/abi/BareBlox.abi.json +1378 -0
- package/dist/abi/BaseStateMachine.abi.json +1213 -1173
- package/dist/abi/CopyBlox.abi.json +1593 -0
- package/dist/abi/EngineBlox.abi.json +855 -0
- package/dist/abi/GuardController.abi.json +2222 -2776
- package/dist/abi/GuardControllerDefinitions.abi.json +411 -0
- package/dist/abi/IDefinition.abi.json +113 -108
- package/dist/abi/RoleBlox.abi.json +2994 -0
- package/dist/abi/RuntimeRBAC.abi.json +1540 -1603
- package/dist/abi/RuntimeRBACDefinitions.abi.json +381 -0
- package/dist/abi/SecureBlox.abi.json +2753 -0
- package/dist/abi/SecureOwnable.abi.json +2585 -3682
- package/dist/abi/SecureOwnableDefinitions.abi.json +416 -0
- package/dist/abi/SimpleRWA20.abi.json +4010 -0
- package/dist/abi/SimpleRWA20Definitions.abi.json +196 -0
- package/dist/abi/SimpleVault.abi.json +3385 -0
- package/dist/abi/SimpleVaultDefinitions.abi.json +274 -0
- package/dist/abi.d.ts +11 -0
- package/dist/abi.d.ts.map +1 -0
- package/dist/abi.js +10 -0
- package/dist/abi.js.map +1 -0
- package/dist/contracts/{BaseStateMachine.d.ts → core/BaseStateMachine.d.ts} +20 -6
- package/dist/contracts/core/BaseStateMachine.d.ts.map +1 -0
- package/dist/contracts/{BaseStateMachine.js → core/BaseStateMachine.js} +88 -38
- package/dist/contracts/core/BaseStateMachine.js.map +1 -0
- package/dist/contracts/{GuardController.d.ts → core/GuardController.d.ts} +22 -15
- package/dist/contracts/core/GuardController.d.ts.map +1 -0
- package/dist/contracts/{GuardController.js → core/GuardController.js} +19 -21
- package/dist/contracts/core/GuardController.js.map +1 -0
- package/dist/contracts/core/RuntimeRBAC.d.ts +27 -0
- package/dist/contracts/core/RuntimeRBAC.d.ts.map +1 -0
- package/dist/contracts/core/RuntimeRBAC.js +33 -0
- package/dist/contracts/core/RuntimeRBAC.js.map +1 -0
- package/dist/contracts/{SecureOwnable.d.ts → core/SecureOwnable.d.ts} +5 -15
- package/dist/contracts/core/SecureOwnable.d.ts.map +1 -0
- package/dist/contracts/{SecureOwnable.js → core/SecureOwnable.js} +4 -23
- package/dist/contracts/core/SecureOwnable.js.map +1 -0
- package/dist/index.d.ts +8 -7
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/interfaces/base.index.d.ts +10 -2
- package/dist/interfaces/base.index.d.ts.map +1 -1
- package/dist/interfaces/base.state.machine.index.d.ts +3 -2
- package/dist/interfaces/base.state.machine.index.d.ts.map +1 -1
- package/dist/interfaces/core.access.index.d.ts +2 -16
- package/dist/interfaces/core.access.index.d.ts.map +1 -1
- package/dist/interfaces/core.execution.index.d.ts +8 -11
- package/dist/interfaces/core.execution.index.d.ts.map +1 -1
- package/dist/interfaces/core.security.index.d.ts +1 -4
- package/dist/interfaces/core.security.index.d.ts.map +1 -1
- package/dist/lib/Definition.d.ts.map +1 -1
- package/dist/lib/Definition.js +1 -0
- package/dist/lib/Definition.js.map +1 -1
- package/dist/lib/EngineBlox.d.ts +16 -49
- package/dist/lib/EngineBlox.d.ts.map +1 -1
- package/dist/lib/EngineBlox.js +20 -108
- package/dist/lib/EngineBlox.js.map +1 -1
- package/dist/lib/definitions/GuardControllerDefinitions.d.ts +34 -7
- package/dist/lib/definitions/GuardControllerDefinitions.d.ts.map +1 -1
- package/dist/lib/definitions/GuardControllerDefinitions.js +62 -10
- package/dist/lib/definitions/GuardControllerDefinitions.js.map +1 -1
- package/dist/lib/definitions/RuntimeRBACDefinitions.d.ts +48 -7
- package/dist/lib/definitions/RuntimeRBACDefinitions.d.ts.map +1 -1
- package/dist/lib/definitions/RuntimeRBACDefinitions.js +73 -10
- package/dist/lib/definitions/RuntimeRBACDefinitions.js.map +1 -1
- package/dist/lib/definitions/SecureOwnableDefinitions.d.ts +12 -7
- package/dist/lib/definitions/SecureOwnableDefinitions.d.ts.map +1 -1
- package/dist/lib/definitions/SecureOwnableDefinitions.js +25 -9
- package/dist/lib/definitions/SecureOwnableDefinitions.js.map +1 -1
- package/dist/lib/definitions/index.d.ts +6 -4
- package/dist/lib/definitions/index.d.ts.map +1 -1
- package/dist/lib/definitions/index.js +5 -4
- package/dist/lib/definitions/index.js.map +1 -1
- package/dist/types/base.state.machine.index.d.ts +0 -2
- package/dist/types/base.state.machine.index.d.ts.map +1 -1
- package/dist/types/base.state.machine.index.js +1 -3
- package/dist/types/base.state.machine.index.js.map +1 -1
- package/dist/types/core.execution.index.d.ts +1 -0
- package/dist/types/core.execution.index.d.ts.map +1 -1
- package/dist/types/core.execution.index.js +1 -0
- package/dist/types/core.execution.index.js.map +1 -1
- package/dist/types/core.security.index.d.ts.map +1 -1
- package/dist/types/core.security.index.js +2 -2
- package/dist/types/core.security.index.js.map +1 -1
- package/dist/types/definition.index.d.ts +2 -0
- package/dist/types/definition.index.d.ts.map +1 -1
- package/dist/types/definition.index.js.map +1 -1
- package/dist/utils/contract-errors.d.ts +125 -6
- package/dist/utils/contract-errors.d.ts.map +1 -1
- package/dist/utils/contract-errors.js +375 -107
- package/dist/utils/contract-errors.js.map +1 -1
- package/dist/utils/interface-ids.js +8 -8
- package/dist/utils/interface-ids.js.map +1 -1
- package/dist/utils/metaTx/metaTransaction.d.ts +103 -7
- package/dist/utils/metaTx/metaTransaction.d.ts.map +1 -1
- package/dist/utils/metaTx/metaTransaction.js +136 -25
- package/dist/utils/metaTx/metaTransaction.js.map +1 -1
- package/package.json +10 -6
- package/dist/contracts/BaseStateMachine.d.ts.map +0 -1
- package/dist/contracts/BaseStateMachine.js.map +0 -1
- package/dist/contracts/GuardController.d.ts.map +0 -1
- package/dist/contracts/GuardController.js.map +0 -1
- package/dist/contracts/RuntimeRBAC.d.ts +0 -54
- package/dist/contracts/RuntimeRBAC.d.ts.map +0 -1
- package/dist/contracts/RuntimeRBAC.js +0 -58
- package/dist/contracts/RuntimeRBAC.js.map +0 -1
- package/dist/contracts/SecureOwnable.d.ts.map +0 -1
- package/dist/contracts/SecureOwnable.js.map +0 -1
package/abi/AccountBlox.abi.json
CHANGED
|
@@ -50,18 +50,18 @@
|
|
|
50
50
|
"type": "bytes4"
|
|
51
51
|
}
|
|
52
52
|
],
|
|
53
|
-
"name": "
|
|
53
|
+
"name": "ContractFunctionMustBeProtected",
|
|
54
54
|
"type": "error"
|
|
55
55
|
},
|
|
56
56
|
{
|
|
57
57
|
"inputs": [
|
|
58
58
|
{
|
|
59
|
-
"internalType": "
|
|
60
|
-
"name": "
|
|
61
|
-
"type": "
|
|
59
|
+
"internalType": "bytes4",
|
|
60
|
+
"name": "functionSelector",
|
|
61
|
+
"type": "bytes4"
|
|
62
62
|
}
|
|
63
63
|
],
|
|
64
|
-
"name": "
|
|
64
|
+
"name": "InternalFunctionNotAccessible",
|
|
65
65
|
"type": "error"
|
|
66
66
|
},
|
|
67
67
|
{
|
|
@@ -69,31 +69,41 @@
|
|
|
69
69
|
"name": "InvalidInitialization",
|
|
70
70
|
"type": "error"
|
|
71
71
|
},
|
|
72
|
+
{
|
|
73
|
+
"inputs": [],
|
|
74
|
+
"name": "InvalidPayment",
|
|
75
|
+
"type": "error"
|
|
76
|
+
},
|
|
72
77
|
{
|
|
73
78
|
"inputs": [
|
|
74
79
|
{
|
|
75
|
-
"internalType": "
|
|
76
|
-
"name": "
|
|
77
|
-
"type": "
|
|
80
|
+
"internalType": "address",
|
|
81
|
+
"name": "signedContract",
|
|
82
|
+
"type": "address"
|
|
78
83
|
},
|
|
79
84
|
{
|
|
80
|
-
"internalType": "
|
|
81
|
-
"name": "
|
|
82
|
-
"type": "
|
|
85
|
+
"internalType": "address",
|
|
86
|
+
"name": "entryContract",
|
|
87
|
+
"type": "address"
|
|
83
88
|
}
|
|
84
89
|
],
|
|
85
|
-
"name": "
|
|
90
|
+
"name": "MetaTxHandlerContractMismatch",
|
|
86
91
|
"type": "error"
|
|
87
92
|
},
|
|
88
93
|
{
|
|
89
94
|
"inputs": [
|
|
90
95
|
{
|
|
91
|
-
"internalType": "
|
|
92
|
-
"name": "
|
|
93
|
-
"type": "
|
|
96
|
+
"internalType": "bytes4",
|
|
97
|
+
"name": "signedSelector",
|
|
98
|
+
"type": "bytes4"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"internalType": "bytes4",
|
|
102
|
+
"name": "entrySelector",
|
|
103
|
+
"type": "bytes4"
|
|
94
104
|
}
|
|
95
105
|
],
|
|
96
|
-
"name": "
|
|
106
|
+
"name": "MetaTxHandlerSelectorMismatch",
|
|
97
107
|
"type": "error"
|
|
98
108
|
},
|
|
99
109
|
{
|
|
@@ -112,22 +122,6 @@
|
|
|
112
122
|
"name": "NotInitializing",
|
|
113
123
|
"type": "error"
|
|
114
124
|
},
|
|
115
|
-
{
|
|
116
|
-
"inputs": [
|
|
117
|
-
{
|
|
118
|
-
"internalType": "address",
|
|
119
|
-
"name": "newAddress",
|
|
120
|
-
"type": "address"
|
|
121
|
-
},
|
|
122
|
-
{
|
|
123
|
-
"internalType": "address",
|
|
124
|
-
"name": "currentAddress",
|
|
125
|
-
"type": "address"
|
|
126
|
-
}
|
|
127
|
-
],
|
|
128
|
-
"name": "NotNewAddress",
|
|
129
|
-
"type": "error"
|
|
130
|
-
},
|
|
131
125
|
{
|
|
132
126
|
"inputs": [],
|
|
133
127
|
"name": "NotSupported",
|
|
@@ -175,17 +169,6 @@
|
|
|
175
169
|
"name": "ReentrancyGuardReentrantCall",
|
|
176
170
|
"type": "error"
|
|
177
171
|
},
|
|
178
|
-
{
|
|
179
|
-
"inputs": [
|
|
180
|
-
{
|
|
181
|
-
"internalType": "bytes32",
|
|
182
|
-
"name": "resourceId",
|
|
183
|
-
"type": "bytes32"
|
|
184
|
-
}
|
|
185
|
-
],
|
|
186
|
-
"name": "ResourceAlreadyExists",
|
|
187
|
-
"type": "error"
|
|
188
|
-
},
|
|
189
172
|
{
|
|
190
173
|
"inputs": [
|
|
191
174
|
{
|
|
@@ -275,13 +258,13 @@
|
|
|
275
258
|
{
|
|
276
259
|
"indexed": true,
|
|
277
260
|
"internalType": "address",
|
|
278
|
-
"name": "
|
|
261
|
+
"name": "sender",
|
|
279
262
|
"type": "address"
|
|
280
263
|
},
|
|
281
264
|
{
|
|
282
265
|
"indexed": false,
|
|
283
266
|
"internalType": "uint256",
|
|
284
|
-
"name": "
|
|
267
|
+
"name": "value",
|
|
285
268
|
"type": "uint256"
|
|
286
269
|
}
|
|
287
270
|
],
|
|
@@ -316,105 +299,9 @@
|
|
|
316
299
|
"name": "approveTimeLockExecution",
|
|
317
300
|
"outputs": [
|
|
318
301
|
{
|
|
319
|
-
"
|
|
320
|
-
{
|
|
321
|
-
"internalType": "uint256",
|
|
322
|
-
"name": "txId",
|
|
323
|
-
"type": "uint256"
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
"internalType": "uint256",
|
|
327
|
-
"name": "releaseTime",
|
|
328
|
-
"type": "uint256"
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
332
|
-
"name": "status",
|
|
333
|
-
"type": "uint8"
|
|
334
|
-
},
|
|
335
|
-
{
|
|
336
|
-
"components": [
|
|
337
|
-
{
|
|
338
|
-
"internalType": "address",
|
|
339
|
-
"name": "requester",
|
|
340
|
-
"type": "address"
|
|
341
|
-
},
|
|
342
|
-
{
|
|
343
|
-
"internalType": "address",
|
|
344
|
-
"name": "target",
|
|
345
|
-
"type": "address"
|
|
346
|
-
},
|
|
347
|
-
{
|
|
348
|
-
"internalType": "uint256",
|
|
349
|
-
"name": "value",
|
|
350
|
-
"type": "uint256"
|
|
351
|
-
},
|
|
352
|
-
{
|
|
353
|
-
"internalType": "uint256",
|
|
354
|
-
"name": "gasLimit",
|
|
355
|
-
"type": "uint256"
|
|
356
|
-
},
|
|
357
|
-
{
|
|
358
|
-
"internalType": "bytes32",
|
|
359
|
-
"name": "operationType",
|
|
360
|
-
"type": "bytes32"
|
|
361
|
-
},
|
|
362
|
-
{
|
|
363
|
-
"internalType": "bytes4",
|
|
364
|
-
"name": "executionSelector",
|
|
365
|
-
"type": "bytes4"
|
|
366
|
-
},
|
|
367
|
-
{
|
|
368
|
-
"internalType": "bytes",
|
|
369
|
-
"name": "executionParams",
|
|
370
|
-
"type": "bytes"
|
|
371
|
-
}
|
|
372
|
-
],
|
|
373
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
374
|
-
"name": "params",
|
|
375
|
-
"type": "tuple"
|
|
376
|
-
},
|
|
377
|
-
{
|
|
378
|
-
"internalType": "bytes32",
|
|
379
|
-
"name": "message",
|
|
380
|
-
"type": "bytes32"
|
|
381
|
-
},
|
|
382
|
-
{
|
|
383
|
-
"internalType": "bytes",
|
|
384
|
-
"name": "result",
|
|
385
|
-
"type": "bytes"
|
|
386
|
-
},
|
|
387
|
-
{
|
|
388
|
-
"components": [
|
|
389
|
-
{
|
|
390
|
-
"internalType": "address",
|
|
391
|
-
"name": "recipient",
|
|
392
|
-
"type": "address"
|
|
393
|
-
},
|
|
394
|
-
{
|
|
395
|
-
"internalType": "uint256",
|
|
396
|
-
"name": "nativeTokenAmount",
|
|
397
|
-
"type": "uint256"
|
|
398
|
-
},
|
|
399
|
-
{
|
|
400
|
-
"internalType": "address",
|
|
401
|
-
"name": "erc20TokenAddress",
|
|
402
|
-
"type": "address"
|
|
403
|
-
},
|
|
404
|
-
{
|
|
405
|
-
"internalType": "uint256",
|
|
406
|
-
"name": "erc20TokenAmount",
|
|
407
|
-
"type": "uint256"
|
|
408
|
-
}
|
|
409
|
-
],
|
|
410
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
411
|
-
"name": "payment",
|
|
412
|
-
"type": "tuple"
|
|
413
|
-
}
|
|
414
|
-
],
|
|
415
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
302
|
+
"internalType": "uint256",
|
|
416
303
|
"name": "",
|
|
417
|
-
"type": "
|
|
304
|
+
"type": "uint256"
|
|
418
305
|
}
|
|
419
306
|
],
|
|
420
307
|
"stateMutability": "nonpayable",
|
|
@@ -596,105 +483,9 @@
|
|
|
596
483
|
"name": "approveTimeLockExecutionWithMetaTx",
|
|
597
484
|
"outputs": [
|
|
598
485
|
{
|
|
599
|
-
"
|
|
600
|
-
{
|
|
601
|
-
"internalType": "uint256",
|
|
602
|
-
"name": "txId",
|
|
603
|
-
"type": "uint256"
|
|
604
|
-
},
|
|
605
|
-
{
|
|
606
|
-
"internalType": "uint256",
|
|
607
|
-
"name": "releaseTime",
|
|
608
|
-
"type": "uint256"
|
|
609
|
-
},
|
|
610
|
-
{
|
|
611
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
612
|
-
"name": "status",
|
|
613
|
-
"type": "uint8"
|
|
614
|
-
},
|
|
615
|
-
{
|
|
616
|
-
"components": [
|
|
617
|
-
{
|
|
618
|
-
"internalType": "address",
|
|
619
|
-
"name": "requester",
|
|
620
|
-
"type": "address"
|
|
621
|
-
},
|
|
622
|
-
{
|
|
623
|
-
"internalType": "address",
|
|
624
|
-
"name": "target",
|
|
625
|
-
"type": "address"
|
|
626
|
-
},
|
|
627
|
-
{
|
|
628
|
-
"internalType": "uint256",
|
|
629
|
-
"name": "value",
|
|
630
|
-
"type": "uint256"
|
|
631
|
-
},
|
|
632
|
-
{
|
|
633
|
-
"internalType": "uint256",
|
|
634
|
-
"name": "gasLimit",
|
|
635
|
-
"type": "uint256"
|
|
636
|
-
},
|
|
637
|
-
{
|
|
638
|
-
"internalType": "bytes32",
|
|
639
|
-
"name": "operationType",
|
|
640
|
-
"type": "bytes32"
|
|
641
|
-
},
|
|
642
|
-
{
|
|
643
|
-
"internalType": "bytes4",
|
|
644
|
-
"name": "executionSelector",
|
|
645
|
-
"type": "bytes4"
|
|
646
|
-
},
|
|
647
|
-
{
|
|
648
|
-
"internalType": "bytes",
|
|
649
|
-
"name": "executionParams",
|
|
650
|
-
"type": "bytes"
|
|
651
|
-
}
|
|
652
|
-
],
|
|
653
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
654
|
-
"name": "params",
|
|
655
|
-
"type": "tuple"
|
|
656
|
-
},
|
|
657
|
-
{
|
|
658
|
-
"internalType": "bytes32",
|
|
659
|
-
"name": "message",
|
|
660
|
-
"type": "bytes32"
|
|
661
|
-
},
|
|
662
|
-
{
|
|
663
|
-
"internalType": "bytes",
|
|
664
|
-
"name": "result",
|
|
665
|
-
"type": "bytes"
|
|
666
|
-
},
|
|
667
|
-
{
|
|
668
|
-
"components": [
|
|
669
|
-
{
|
|
670
|
-
"internalType": "address",
|
|
671
|
-
"name": "recipient",
|
|
672
|
-
"type": "address"
|
|
673
|
-
},
|
|
674
|
-
{
|
|
675
|
-
"internalType": "uint256",
|
|
676
|
-
"name": "nativeTokenAmount",
|
|
677
|
-
"type": "uint256"
|
|
678
|
-
},
|
|
679
|
-
{
|
|
680
|
-
"internalType": "address",
|
|
681
|
-
"name": "erc20TokenAddress",
|
|
682
|
-
"type": "address"
|
|
683
|
-
},
|
|
684
|
-
{
|
|
685
|
-
"internalType": "uint256",
|
|
686
|
-
"name": "erc20TokenAmount",
|
|
687
|
-
"type": "uint256"
|
|
688
|
-
}
|
|
689
|
-
],
|
|
690
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
691
|
-
"name": "payment",
|
|
692
|
-
"type": "tuple"
|
|
693
|
-
}
|
|
694
|
-
],
|
|
695
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
486
|
+
"internalType": "uint256",
|
|
696
487
|
"name": "",
|
|
697
|
-
"type": "
|
|
488
|
+
"type": "uint256"
|
|
698
489
|
}
|
|
699
490
|
],
|
|
700
491
|
"stateMutability": "nonpayable",
|
|
@@ -711,105 +502,9 @@
|
|
|
711
502
|
"name": "cancelTimeLockExecution",
|
|
712
503
|
"outputs": [
|
|
713
504
|
{
|
|
714
|
-
"
|
|
715
|
-
{
|
|
716
|
-
"internalType": "uint256",
|
|
717
|
-
"name": "txId",
|
|
718
|
-
"type": "uint256"
|
|
719
|
-
},
|
|
720
|
-
{
|
|
721
|
-
"internalType": "uint256",
|
|
722
|
-
"name": "releaseTime",
|
|
723
|
-
"type": "uint256"
|
|
724
|
-
},
|
|
725
|
-
{
|
|
726
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
727
|
-
"name": "status",
|
|
728
|
-
"type": "uint8"
|
|
729
|
-
},
|
|
730
|
-
{
|
|
731
|
-
"components": [
|
|
732
|
-
{
|
|
733
|
-
"internalType": "address",
|
|
734
|
-
"name": "requester",
|
|
735
|
-
"type": "address"
|
|
736
|
-
},
|
|
737
|
-
{
|
|
738
|
-
"internalType": "address",
|
|
739
|
-
"name": "target",
|
|
740
|
-
"type": "address"
|
|
741
|
-
},
|
|
742
|
-
{
|
|
743
|
-
"internalType": "uint256",
|
|
744
|
-
"name": "value",
|
|
745
|
-
"type": "uint256"
|
|
746
|
-
},
|
|
747
|
-
{
|
|
748
|
-
"internalType": "uint256",
|
|
749
|
-
"name": "gasLimit",
|
|
750
|
-
"type": "uint256"
|
|
751
|
-
},
|
|
752
|
-
{
|
|
753
|
-
"internalType": "bytes32",
|
|
754
|
-
"name": "operationType",
|
|
755
|
-
"type": "bytes32"
|
|
756
|
-
},
|
|
757
|
-
{
|
|
758
|
-
"internalType": "bytes4",
|
|
759
|
-
"name": "executionSelector",
|
|
760
|
-
"type": "bytes4"
|
|
761
|
-
},
|
|
762
|
-
{
|
|
763
|
-
"internalType": "bytes",
|
|
764
|
-
"name": "executionParams",
|
|
765
|
-
"type": "bytes"
|
|
766
|
-
}
|
|
767
|
-
],
|
|
768
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
769
|
-
"name": "params",
|
|
770
|
-
"type": "tuple"
|
|
771
|
-
},
|
|
772
|
-
{
|
|
773
|
-
"internalType": "bytes32",
|
|
774
|
-
"name": "message",
|
|
775
|
-
"type": "bytes32"
|
|
776
|
-
},
|
|
777
|
-
{
|
|
778
|
-
"internalType": "bytes",
|
|
779
|
-
"name": "result",
|
|
780
|
-
"type": "bytes"
|
|
781
|
-
},
|
|
782
|
-
{
|
|
783
|
-
"components": [
|
|
784
|
-
{
|
|
785
|
-
"internalType": "address",
|
|
786
|
-
"name": "recipient",
|
|
787
|
-
"type": "address"
|
|
788
|
-
},
|
|
789
|
-
{
|
|
790
|
-
"internalType": "uint256",
|
|
791
|
-
"name": "nativeTokenAmount",
|
|
792
|
-
"type": "uint256"
|
|
793
|
-
},
|
|
794
|
-
{
|
|
795
|
-
"internalType": "address",
|
|
796
|
-
"name": "erc20TokenAddress",
|
|
797
|
-
"type": "address"
|
|
798
|
-
},
|
|
799
|
-
{
|
|
800
|
-
"internalType": "uint256",
|
|
801
|
-
"name": "erc20TokenAmount",
|
|
802
|
-
"type": "uint256"
|
|
803
|
-
}
|
|
804
|
-
],
|
|
805
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
806
|
-
"name": "payment",
|
|
807
|
-
"type": "tuple"
|
|
808
|
-
}
|
|
809
|
-
],
|
|
810
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
505
|
+
"internalType": "uint256",
|
|
811
506
|
"name": "",
|
|
812
|
-
"type": "
|
|
507
|
+
"type": "uint256"
|
|
813
508
|
}
|
|
814
509
|
],
|
|
815
510
|
"stateMutability": "nonpayable",
|
|
@@ -991,105 +686,9 @@
|
|
|
991
686
|
"name": "cancelTimeLockExecutionWithMetaTx",
|
|
992
687
|
"outputs": [
|
|
993
688
|
{
|
|
994
|
-
"
|
|
995
|
-
{
|
|
996
|
-
"internalType": "uint256",
|
|
997
|
-
"name": "txId",
|
|
998
|
-
"type": "uint256"
|
|
999
|
-
},
|
|
1000
|
-
{
|
|
1001
|
-
"internalType": "uint256",
|
|
1002
|
-
"name": "releaseTime",
|
|
1003
|
-
"type": "uint256"
|
|
1004
|
-
},
|
|
1005
|
-
{
|
|
1006
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
1007
|
-
"name": "status",
|
|
1008
|
-
"type": "uint8"
|
|
1009
|
-
},
|
|
1010
|
-
{
|
|
1011
|
-
"components": [
|
|
1012
|
-
{
|
|
1013
|
-
"internalType": "address",
|
|
1014
|
-
"name": "requester",
|
|
1015
|
-
"type": "address"
|
|
1016
|
-
},
|
|
1017
|
-
{
|
|
1018
|
-
"internalType": "address",
|
|
1019
|
-
"name": "target",
|
|
1020
|
-
"type": "address"
|
|
1021
|
-
},
|
|
1022
|
-
{
|
|
1023
|
-
"internalType": "uint256",
|
|
1024
|
-
"name": "value",
|
|
1025
|
-
"type": "uint256"
|
|
1026
|
-
},
|
|
1027
|
-
{
|
|
1028
|
-
"internalType": "uint256",
|
|
1029
|
-
"name": "gasLimit",
|
|
1030
|
-
"type": "uint256"
|
|
1031
|
-
},
|
|
1032
|
-
{
|
|
1033
|
-
"internalType": "bytes32",
|
|
1034
|
-
"name": "operationType",
|
|
1035
|
-
"type": "bytes32"
|
|
1036
|
-
},
|
|
1037
|
-
{
|
|
1038
|
-
"internalType": "bytes4",
|
|
1039
|
-
"name": "executionSelector",
|
|
1040
|
-
"type": "bytes4"
|
|
1041
|
-
},
|
|
1042
|
-
{
|
|
1043
|
-
"internalType": "bytes",
|
|
1044
|
-
"name": "executionParams",
|
|
1045
|
-
"type": "bytes"
|
|
1046
|
-
}
|
|
1047
|
-
],
|
|
1048
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
1049
|
-
"name": "params",
|
|
1050
|
-
"type": "tuple"
|
|
1051
|
-
},
|
|
1052
|
-
{
|
|
1053
|
-
"internalType": "bytes32",
|
|
1054
|
-
"name": "message",
|
|
1055
|
-
"type": "bytes32"
|
|
1056
|
-
},
|
|
1057
|
-
{
|
|
1058
|
-
"internalType": "bytes",
|
|
1059
|
-
"name": "result",
|
|
1060
|
-
"type": "bytes"
|
|
1061
|
-
},
|
|
1062
|
-
{
|
|
1063
|
-
"components": [
|
|
1064
|
-
{
|
|
1065
|
-
"internalType": "address",
|
|
1066
|
-
"name": "recipient",
|
|
1067
|
-
"type": "address"
|
|
1068
|
-
},
|
|
1069
|
-
{
|
|
1070
|
-
"internalType": "uint256",
|
|
1071
|
-
"name": "nativeTokenAmount",
|
|
1072
|
-
"type": "uint256"
|
|
1073
|
-
},
|
|
1074
|
-
{
|
|
1075
|
-
"internalType": "address",
|
|
1076
|
-
"name": "erc20TokenAddress",
|
|
1077
|
-
"type": "address"
|
|
1078
|
-
},
|
|
1079
|
-
{
|
|
1080
|
-
"internalType": "uint256",
|
|
1081
|
-
"name": "erc20TokenAmount",
|
|
1082
|
-
"type": "uint256"
|
|
1083
|
-
}
|
|
1084
|
-
],
|
|
1085
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
1086
|
-
"name": "payment",
|
|
1087
|
-
"type": "tuple"
|
|
1088
|
-
}
|
|
1089
|
-
],
|
|
1090
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
689
|
+
"internalType": "uint256",
|
|
1091
690
|
"name": "",
|
|
1092
|
-
"type": "
|
|
691
|
+
"type": "uint256"
|
|
1093
692
|
}
|
|
1094
693
|
],
|
|
1095
694
|
"stateMutability": "nonpayable",
|
|
@@ -1187,6 +786,11 @@
|
|
|
1187
786
|
"internalType": "address",
|
|
1188
787
|
"name": "newBroadcaster",
|
|
1189
788
|
"type": "address"
|
|
789
|
+
},
|
|
790
|
+
{
|
|
791
|
+
"internalType": "uint256",
|
|
792
|
+
"name": "location",
|
|
793
|
+
"type": "uint256"
|
|
1190
794
|
}
|
|
1191
795
|
],
|
|
1192
796
|
"name": "executeBroadcasterUpdate",
|
|
@@ -1199,7 +803,7 @@
|
|
|
1199
803
|
{
|
|
1200
804
|
"components": [
|
|
1201
805
|
{
|
|
1202
|
-
"internalType": "enum
|
|
806
|
+
"internalType": "enum IGuardController.GuardConfigActionType",
|
|
1203
807
|
"name": "actionType",
|
|
1204
808
|
"type": "uint8"
|
|
1205
809
|
},
|
|
@@ -1209,7 +813,7 @@
|
|
|
1209
813
|
"type": "bytes"
|
|
1210
814
|
}
|
|
1211
815
|
],
|
|
1212
|
-
"internalType": "struct
|
|
816
|
+
"internalType": "struct IGuardController.GuardConfigAction[]",
|
|
1213
817
|
"name": "actions",
|
|
1214
818
|
"type": "tuple[]"
|
|
1215
819
|
}
|
|
@@ -1237,7 +841,7 @@
|
|
|
1237
841
|
{
|
|
1238
842
|
"components": [
|
|
1239
843
|
{
|
|
1240
|
-
"internalType": "enum
|
|
844
|
+
"internalType": "enum IRuntimeRBAC.RoleConfigActionType",
|
|
1241
845
|
"name": "actionType",
|
|
1242
846
|
"type": "uint8"
|
|
1243
847
|
},
|
|
@@ -1247,7 +851,7 @@
|
|
|
1247
851
|
"type": "bytes"
|
|
1248
852
|
}
|
|
1249
853
|
],
|
|
1250
|
-
"internalType": "struct
|
|
854
|
+
"internalType": "struct IRuntimeRBAC.RoleConfigAction[]",
|
|
1251
855
|
"name": "actions",
|
|
1252
856
|
"type": "tuple[]"
|
|
1253
857
|
}
|
|
@@ -1314,132 +918,88 @@
|
|
|
1314
918
|
"internalType": "bytes32",
|
|
1315
919
|
"name": "operationType",
|
|
1316
920
|
"type": "bytes32"
|
|
1317
|
-
}
|
|
1318
|
-
],
|
|
1319
|
-
"name": "executeWithTimeLock",
|
|
1320
|
-
"outputs": [
|
|
921
|
+
},
|
|
1321
922
|
{
|
|
1322
923
|
"components": [
|
|
1323
924
|
{
|
|
1324
|
-
"internalType": "
|
|
1325
|
-
"name": "
|
|
1326
|
-
"type": "
|
|
925
|
+
"internalType": "address",
|
|
926
|
+
"name": "recipient",
|
|
927
|
+
"type": "address"
|
|
1327
928
|
},
|
|
1328
929
|
{
|
|
1329
930
|
"internalType": "uint256",
|
|
1330
|
-
"name": "
|
|
931
|
+
"name": "nativeTokenAmount",
|
|
1331
932
|
"type": "uint256"
|
|
1332
933
|
},
|
|
1333
934
|
{
|
|
1334
|
-
"internalType": "
|
|
1335
|
-
"name": "
|
|
1336
|
-
"type": "
|
|
935
|
+
"internalType": "address",
|
|
936
|
+
"name": "erc20TokenAddress",
|
|
937
|
+
"type": "address"
|
|
1337
938
|
},
|
|
1338
939
|
{
|
|
1339
|
-
"
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
"name": "requester",
|
|
1343
|
-
"type": "address"
|
|
1344
|
-
},
|
|
1345
|
-
{
|
|
1346
|
-
"internalType": "address",
|
|
1347
|
-
"name": "target",
|
|
1348
|
-
"type": "address"
|
|
1349
|
-
},
|
|
1350
|
-
{
|
|
1351
|
-
"internalType": "uint256",
|
|
1352
|
-
"name": "value",
|
|
1353
|
-
"type": "uint256"
|
|
1354
|
-
},
|
|
1355
|
-
{
|
|
1356
|
-
"internalType": "uint256",
|
|
1357
|
-
"name": "gasLimit",
|
|
1358
|
-
"type": "uint256"
|
|
1359
|
-
},
|
|
1360
|
-
{
|
|
1361
|
-
"internalType": "bytes32",
|
|
1362
|
-
"name": "operationType",
|
|
1363
|
-
"type": "bytes32"
|
|
1364
|
-
},
|
|
1365
|
-
{
|
|
1366
|
-
"internalType": "bytes4",
|
|
1367
|
-
"name": "executionSelector",
|
|
1368
|
-
"type": "bytes4"
|
|
1369
|
-
},
|
|
1370
|
-
{
|
|
1371
|
-
"internalType": "bytes",
|
|
1372
|
-
"name": "executionParams",
|
|
1373
|
-
"type": "bytes"
|
|
1374
|
-
}
|
|
1375
|
-
],
|
|
1376
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
1377
|
-
"name": "params",
|
|
1378
|
-
"type": "tuple"
|
|
1379
|
-
},
|
|
1380
|
-
{
|
|
1381
|
-
"internalType": "bytes32",
|
|
1382
|
-
"name": "message",
|
|
1383
|
-
"type": "bytes32"
|
|
1384
|
-
},
|
|
1385
|
-
{
|
|
1386
|
-
"internalType": "bytes",
|
|
1387
|
-
"name": "result",
|
|
1388
|
-
"type": "bytes"
|
|
1389
|
-
},
|
|
1390
|
-
{
|
|
1391
|
-
"components": [
|
|
1392
|
-
{
|
|
1393
|
-
"internalType": "address",
|
|
1394
|
-
"name": "recipient",
|
|
1395
|
-
"type": "address"
|
|
1396
|
-
},
|
|
1397
|
-
{
|
|
1398
|
-
"internalType": "uint256",
|
|
1399
|
-
"name": "nativeTokenAmount",
|
|
1400
|
-
"type": "uint256"
|
|
1401
|
-
},
|
|
1402
|
-
{
|
|
1403
|
-
"internalType": "address",
|
|
1404
|
-
"name": "erc20TokenAddress",
|
|
1405
|
-
"type": "address"
|
|
1406
|
-
},
|
|
1407
|
-
{
|
|
1408
|
-
"internalType": "uint256",
|
|
1409
|
-
"name": "erc20TokenAmount",
|
|
1410
|
-
"type": "uint256"
|
|
1411
|
-
}
|
|
1412
|
-
],
|
|
1413
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
1414
|
-
"name": "payment",
|
|
1415
|
-
"type": "tuple"
|
|
940
|
+
"internalType": "uint256",
|
|
941
|
+
"name": "erc20TokenAmount",
|
|
942
|
+
"type": "uint256"
|
|
1416
943
|
}
|
|
1417
944
|
],
|
|
1418
|
-
"internalType": "struct EngineBlox.
|
|
1419
|
-
"name": "",
|
|
945
|
+
"internalType": "struct EngineBlox.PaymentDetails",
|
|
946
|
+
"name": "paymentDetails",
|
|
1420
947
|
"type": "tuple"
|
|
1421
948
|
}
|
|
1422
949
|
],
|
|
950
|
+
"name": "executeWithPayment",
|
|
951
|
+
"outputs": [
|
|
952
|
+
{
|
|
953
|
+
"internalType": "uint256",
|
|
954
|
+
"name": "txId",
|
|
955
|
+
"type": "uint256"
|
|
956
|
+
}
|
|
957
|
+
],
|
|
1423
958
|
"stateMutability": "nonpayable",
|
|
1424
959
|
"type": "function"
|
|
1425
960
|
},
|
|
1426
961
|
{
|
|
1427
962
|
"inputs": [
|
|
963
|
+
{
|
|
964
|
+
"internalType": "address",
|
|
965
|
+
"name": "target",
|
|
966
|
+
"type": "address"
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
"internalType": "uint256",
|
|
970
|
+
"name": "value",
|
|
971
|
+
"type": "uint256"
|
|
972
|
+
},
|
|
1428
973
|
{
|
|
1429
974
|
"internalType": "bytes4",
|
|
1430
975
|
"name": "functionSelector",
|
|
1431
976
|
"type": "bytes4"
|
|
977
|
+
},
|
|
978
|
+
{
|
|
979
|
+
"internalType": "bytes",
|
|
980
|
+
"name": "params",
|
|
981
|
+
"type": "bytes"
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
"internalType": "uint256",
|
|
985
|
+
"name": "gasLimit",
|
|
986
|
+
"type": "uint256"
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"internalType": "bytes32",
|
|
990
|
+
"name": "operationType",
|
|
991
|
+
"type": "bytes32"
|
|
1432
992
|
}
|
|
1433
993
|
],
|
|
1434
|
-
"name": "
|
|
994
|
+
"name": "executeWithTimeLock",
|
|
1435
995
|
"outputs": [
|
|
1436
996
|
{
|
|
1437
|
-
"internalType": "
|
|
1438
|
-
"name": "",
|
|
1439
|
-
"type": "
|
|
997
|
+
"internalType": "uint256",
|
|
998
|
+
"name": "txId",
|
|
999
|
+
"type": "uint256"
|
|
1440
1000
|
}
|
|
1441
1001
|
],
|
|
1442
|
-
"stateMutability": "
|
|
1002
|
+
"stateMutability": "nonpayable",
|
|
1443
1003
|
"type": "function"
|
|
1444
1004
|
},
|
|
1445
1005
|
{
|
|
@@ -1973,12 +1533,12 @@
|
|
|
1973
1533
|
{
|
|
1974
1534
|
"inputs": [
|
|
1975
1535
|
{
|
|
1976
|
-
"internalType": "
|
|
1977
|
-
"name": "
|
|
1978
|
-
"type": "
|
|
1536
|
+
"internalType": "bytes32",
|
|
1537
|
+
"name": "roleHash",
|
|
1538
|
+
"type": "bytes32"
|
|
1979
1539
|
}
|
|
1980
1540
|
],
|
|
1981
|
-
"name": "
|
|
1541
|
+
"name": "getAuthorizedWallets",
|
|
1982
1542
|
"outputs": [
|
|
1983
1543
|
{
|
|
1984
1544
|
"internalType": "address[]",
|
|
@@ -2013,34 +1573,89 @@
|
|
|
2013
1573
|
"name": "getFunctionSchema",
|
|
2014
1574
|
"outputs": [
|
|
2015
1575
|
{
|
|
2016
|
-
"
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
1576
|
+
"components": [
|
|
1577
|
+
{
|
|
1578
|
+
"internalType": "string",
|
|
1579
|
+
"name": "functionSignature",
|
|
1580
|
+
"type": "string"
|
|
1581
|
+
},
|
|
1582
|
+
{
|
|
1583
|
+
"internalType": "bytes4",
|
|
1584
|
+
"name": "functionSelector",
|
|
1585
|
+
"type": "bytes4"
|
|
1586
|
+
},
|
|
1587
|
+
{
|
|
1588
|
+
"internalType": "bytes32",
|
|
1589
|
+
"name": "operationType",
|
|
1590
|
+
"type": "bytes32"
|
|
1591
|
+
},
|
|
1592
|
+
{
|
|
1593
|
+
"internalType": "string",
|
|
1594
|
+
"name": "operationName",
|
|
1595
|
+
"type": "string"
|
|
1596
|
+
},
|
|
1597
|
+
{
|
|
1598
|
+
"internalType": "uint16",
|
|
1599
|
+
"name": "supportedActionsBitmap",
|
|
1600
|
+
"type": "uint16"
|
|
1601
|
+
},
|
|
1602
|
+
{
|
|
1603
|
+
"internalType": "bool",
|
|
1604
|
+
"name": "enforceHandlerRelations",
|
|
1605
|
+
"type": "bool"
|
|
1606
|
+
},
|
|
1607
|
+
{
|
|
1608
|
+
"internalType": "bool",
|
|
1609
|
+
"name": "isProtected",
|
|
1610
|
+
"type": "bool"
|
|
1611
|
+
},
|
|
1612
|
+
{
|
|
1613
|
+
"internalType": "bytes4[]",
|
|
1614
|
+
"name": "handlerForSelectors",
|
|
1615
|
+
"type": "bytes4[]"
|
|
1616
|
+
}
|
|
1617
|
+
],
|
|
1618
|
+
"internalType": "struct EngineBlox.FunctionSchema",
|
|
1619
|
+
"name": "",
|
|
1620
|
+
"type": "tuple"
|
|
1621
|
+
}
|
|
1622
|
+
],
|
|
1623
|
+
"stateMutability": "view",
|
|
1624
|
+
"type": "function"
|
|
1625
|
+
},
|
|
1626
|
+
{
|
|
1627
|
+
"inputs": [
|
|
2020
1628
|
{
|
|
2021
1629
|
"internalType": "bytes4",
|
|
2022
|
-
"name": "
|
|
1630
|
+
"name": "functionSelector",
|
|
2023
1631
|
"type": "bytes4"
|
|
2024
|
-
}
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
"type": "bytes32"
|
|
2029
|
-
},
|
|
1632
|
+
}
|
|
1633
|
+
],
|
|
1634
|
+
"name": "getFunctionWhitelistTargets",
|
|
1635
|
+
"outputs": [
|
|
2030
1636
|
{
|
|
2031
|
-
"internalType": "
|
|
2032
|
-
"name": "
|
|
2033
|
-
"type": "
|
|
2034
|
-
}
|
|
1637
|
+
"internalType": "address[]",
|
|
1638
|
+
"name": "",
|
|
1639
|
+
"type": "address[]"
|
|
1640
|
+
}
|
|
1641
|
+
],
|
|
1642
|
+
"stateMutability": "view",
|
|
1643
|
+
"type": "function"
|
|
1644
|
+
},
|
|
1645
|
+
{
|
|
1646
|
+
"inputs": [
|
|
2035
1647
|
{
|
|
2036
|
-
"internalType": "
|
|
2037
|
-
"name": "
|
|
2038
|
-
"type": "
|
|
2039
|
-
}
|
|
1648
|
+
"internalType": "bytes4",
|
|
1649
|
+
"name": "functionSelector",
|
|
1650
|
+
"type": "bytes4"
|
|
1651
|
+
}
|
|
1652
|
+
],
|
|
1653
|
+
"name": "getHooks",
|
|
1654
|
+
"outputs": [
|
|
2040
1655
|
{
|
|
2041
|
-
"internalType": "
|
|
2042
|
-
"name": "
|
|
2043
|
-
"type": "
|
|
1656
|
+
"internalType": "address[]",
|
|
1657
|
+
"name": "hooks",
|
|
1658
|
+
"type": "address[]"
|
|
2044
1659
|
}
|
|
2045
1660
|
],
|
|
2046
1661
|
"stateMutability": "view",
|
|
@@ -2089,7 +1704,7 @@
|
|
|
2089
1704
|
},
|
|
2090
1705
|
{
|
|
2091
1706
|
"internalType": "bytes32",
|
|
2092
|
-
"name": "
|
|
1707
|
+
"name": "hash",
|
|
2093
1708
|
"type": "bytes32"
|
|
2094
1709
|
},
|
|
2095
1710
|
{
|
|
@@ -2436,25 +2051,6 @@
|
|
|
2436
2051
|
"stateMutability": "view",
|
|
2437
2052
|
"type": "function"
|
|
2438
2053
|
},
|
|
2439
|
-
{
|
|
2440
|
-
"inputs": [
|
|
2441
|
-
{
|
|
2442
|
-
"internalType": "bytes32",
|
|
2443
|
-
"name": "roleHash",
|
|
2444
|
-
"type": "bytes32"
|
|
2445
|
-
}
|
|
2446
|
-
],
|
|
2447
|
-
"name": "getWalletsInRole",
|
|
2448
|
-
"outputs": [
|
|
2449
|
-
{
|
|
2450
|
-
"internalType": "address[]",
|
|
2451
|
-
"name": "",
|
|
2452
|
-
"type": "address[]"
|
|
2453
|
-
}
|
|
2454
|
-
],
|
|
2455
|
-
"stateMutability": "view",
|
|
2456
|
-
"type": "function"
|
|
2457
|
-
},
|
|
2458
2054
|
{
|
|
2459
2055
|
"inputs": [
|
|
2460
2056
|
{
|
|
@@ -2630,183 +2226,247 @@
|
|
|
2630
2226
|
],
|
|
2631
2227
|
"name": "guardConfigBatchRequestAndApprove",
|
|
2632
2228
|
"outputs": [
|
|
2229
|
+
{
|
|
2230
|
+
"internalType": "uint256",
|
|
2231
|
+
"name": "",
|
|
2232
|
+
"type": "uint256"
|
|
2233
|
+
}
|
|
2234
|
+
],
|
|
2235
|
+
"stateMutability": "nonpayable",
|
|
2236
|
+
"type": "function"
|
|
2237
|
+
},
|
|
2238
|
+
{
|
|
2239
|
+
"inputs": [
|
|
2240
|
+
{
|
|
2241
|
+
"internalType": "bytes32",
|
|
2242
|
+
"name": "roleHash",
|
|
2243
|
+
"type": "bytes32"
|
|
2244
|
+
},
|
|
2245
|
+
{
|
|
2246
|
+
"internalType": "address",
|
|
2247
|
+
"name": "wallet",
|
|
2248
|
+
"type": "address"
|
|
2249
|
+
}
|
|
2250
|
+
],
|
|
2251
|
+
"name": "hasRole",
|
|
2252
|
+
"outputs": [
|
|
2253
|
+
{
|
|
2254
|
+
"internalType": "bool",
|
|
2255
|
+
"name": "",
|
|
2256
|
+
"type": "bool"
|
|
2257
|
+
}
|
|
2258
|
+
],
|
|
2259
|
+
"stateMutability": "view",
|
|
2260
|
+
"type": "function"
|
|
2261
|
+
},
|
|
2262
|
+
{
|
|
2263
|
+
"inputs": [],
|
|
2264
|
+
"name": "initialized",
|
|
2265
|
+
"outputs": [
|
|
2266
|
+
{
|
|
2267
|
+
"internalType": "bool",
|
|
2268
|
+
"name": "",
|
|
2269
|
+
"type": "bool"
|
|
2270
|
+
}
|
|
2271
|
+
],
|
|
2272
|
+
"stateMutability": "view",
|
|
2273
|
+
"type": "function"
|
|
2274
|
+
},
|
|
2275
|
+
{
|
|
2276
|
+
"inputs": [],
|
|
2277
|
+
"name": "owner",
|
|
2278
|
+
"outputs": [
|
|
2279
|
+
{
|
|
2280
|
+
"internalType": "address",
|
|
2281
|
+
"name": "",
|
|
2282
|
+
"type": "address"
|
|
2283
|
+
}
|
|
2284
|
+
],
|
|
2285
|
+
"stateMutability": "view",
|
|
2286
|
+
"type": "function"
|
|
2287
|
+
},
|
|
2288
|
+
{
|
|
2289
|
+
"inputs": [
|
|
2633
2290
|
{
|
|
2634
2291
|
"components": [
|
|
2635
|
-
{
|
|
2636
|
-
"internalType": "uint256",
|
|
2637
|
-
"name": "txId",
|
|
2638
|
-
"type": "uint256"
|
|
2639
|
-
},
|
|
2640
|
-
{
|
|
2641
|
-
"internalType": "uint256",
|
|
2642
|
-
"name": "releaseTime",
|
|
2643
|
-
"type": "uint256"
|
|
2644
|
-
},
|
|
2645
|
-
{
|
|
2646
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2647
|
-
"name": "status",
|
|
2648
|
-
"type": "uint8"
|
|
2649
|
-
},
|
|
2650
2292
|
{
|
|
2651
2293
|
"components": [
|
|
2652
|
-
{
|
|
2653
|
-
"internalType": "address",
|
|
2654
|
-
"name": "requester",
|
|
2655
|
-
"type": "address"
|
|
2656
|
-
},
|
|
2657
|
-
{
|
|
2658
|
-
"internalType": "address",
|
|
2659
|
-
"name": "target",
|
|
2660
|
-
"type": "address"
|
|
2661
|
-
},
|
|
2662
2294
|
{
|
|
2663
2295
|
"internalType": "uint256",
|
|
2664
|
-
"name": "
|
|
2296
|
+
"name": "txId",
|
|
2665
2297
|
"type": "uint256"
|
|
2666
2298
|
},
|
|
2667
2299
|
{
|
|
2668
2300
|
"internalType": "uint256",
|
|
2669
|
-
"name": "
|
|
2301
|
+
"name": "releaseTime",
|
|
2670
2302
|
"type": "uint256"
|
|
2671
2303
|
},
|
|
2672
2304
|
{
|
|
2673
|
-
"internalType": "
|
|
2674
|
-
"name": "
|
|
2675
|
-
"type": "
|
|
2305
|
+
"internalType": "enum EngineBlox.TxStatus",
|
|
2306
|
+
"name": "status",
|
|
2307
|
+
"type": "uint8"
|
|
2676
2308
|
},
|
|
2677
2309
|
{
|
|
2678
|
-
"
|
|
2679
|
-
|
|
2680
|
-
|
|
2310
|
+
"components": [
|
|
2311
|
+
{
|
|
2312
|
+
"internalType": "address",
|
|
2313
|
+
"name": "requester",
|
|
2314
|
+
"type": "address"
|
|
2315
|
+
},
|
|
2316
|
+
{
|
|
2317
|
+
"internalType": "address",
|
|
2318
|
+
"name": "target",
|
|
2319
|
+
"type": "address"
|
|
2320
|
+
},
|
|
2321
|
+
{
|
|
2322
|
+
"internalType": "uint256",
|
|
2323
|
+
"name": "value",
|
|
2324
|
+
"type": "uint256"
|
|
2325
|
+
},
|
|
2326
|
+
{
|
|
2327
|
+
"internalType": "uint256",
|
|
2328
|
+
"name": "gasLimit",
|
|
2329
|
+
"type": "uint256"
|
|
2330
|
+
},
|
|
2331
|
+
{
|
|
2332
|
+
"internalType": "bytes32",
|
|
2333
|
+
"name": "operationType",
|
|
2334
|
+
"type": "bytes32"
|
|
2335
|
+
},
|
|
2336
|
+
{
|
|
2337
|
+
"internalType": "bytes4",
|
|
2338
|
+
"name": "executionSelector",
|
|
2339
|
+
"type": "bytes4"
|
|
2340
|
+
},
|
|
2341
|
+
{
|
|
2342
|
+
"internalType": "bytes",
|
|
2343
|
+
"name": "executionParams",
|
|
2344
|
+
"type": "bytes"
|
|
2345
|
+
}
|
|
2346
|
+
],
|
|
2347
|
+
"internalType": "struct EngineBlox.TxParams",
|
|
2348
|
+
"name": "params",
|
|
2349
|
+
"type": "tuple"
|
|
2350
|
+
},
|
|
2351
|
+
{
|
|
2352
|
+
"internalType": "bytes32",
|
|
2353
|
+
"name": "message",
|
|
2354
|
+
"type": "bytes32"
|
|
2681
2355
|
},
|
|
2682
2356
|
{
|
|
2683
2357
|
"internalType": "bytes",
|
|
2684
|
-
"name": "
|
|
2358
|
+
"name": "result",
|
|
2685
2359
|
"type": "bytes"
|
|
2360
|
+
},
|
|
2361
|
+
{
|
|
2362
|
+
"components": [
|
|
2363
|
+
{
|
|
2364
|
+
"internalType": "address",
|
|
2365
|
+
"name": "recipient",
|
|
2366
|
+
"type": "address"
|
|
2367
|
+
},
|
|
2368
|
+
{
|
|
2369
|
+
"internalType": "uint256",
|
|
2370
|
+
"name": "nativeTokenAmount",
|
|
2371
|
+
"type": "uint256"
|
|
2372
|
+
},
|
|
2373
|
+
{
|
|
2374
|
+
"internalType": "address",
|
|
2375
|
+
"name": "erc20TokenAddress",
|
|
2376
|
+
"type": "address"
|
|
2377
|
+
},
|
|
2378
|
+
{
|
|
2379
|
+
"internalType": "uint256",
|
|
2380
|
+
"name": "erc20TokenAmount",
|
|
2381
|
+
"type": "uint256"
|
|
2382
|
+
}
|
|
2383
|
+
],
|
|
2384
|
+
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2385
|
+
"name": "payment",
|
|
2386
|
+
"type": "tuple"
|
|
2686
2387
|
}
|
|
2687
2388
|
],
|
|
2688
|
-
"internalType": "struct EngineBlox.
|
|
2689
|
-
"name": "
|
|
2389
|
+
"internalType": "struct EngineBlox.TxRecord",
|
|
2390
|
+
"name": "txRecord",
|
|
2690
2391
|
"type": "tuple"
|
|
2691
2392
|
},
|
|
2692
|
-
{
|
|
2693
|
-
"internalType": "bytes32",
|
|
2694
|
-
"name": "message",
|
|
2695
|
-
"type": "bytes32"
|
|
2696
|
-
},
|
|
2697
|
-
{
|
|
2698
|
-
"internalType": "bytes",
|
|
2699
|
-
"name": "result",
|
|
2700
|
-
"type": "bytes"
|
|
2701
|
-
},
|
|
2702
2393
|
{
|
|
2703
2394
|
"components": [
|
|
2704
2395
|
{
|
|
2705
|
-
"internalType": "
|
|
2706
|
-
"name": "
|
|
2707
|
-
"type": "
|
|
2396
|
+
"internalType": "uint256",
|
|
2397
|
+
"name": "chainId",
|
|
2398
|
+
"type": "uint256"
|
|
2708
2399
|
},
|
|
2709
2400
|
{
|
|
2710
2401
|
"internalType": "uint256",
|
|
2711
|
-
"name": "
|
|
2402
|
+
"name": "nonce",
|
|
2712
2403
|
"type": "uint256"
|
|
2713
2404
|
},
|
|
2714
2405
|
{
|
|
2715
2406
|
"internalType": "address",
|
|
2716
|
-
"name": "
|
|
2407
|
+
"name": "handlerContract",
|
|
2717
2408
|
"type": "address"
|
|
2718
2409
|
},
|
|
2410
|
+
{
|
|
2411
|
+
"internalType": "bytes4",
|
|
2412
|
+
"name": "handlerSelector",
|
|
2413
|
+
"type": "bytes4"
|
|
2414
|
+
},
|
|
2415
|
+
{
|
|
2416
|
+
"internalType": "enum EngineBlox.TxAction",
|
|
2417
|
+
"name": "action",
|
|
2418
|
+
"type": "uint8"
|
|
2419
|
+
},
|
|
2719
2420
|
{
|
|
2720
2421
|
"internalType": "uint256",
|
|
2721
|
-
"name": "
|
|
2422
|
+
"name": "deadline",
|
|
2423
|
+
"type": "uint256"
|
|
2424
|
+
},
|
|
2425
|
+
{
|
|
2426
|
+
"internalType": "uint256",
|
|
2427
|
+
"name": "maxGasPrice",
|
|
2722
2428
|
"type": "uint256"
|
|
2429
|
+
},
|
|
2430
|
+
{
|
|
2431
|
+
"internalType": "address",
|
|
2432
|
+
"name": "signer",
|
|
2433
|
+
"type": "address"
|
|
2723
2434
|
}
|
|
2724
2435
|
],
|
|
2725
|
-
"internalType": "struct EngineBlox.
|
|
2726
|
-
"name": "
|
|
2436
|
+
"internalType": "struct EngineBlox.MetaTxParams",
|
|
2437
|
+
"name": "params",
|
|
2727
2438
|
"type": "tuple"
|
|
2439
|
+
},
|
|
2440
|
+
{
|
|
2441
|
+
"internalType": "bytes32",
|
|
2442
|
+
"name": "message",
|
|
2443
|
+
"type": "bytes32"
|
|
2444
|
+
},
|
|
2445
|
+
{
|
|
2446
|
+
"internalType": "bytes",
|
|
2447
|
+
"name": "signature",
|
|
2448
|
+
"type": "bytes"
|
|
2449
|
+
},
|
|
2450
|
+
{
|
|
2451
|
+
"internalType": "bytes",
|
|
2452
|
+
"name": "data",
|
|
2453
|
+
"type": "bytes"
|
|
2728
2454
|
}
|
|
2729
2455
|
],
|
|
2730
|
-
"internalType": "struct EngineBlox.
|
|
2731
|
-
"name": "",
|
|
2456
|
+
"internalType": "struct EngineBlox.MetaTransaction",
|
|
2457
|
+
"name": "metaTx",
|
|
2732
2458
|
"type": "tuple"
|
|
2733
2459
|
}
|
|
2734
2460
|
],
|
|
2735
|
-
"
|
|
2736
|
-
"type": "function"
|
|
2737
|
-
},
|
|
2738
|
-
{
|
|
2739
|
-
"inputs": [
|
|
2740
|
-
{
|
|
2741
|
-
"internalType": "bytes32",
|
|
2742
|
-
"name": "roleHash",
|
|
2743
|
-
"type": "bytes32"
|
|
2744
|
-
},
|
|
2745
|
-
{
|
|
2746
|
-
"internalType": "address",
|
|
2747
|
-
"name": "wallet",
|
|
2748
|
-
"type": "address"
|
|
2749
|
-
}
|
|
2750
|
-
],
|
|
2751
|
-
"name": "hasRole",
|
|
2752
|
-
"outputs": [
|
|
2753
|
-
{
|
|
2754
|
-
"internalType": "bool",
|
|
2755
|
-
"name": "",
|
|
2756
|
-
"type": "bool"
|
|
2757
|
-
}
|
|
2758
|
-
],
|
|
2759
|
-
"stateMutability": "view",
|
|
2760
|
-
"type": "function"
|
|
2761
|
-
},
|
|
2762
|
-
{
|
|
2763
|
-
"inputs": [],
|
|
2764
|
-
"name": "initialized",
|
|
2765
|
-
"outputs": [
|
|
2766
|
-
{
|
|
2767
|
-
"internalType": "bool",
|
|
2768
|
-
"name": "",
|
|
2769
|
-
"type": "bool"
|
|
2770
|
-
}
|
|
2771
|
-
],
|
|
2772
|
-
"stateMutability": "view",
|
|
2773
|
-
"type": "function"
|
|
2774
|
-
},
|
|
2775
|
-
{
|
|
2776
|
-
"inputs": [
|
|
2777
|
-
{
|
|
2778
|
-
"internalType": "bytes4",
|
|
2779
|
-
"name": "functionSelector",
|
|
2780
|
-
"type": "bytes4"
|
|
2781
|
-
},
|
|
2782
|
-
{
|
|
2783
|
-
"internalType": "enum EngineBlox.TxAction",
|
|
2784
|
-
"name": "action",
|
|
2785
|
-
"type": "uint8"
|
|
2786
|
-
}
|
|
2787
|
-
],
|
|
2788
|
-
"name": "isActionSupportedByFunction",
|
|
2789
|
-
"outputs": [
|
|
2790
|
-
{
|
|
2791
|
-
"internalType": "bool",
|
|
2792
|
-
"name": "",
|
|
2793
|
-
"type": "bool"
|
|
2794
|
-
}
|
|
2795
|
-
],
|
|
2796
|
-
"stateMutability": "view",
|
|
2797
|
-
"type": "function"
|
|
2798
|
-
},
|
|
2799
|
-
{
|
|
2800
|
-
"inputs": [],
|
|
2801
|
-
"name": "owner",
|
|
2461
|
+
"name": "requestAndApproveExecution",
|
|
2802
2462
|
"outputs": [
|
|
2803
2463
|
{
|
|
2804
|
-
"internalType": "
|
|
2464
|
+
"internalType": "uint256",
|
|
2805
2465
|
"name": "",
|
|
2806
|
-
"type": "
|
|
2466
|
+
"type": "uint256"
|
|
2807
2467
|
}
|
|
2808
2468
|
],
|
|
2809
|
-
"stateMutability": "
|
|
2469
|
+
"stateMutability": "nonpayable",
|
|
2810
2470
|
"type": "function"
|
|
2811
2471
|
},
|
|
2812
2472
|
{
|
|
@@ -2982,113 +2642,36 @@
|
|
|
2982
2642
|
"type": "tuple"
|
|
2983
2643
|
}
|
|
2984
2644
|
],
|
|
2985
|
-
"name": "
|
|
2645
|
+
"name": "roleConfigBatchRequestAndApprove",
|
|
2986
2646
|
"outputs": [
|
|
2987
2647
|
{
|
|
2988
|
-
"
|
|
2989
|
-
{
|
|
2990
|
-
"internalType": "uint256",
|
|
2991
|
-
"name": "txId",
|
|
2992
|
-
"type": "uint256"
|
|
2993
|
-
},
|
|
2994
|
-
{
|
|
2995
|
-
"internalType": "uint256",
|
|
2996
|
-
"name": "releaseTime",
|
|
2997
|
-
"type": "uint256"
|
|
2998
|
-
},
|
|
2999
|
-
{
|
|
3000
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3001
|
-
"name": "status",
|
|
3002
|
-
"type": "uint8"
|
|
3003
|
-
},
|
|
3004
|
-
{
|
|
3005
|
-
"components": [
|
|
3006
|
-
{
|
|
3007
|
-
"internalType": "address",
|
|
3008
|
-
"name": "requester",
|
|
3009
|
-
"type": "address"
|
|
3010
|
-
},
|
|
3011
|
-
{
|
|
3012
|
-
"internalType": "address",
|
|
3013
|
-
"name": "target",
|
|
3014
|
-
"type": "address"
|
|
3015
|
-
},
|
|
3016
|
-
{
|
|
3017
|
-
"internalType": "uint256",
|
|
3018
|
-
"name": "value",
|
|
3019
|
-
"type": "uint256"
|
|
3020
|
-
},
|
|
3021
|
-
{
|
|
3022
|
-
"internalType": "uint256",
|
|
3023
|
-
"name": "gasLimit",
|
|
3024
|
-
"type": "uint256"
|
|
3025
|
-
},
|
|
3026
|
-
{
|
|
3027
|
-
"internalType": "bytes32",
|
|
3028
|
-
"name": "operationType",
|
|
3029
|
-
"type": "bytes32"
|
|
3030
|
-
},
|
|
3031
|
-
{
|
|
3032
|
-
"internalType": "bytes4",
|
|
3033
|
-
"name": "executionSelector",
|
|
3034
|
-
"type": "bytes4"
|
|
3035
|
-
},
|
|
3036
|
-
{
|
|
3037
|
-
"internalType": "bytes",
|
|
3038
|
-
"name": "executionParams",
|
|
3039
|
-
"type": "bytes"
|
|
3040
|
-
}
|
|
3041
|
-
],
|
|
3042
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3043
|
-
"name": "params",
|
|
3044
|
-
"type": "tuple"
|
|
3045
|
-
},
|
|
3046
|
-
{
|
|
3047
|
-
"internalType": "bytes32",
|
|
3048
|
-
"name": "message",
|
|
3049
|
-
"type": "bytes32"
|
|
3050
|
-
},
|
|
3051
|
-
{
|
|
3052
|
-
"internalType": "bytes",
|
|
3053
|
-
"name": "result",
|
|
3054
|
-
"type": "bytes"
|
|
3055
|
-
},
|
|
3056
|
-
{
|
|
3057
|
-
"components": [
|
|
3058
|
-
{
|
|
3059
|
-
"internalType": "address",
|
|
3060
|
-
"name": "recipient",
|
|
3061
|
-
"type": "address"
|
|
3062
|
-
},
|
|
3063
|
-
{
|
|
3064
|
-
"internalType": "uint256",
|
|
3065
|
-
"name": "nativeTokenAmount",
|
|
3066
|
-
"type": "uint256"
|
|
3067
|
-
},
|
|
3068
|
-
{
|
|
3069
|
-
"internalType": "address",
|
|
3070
|
-
"name": "erc20TokenAddress",
|
|
3071
|
-
"type": "address"
|
|
3072
|
-
},
|
|
3073
|
-
{
|
|
3074
|
-
"internalType": "uint256",
|
|
3075
|
-
"name": "erc20TokenAmount",
|
|
3076
|
-
"type": "uint256"
|
|
3077
|
-
}
|
|
3078
|
-
],
|
|
3079
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3080
|
-
"name": "payment",
|
|
3081
|
-
"type": "tuple"
|
|
3082
|
-
}
|
|
3083
|
-
],
|
|
3084
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2648
|
+
"internalType": "uint256",
|
|
3085
2649
|
"name": "",
|
|
3086
|
-
"type": "
|
|
2650
|
+
"type": "uint256"
|
|
3087
2651
|
}
|
|
3088
2652
|
],
|
|
3089
2653
|
"stateMutability": "nonpayable",
|
|
3090
2654
|
"type": "function"
|
|
3091
2655
|
},
|
|
2656
|
+
{
|
|
2657
|
+
"inputs": [
|
|
2658
|
+
{
|
|
2659
|
+
"internalType": "bytes4",
|
|
2660
|
+
"name": "interfaceId",
|
|
2661
|
+
"type": "bytes4"
|
|
2662
|
+
}
|
|
2663
|
+
],
|
|
2664
|
+
"name": "supportsInterface",
|
|
2665
|
+
"outputs": [
|
|
2666
|
+
{
|
|
2667
|
+
"internalType": "bool",
|
|
2668
|
+
"name": "",
|
|
2669
|
+
"type": "bool"
|
|
2670
|
+
}
|
|
2671
|
+
],
|
|
2672
|
+
"stateMutability": "view",
|
|
2673
|
+
"type": "function"
|
|
2674
|
+
},
|
|
3092
2675
|
{
|
|
3093
2676
|
"inputs": [
|
|
3094
2677
|
{
|
|
@@ -3262,108 +2845,31 @@
|
|
|
3262
2845
|
"type": "tuple"
|
|
3263
2846
|
}
|
|
3264
2847
|
],
|
|
3265
|
-
"name": "
|
|
2848
|
+
"name": "transferOwnershipApprovalWithMetaTx",
|
|
3266
2849
|
"outputs": [
|
|
3267
2850
|
{
|
|
3268
|
-
"
|
|
3269
|
-
{
|
|
3270
|
-
"internalType": "uint256",
|
|
3271
|
-
"name": "txId",
|
|
3272
|
-
"type": "uint256"
|
|
3273
|
-
},
|
|
3274
|
-
{
|
|
3275
|
-
"internalType": "uint256",
|
|
3276
|
-
"name": "releaseTime",
|
|
3277
|
-
"type": "uint256"
|
|
3278
|
-
},
|
|
3279
|
-
{
|
|
3280
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3281
|
-
"name": "status",
|
|
3282
|
-
"type": "uint8"
|
|
3283
|
-
},
|
|
3284
|
-
{
|
|
3285
|
-
"components": [
|
|
3286
|
-
{
|
|
3287
|
-
"internalType": "address",
|
|
3288
|
-
"name": "requester",
|
|
3289
|
-
"type": "address"
|
|
3290
|
-
},
|
|
3291
|
-
{
|
|
3292
|
-
"internalType": "address",
|
|
3293
|
-
"name": "target",
|
|
3294
|
-
"type": "address"
|
|
3295
|
-
},
|
|
3296
|
-
{
|
|
3297
|
-
"internalType": "uint256",
|
|
3298
|
-
"name": "value",
|
|
3299
|
-
"type": "uint256"
|
|
3300
|
-
},
|
|
3301
|
-
{
|
|
3302
|
-
"internalType": "uint256",
|
|
3303
|
-
"name": "gasLimit",
|
|
3304
|
-
"type": "uint256"
|
|
3305
|
-
},
|
|
3306
|
-
{
|
|
3307
|
-
"internalType": "bytes32",
|
|
3308
|
-
"name": "operationType",
|
|
3309
|
-
"type": "bytes32"
|
|
3310
|
-
},
|
|
3311
|
-
{
|
|
3312
|
-
"internalType": "bytes4",
|
|
3313
|
-
"name": "executionSelector",
|
|
3314
|
-
"type": "bytes4"
|
|
3315
|
-
},
|
|
3316
|
-
{
|
|
3317
|
-
"internalType": "bytes",
|
|
3318
|
-
"name": "executionParams",
|
|
3319
|
-
"type": "bytes"
|
|
3320
|
-
}
|
|
3321
|
-
],
|
|
3322
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3323
|
-
"name": "params",
|
|
3324
|
-
"type": "tuple"
|
|
3325
|
-
},
|
|
3326
|
-
{
|
|
3327
|
-
"internalType": "bytes32",
|
|
3328
|
-
"name": "message",
|
|
3329
|
-
"type": "bytes32"
|
|
3330
|
-
},
|
|
3331
|
-
{
|
|
3332
|
-
"internalType": "bytes",
|
|
3333
|
-
"name": "result",
|
|
3334
|
-
"type": "bytes"
|
|
3335
|
-
},
|
|
3336
|
-
{
|
|
3337
|
-
"components": [
|
|
3338
|
-
{
|
|
3339
|
-
"internalType": "address",
|
|
3340
|
-
"name": "recipient",
|
|
3341
|
-
"type": "address"
|
|
3342
|
-
},
|
|
3343
|
-
{
|
|
3344
|
-
"internalType": "uint256",
|
|
3345
|
-
"name": "nativeTokenAmount",
|
|
3346
|
-
"type": "uint256"
|
|
3347
|
-
},
|
|
3348
|
-
{
|
|
3349
|
-
"internalType": "address",
|
|
3350
|
-
"name": "erc20TokenAddress",
|
|
3351
|
-
"type": "address"
|
|
3352
|
-
},
|
|
3353
|
-
{
|
|
3354
|
-
"internalType": "uint256",
|
|
3355
|
-
"name": "erc20TokenAmount",
|
|
3356
|
-
"type": "uint256"
|
|
3357
|
-
}
|
|
3358
|
-
],
|
|
3359
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3360
|
-
"name": "payment",
|
|
3361
|
-
"type": "tuple"
|
|
3362
|
-
}
|
|
3363
|
-
],
|
|
3364
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2851
|
+
"internalType": "uint256",
|
|
3365
2852
|
"name": "",
|
|
3366
|
-
"type": "
|
|
2853
|
+
"type": "uint256"
|
|
2854
|
+
}
|
|
2855
|
+
],
|
|
2856
|
+
"stateMutability": "nonpayable",
|
|
2857
|
+
"type": "function"
|
|
2858
|
+
},
|
|
2859
|
+
{
|
|
2860
|
+
"inputs": [
|
|
2861
|
+
{
|
|
2862
|
+
"internalType": "uint256",
|
|
2863
|
+
"name": "txId",
|
|
2864
|
+
"type": "uint256"
|
|
2865
|
+
}
|
|
2866
|
+
],
|
|
2867
|
+
"name": "transferOwnershipCancellation",
|
|
2868
|
+
"outputs": [
|
|
2869
|
+
{
|
|
2870
|
+
"internalType": "uint256",
|
|
2871
|
+
"name": "",
|
|
2872
|
+
"type": "uint256"
|
|
3367
2873
|
}
|
|
3368
2874
|
],
|
|
3369
2875
|
"stateMutability": "nonpayable",
|
|
@@ -3542,108 +3048,12 @@
|
|
|
3542
3048
|
"type": "tuple"
|
|
3543
3049
|
}
|
|
3544
3050
|
],
|
|
3545
|
-
"name": "
|
|
3051
|
+
"name": "transferOwnershipCancellationWithMetaTx",
|
|
3546
3052
|
"outputs": [
|
|
3547
3053
|
{
|
|
3548
|
-
"
|
|
3549
|
-
{
|
|
3550
|
-
"internalType": "uint256",
|
|
3551
|
-
"name": "txId",
|
|
3552
|
-
"type": "uint256"
|
|
3553
|
-
},
|
|
3554
|
-
{
|
|
3555
|
-
"internalType": "uint256",
|
|
3556
|
-
"name": "releaseTime",
|
|
3557
|
-
"type": "uint256"
|
|
3558
|
-
},
|
|
3559
|
-
{
|
|
3560
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3561
|
-
"name": "status",
|
|
3562
|
-
"type": "uint8"
|
|
3563
|
-
},
|
|
3564
|
-
{
|
|
3565
|
-
"components": [
|
|
3566
|
-
{
|
|
3567
|
-
"internalType": "address",
|
|
3568
|
-
"name": "requester",
|
|
3569
|
-
"type": "address"
|
|
3570
|
-
},
|
|
3571
|
-
{
|
|
3572
|
-
"internalType": "address",
|
|
3573
|
-
"name": "target",
|
|
3574
|
-
"type": "address"
|
|
3575
|
-
},
|
|
3576
|
-
{
|
|
3577
|
-
"internalType": "uint256",
|
|
3578
|
-
"name": "value",
|
|
3579
|
-
"type": "uint256"
|
|
3580
|
-
},
|
|
3581
|
-
{
|
|
3582
|
-
"internalType": "uint256",
|
|
3583
|
-
"name": "gasLimit",
|
|
3584
|
-
"type": "uint256"
|
|
3585
|
-
},
|
|
3586
|
-
{
|
|
3587
|
-
"internalType": "bytes32",
|
|
3588
|
-
"name": "operationType",
|
|
3589
|
-
"type": "bytes32"
|
|
3590
|
-
},
|
|
3591
|
-
{
|
|
3592
|
-
"internalType": "bytes4",
|
|
3593
|
-
"name": "executionSelector",
|
|
3594
|
-
"type": "bytes4"
|
|
3595
|
-
},
|
|
3596
|
-
{
|
|
3597
|
-
"internalType": "bytes",
|
|
3598
|
-
"name": "executionParams",
|
|
3599
|
-
"type": "bytes"
|
|
3600
|
-
}
|
|
3601
|
-
],
|
|
3602
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3603
|
-
"name": "params",
|
|
3604
|
-
"type": "tuple"
|
|
3605
|
-
},
|
|
3606
|
-
{
|
|
3607
|
-
"internalType": "bytes32",
|
|
3608
|
-
"name": "message",
|
|
3609
|
-
"type": "bytes32"
|
|
3610
|
-
},
|
|
3611
|
-
{
|
|
3612
|
-
"internalType": "bytes",
|
|
3613
|
-
"name": "result",
|
|
3614
|
-
"type": "bytes"
|
|
3615
|
-
},
|
|
3616
|
-
{
|
|
3617
|
-
"components": [
|
|
3618
|
-
{
|
|
3619
|
-
"internalType": "address",
|
|
3620
|
-
"name": "recipient",
|
|
3621
|
-
"type": "address"
|
|
3622
|
-
},
|
|
3623
|
-
{
|
|
3624
|
-
"internalType": "uint256",
|
|
3625
|
-
"name": "nativeTokenAmount",
|
|
3626
|
-
"type": "uint256"
|
|
3627
|
-
},
|
|
3628
|
-
{
|
|
3629
|
-
"internalType": "address",
|
|
3630
|
-
"name": "erc20TokenAddress",
|
|
3631
|
-
"type": "address"
|
|
3632
|
-
},
|
|
3633
|
-
{
|
|
3634
|
-
"internalType": "uint256",
|
|
3635
|
-
"name": "erc20TokenAmount",
|
|
3636
|
-
"type": "uint256"
|
|
3637
|
-
}
|
|
3638
|
-
],
|
|
3639
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3640
|
-
"name": "payment",
|
|
3641
|
-
"type": "tuple"
|
|
3642
|
-
}
|
|
3643
|
-
],
|
|
3644
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3054
|
+
"internalType": "uint256",
|
|
3645
3055
|
"name": "",
|
|
3646
|
-
"type": "
|
|
3056
|
+
"type": "uint256"
|
|
3647
3057
|
}
|
|
3648
3058
|
],
|
|
3649
3059
|
"stateMutability": "nonpayable",
|
|
@@ -3657,108 +3067,25 @@
|
|
|
3657
3067
|
"type": "uint256"
|
|
3658
3068
|
}
|
|
3659
3069
|
],
|
|
3660
|
-
"name": "
|
|
3070
|
+
"name": "transferOwnershipDelayedApproval",
|
|
3661
3071
|
"outputs": [
|
|
3662
3072
|
{
|
|
3663
|
-
"
|
|
3664
|
-
{
|
|
3665
|
-
"internalType": "uint256",
|
|
3666
|
-
"name": "txId",
|
|
3667
|
-
"type": "uint256"
|
|
3668
|
-
},
|
|
3669
|
-
{
|
|
3670
|
-
"internalType": "uint256",
|
|
3671
|
-
"name": "releaseTime",
|
|
3672
|
-
"type": "uint256"
|
|
3673
|
-
},
|
|
3674
|
-
{
|
|
3675
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3676
|
-
"name": "status",
|
|
3677
|
-
"type": "uint8"
|
|
3678
|
-
},
|
|
3679
|
-
{
|
|
3680
|
-
"components": [
|
|
3681
|
-
{
|
|
3682
|
-
"internalType": "address",
|
|
3683
|
-
"name": "requester",
|
|
3684
|
-
"type": "address"
|
|
3685
|
-
},
|
|
3686
|
-
{
|
|
3687
|
-
"internalType": "address",
|
|
3688
|
-
"name": "target",
|
|
3689
|
-
"type": "address"
|
|
3690
|
-
},
|
|
3691
|
-
{
|
|
3692
|
-
"internalType": "uint256",
|
|
3693
|
-
"name": "value",
|
|
3694
|
-
"type": "uint256"
|
|
3695
|
-
},
|
|
3696
|
-
{
|
|
3697
|
-
"internalType": "uint256",
|
|
3698
|
-
"name": "gasLimit",
|
|
3699
|
-
"type": "uint256"
|
|
3700
|
-
},
|
|
3701
|
-
{
|
|
3702
|
-
"internalType": "bytes32",
|
|
3703
|
-
"name": "operationType",
|
|
3704
|
-
"type": "bytes32"
|
|
3705
|
-
},
|
|
3706
|
-
{
|
|
3707
|
-
"internalType": "bytes4",
|
|
3708
|
-
"name": "executionSelector",
|
|
3709
|
-
"type": "bytes4"
|
|
3710
|
-
},
|
|
3711
|
-
{
|
|
3712
|
-
"internalType": "bytes",
|
|
3713
|
-
"name": "executionParams",
|
|
3714
|
-
"type": "bytes"
|
|
3715
|
-
}
|
|
3716
|
-
],
|
|
3717
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3718
|
-
"name": "params",
|
|
3719
|
-
"type": "tuple"
|
|
3720
|
-
},
|
|
3721
|
-
{
|
|
3722
|
-
"internalType": "bytes32",
|
|
3723
|
-
"name": "message",
|
|
3724
|
-
"type": "bytes32"
|
|
3725
|
-
},
|
|
3726
|
-
{
|
|
3727
|
-
"internalType": "bytes",
|
|
3728
|
-
"name": "result",
|
|
3729
|
-
"type": "bytes"
|
|
3730
|
-
},
|
|
3731
|
-
{
|
|
3732
|
-
"components": [
|
|
3733
|
-
{
|
|
3734
|
-
"internalType": "address",
|
|
3735
|
-
"name": "recipient",
|
|
3736
|
-
"type": "address"
|
|
3737
|
-
},
|
|
3738
|
-
{
|
|
3739
|
-
"internalType": "uint256",
|
|
3740
|
-
"name": "nativeTokenAmount",
|
|
3741
|
-
"type": "uint256"
|
|
3742
|
-
},
|
|
3743
|
-
{
|
|
3744
|
-
"internalType": "address",
|
|
3745
|
-
"name": "erc20TokenAddress",
|
|
3746
|
-
"type": "address"
|
|
3747
|
-
},
|
|
3748
|
-
{
|
|
3749
|
-
"internalType": "uint256",
|
|
3750
|
-
"name": "erc20TokenAmount",
|
|
3751
|
-
"type": "uint256"
|
|
3752
|
-
}
|
|
3753
|
-
],
|
|
3754
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3755
|
-
"name": "payment",
|
|
3756
|
-
"type": "tuple"
|
|
3757
|
-
}
|
|
3758
|
-
],
|
|
3759
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3073
|
+
"internalType": "uint256",
|
|
3760
3074
|
"name": "",
|
|
3761
|
-
"type": "
|
|
3075
|
+
"type": "uint256"
|
|
3076
|
+
}
|
|
3077
|
+
],
|
|
3078
|
+
"stateMutability": "nonpayable",
|
|
3079
|
+
"type": "function"
|
|
3080
|
+
},
|
|
3081
|
+
{
|
|
3082
|
+
"inputs": [],
|
|
3083
|
+
"name": "transferOwnershipRequest",
|
|
3084
|
+
"outputs": [
|
|
3085
|
+
{
|
|
3086
|
+
"internalType": "uint256",
|
|
3087
|
+
"name": "txId",
|
|
3088
|
+
"type": "uint256"
|
|
3762
3089
|
}
|
|
3763
3090
|
],
|
|
3764
3091
|
"stateMutability": "nonpayable",
|
|
@@ -3937,179 +3264,185 @@
|
|
|
3937
3264
|
"type": "tuple"
|
|
3938
3265
|
}
|
|
3939
3266
|
],
|
|
3940
|
-
"name": "
|
|
3267
|
+
"name": "updateBroadcasterApprovalWithMetaTx",
|
|
3268
|
+
"outputs": [
|
|
3269
|
+
{
|
|
3270
|
+
"internalType": "uint256",
|
|
3271
|
+
"name": "",
|
|
3272
|
+
"type": "uint256"
|
|
3273
|
+
}
|
|
3274
|
+
],
|
|
3275
|
+
"stateMutability": "nonpayable",
|
|
3276
|
+
"type": "function"
|
|
3277
|
+
},
|
|
3278
|
+
{
|
|
3279
|
+
"inputs": [
|
|
3280
|
+
{
|
|
3281
|
+
"internalType": "uint256",
|
|
3282
|
+
"name": "txId",
|
|
3283
|
+
"type": "uint256"
|
|
3284
|
+
}
|
|
3285
|
+
],
|
|
3286
|
+
"name": "updateBroadcasterCancellation",
|
|
3941
3287
|
"outputs": [
|
|
3288
|
+
{
|
|
3289
|
+
"internalType": "uint256",
|
|
3290
|
+
"name": "",
|
|
3291
|
+
"type": "uint256"
|
|
3292
|
+
}
|
|
3293
|
+
],
|
|
3294
|
+
"stateMutability": "nonpayable",
|
|
3295
|
+
"type": "function"
|
|
3296
|
+
},
|
|
3297
|
+
{
|
|
3298
|
+
"inputs": [
|
|
3942
3299
|
{
|
|
3943
3300
|
"components": [
|
|
3944
|
-
{
|
|
3945
|
-
"internalType": "uint256",
|
|
3946
|
-
"name": "txId",
|
|
3947
|
-
"type": "uint256"
|
|
3948
|
-
},
|
|
3949
|
-
{
|
|
3950
|
-
"internalType": "uint256",
|
|
3951
|
-
"name": "releaseTime",
|
|
3952
|
-
"type": "uint256"
|
|
3953
|
-
},
|
|
3954
|
-
{
|
|
3955
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3956
|
-
"name": "status",
|
|
3957
|
-
"type": "uint8"
|
|
3958
|
-
},
|
|
3959
3301
|
{
|
|
3960
3302
|
"components": [
|
|
3961
|
-
{
|
|
3962
|
-
"internalType": "address",
|
|
3963
|
-
"name": "requester",
|
|
3964
|
-
"type": "address"
|
|
3965
|
-
},
|
|
3966
|
-
{
|
|
3967
|
-
"internalType": "address",
|
|
3968
|
-
"name": "target",
|
|
3969
|
-
"type": "address"
|
|
3970
|
-
},
|
|
3971
3303
|
{
|
|
3972
3304
|
"internalType": "uint256",
|
|
3973
|
-
"name": "
|
|
3305
|
+
"name": "txId",
|
|
3974
3306
|
"type": "uint256"
|
|
3975
3307
|
},
|
|
3976
3308
|
{
|
|
3977
3309
|
"internalType": "uint256",
|
|
3978
|
-
"name": "
|
|
3310
|
+
"name": "releaseTime",
|
|
3979
3311
|
"type": "uint256"
|
|
3980
3312
|
},
|
|
3981
3313
|
{
|
|
3982
|
-
"internalType": "
|
|
3983
|
-
"name": "
|
|
3984
|
-
"type": "
|
|
3314
|
+
"internalType": "enum EngineBlox.TxStatus",
|
|
3315
|
+
"name": "status",
|
|
3316
|
+
"type": "uint8"
|
|
3985
3317
|
},
|
|
3986
3318
|
{
|
|
3987
|
-
"
|
|
3988
|
-
|
|
3989
|
-
|
|
3319
|
+
"components": [
|
|
3320
|
+
{
|
|
3321
|
+
"internalType": "address",
|
|
3322
|
+
"name": "requester",
|
|
3323
|
+
"type": "address"
|
|
3324
|
+
},
|
|
3325
|
+
{
|
|
3326
|
+
"internalType": "address",
|
|
3327
|
+
"name": "target",
|
|
3328
|
+
"type": "address"
|
|
3329
|
+
},
|
|
3330
|
+
{
|
|
3331
|
+
"internalType": "uint256",
|
|
3332
|
+
"name": "value",
|
|
3333
|
+
"type": "uint256"
|
|
3334
|
+
},
|
|
3335
|
+
{
|
|
3336
|
+
"internalType": "uint256",
|
|
3337
|
+
"name": "gasLimit",
|
|
3338
|
+
"type": "uint256"
|
|
3339
|
+
},
|
|
3340
|
+
{
|
|
3341
|
+
"internalType": "bytes32",
|
|
3342
|
+
"name": "operationType",
|
|
3343
|
+
"type": "bytes32"
|
|
3344
|
+
},
|
|
3345
|
+
{
|
|
3346
|
+
"internalType": "bytes4",
|
|
3347
|
+
"name": "executionSelector",
|
|
3348
|
+
"type": "bytes4"
|
|
3349
|
+
},
|
|
3350
|
+
{
|
|
3351
|
+
"internalType": "bytes",
|
|
3352
|
+
"name": "executionParams",
|
|
3353
|
+
"type": "bytes"
|
|
3354
|
+
}
|
|
3355
|
+
],
|
|
3356
|
+
"internalType": "struct EngineBlox.TxParams",
|
|
3357
|
+
"name": "params",
|
|
3358
|
+
"type": "tuple"
|
|
3359
|
+
},
|
|
3360
|
+
{
|
|
3361
|
+
"internalType": "bytes32",
|
|
3362
|
+
"name": "message",
|
|
3363
|
+
"type": "bytes32"
|
|
3990
3364
|
},
|
|
3991
3365
|
{
|
|
3992
3366
|
"internalType": "bytes",
|
|
3993
|
-
"name": "
|
|
3367
|
+
"name": "result",
|
|
3994
3368
|
"type": "bytes"
|
|
3369
|
+
},
|
|
3370
|
+
{
|
|
3371
|
+
"components": [
|
|
3372
|
+
{
|
|
3373
|
+
"internalType": "address",
|
|
3374
|
+
"name": "recipient",
|
|
3375
|
+
"type": "address"
|
|
3376
|
+
},
|
|
3377
|
+
{
|
|
3378
|
+
"internalType": "uint256",
|
|
3379
|
+
"name": "nativeTokenAmount",
|
|
3380
|
+
"type": "uint256"
|
|
3381
|
+
},
|
|
3382
|
+
{
|
|
3383
|
+
"internalType": "address",
|
|
3384
|
+
"name": "erc20TokenAddress",
|
|
3385
|
+
"type": "address"
|
|
3386
|
+
},
|
|
3387
|
+
{
|
|
3388
|
+
"internalType": "uint256",
|
|
3389
|
+
"name": "erc20TokenAmount",
|
|
3390
|
+
"type": "uint256"
|
|
3391
|
+
}
|
|
3392
|
+
],
|
|
3393
|
+
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3394
|
+
"name": "payment",
|
|
3395
|
+
"type": "tuple"
|
|
3995
3396
|
}
|
|
3996
3397
|
],
|
|
3997
|
-
"internalType": "struct EngineBlox.
|
|
3998
|
-
"name": "
|
|
3398
|
+
"internalType": "struct EngineBlox.TxRecord",
|
|
3399
|
+
"name": "txRecord",
|
|
3999
3400
|
"type": "tuple"
|
|
4000
3401
|
},
|
|
4001
|
-
{
|
|
4002
|
-
"internalType": "bytes32",
|
|
4003
|
-
"name": "message",
|
|
4004
|
-
"type": "bytes32"
|
|
4005
|
-
},
|
|
4006
|
-
{
|
|
4007
|
-
"internalType": "bytes",
|
|
4008
|
-
"name": "result",
|
|
4009
|
-
"type": "bytes"
|
|
4010
|
-
},
|
|
4011
3402
|
{
|
|
4012
3403
|
"components": [
|
|
4013
3404
|
{
|
|
4014
|
-
"internalType": "
|
|
4015
|
-
"name": "
|
|
4016
|
-
"type": "
|
|
3405
|
+
"internalType": "uint256",
|
|
3406
|
+
"name": "chainId",
|
|
3407
|
+
"type": "uint256"
|
|
4017
3408
|
},
|
|
4018
3409
|
{
|
|
4019
3410
|
"internalType": "uint256",
|
|
4020
|
-
"name": "
|
|
3411
|
+
"name": "nonce",
|
|
4021
3412
|
"type": "uint256"
|
|
4022
3413
|
},
|
|
4023
3414
|
{
|
|
4024
3415
|
"internalType": "address",
|
|
4025
|
-
"name": "
|
|
3416
|
+
"name": "handlerContract",
|
|
4026
3417
|
"type": "address"
|
|
4027
3418
|
},
|
|
4028
3419
|
{
|
|
4029
|
-
"internalType": "
|
|
4030
|
-
"name": "
|
|
4031
|
-
"type": "
|
|
4032
|
-
}
|
|
4033
|
-
],
|
|
4034
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4035
|
-
"name": "payment",
|
|
4036
|
-
"type": "tuple"
|
|
4037
|
-
}
|
|
4038
|
-
],
|
|
4039
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
4040
|
-
"name": "",
|
|
4041
|
-
"type": "tuple"
|
|
4042
|
-
}
|
|
4043
|
-
],
|
|
4044
|
-
"stateMutability": "nonpayable",
|
|
4045
|
-
"type": "function"
|
|
4046
|
-
},
|
|
4047
|
-
{
|
|
4048
|
-
"inputs": [
|
|
4049
|
-
{
|
|
4050
|
-
"internalType": "uint256",
|
|
4051
|
-
"name": "txId",
|
|
4052
|
-
"type": "uint256"
|
|
4053
|
-
}
|
|
4054
|
-
],
|
|
4055
|
-
"name": "transferOwnershipDelayedApproval",
|
|
4056
|
-
"outputs": [
|
|
4057
|
-
{
|
|
4058
|
-
"components": [
|
|
4059
|
-
{
|
|
4060
|
-
"internalType": "uint256",
|
|
4061
|
-
"name": "txId",
|
|
4062
|
-
"type": "uint256"
|
|
4063
|
-
},
|
|
4064
|
-
{
|
|
4065
|
-
"internalType": "uint256",
|
|
4066
|
-
"name": "releaseTime",
|
|
4067
|
-
"type": "uint256"
|
|
4068
|
-
},
|
|
4069
|
-
{
|
|
4070
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4071
|
-
"name": "status",
|
|
4072
|
-
"type": "uint8"
|
|
4073
|
-
},
|
|
4074
|
-
{
|
|
4075
|
-
"components": [
|
|
4076
|
-
{
|
|
4077
|
-
"internalType": "address",
|
|
4078
|
-
"name": "requester",
|
|
4079
|
-
"type": "address"
|
|
3420
|
+
"internalType": "bytes4",
|
|
3421
|
+
"name": "handlerSelector",
|
|
3422
|
+
"type": "bytes4"
|
|
4080
3423
|
},
|
|
4081
3424
|
{
|
|
4082
|
-
"internalType": "
|
|
4083
|
-
"name": "
|
|
4084
|
-
"type": "
|
|
3425
|
+
"internalType": "enum EngineBlox.TxAction",
|
|
3426
|
+
"name": "action",
|
|
3427
|
+
"type": "uint8"
|
|
4085
3428
|
},
|
|
4086
3429
|
{
|
|
4087
3430
|
"internalType": "uint256",
|
|
4088
|
-
"name": "
|
|
3431
|
+
"name": "deadline",
|
|
4089
3432
|
"type": "uint256"
|
|
4090
3433
|
},
|
|
4091
3434
|
{
|
|
4092
3435
|
"internalType": "uint256",
|
|
4093
|
-
"name": "
|
|
3436
|
+
"name": "maxGasPrice",
|
|
4094
3437
|
"type": "uint256"
|
|
4095
3438
|
},
|
|
4096
3439
|
{
|
|
4097
|
-
"internalType": "
|
|
4098
|
-
"name": "
|
|
4099
|
-
"type": "
|
|
4100
|
-
},
|
|
4101
|
-
{
|
|
4102
|
-
"internalType": "bytes4",
|
|
4103
|
-
"name": "executionSelector",
|
|
4104
|
-
"type": "bytes4"
|
|
4105
|
-
},
|
|
4106
|
-
{
|
|
4107
|
-
"internalType": "bytes",
|
|
4108
|
-
"name": "executionParams",
|
|
4109
|
-
"type": "bytes"
|
|
3440
|
+
"internalType": "address",
|
|
3441
|
+
"name": "signer",
|
|
3442
|
+
"type": "address"
|
|
4110
3443
|
}
|
|
4111
3444
|
],
|
|
4112
|
-
"internalType": "struct EngineBlox.
|
|
3445
|
+
"internalType": "struct EngineBlox.MetaTxParams",
|
|
4113
3446
|
"name": "params",
|
|
4114
3447
|
"type": "tuple"
|
|
4115
3448
|
},
|
|
@@ -4120,1054 +3453,69 @@
|
|
|
4120
3453
|
},
|
|
4121
3454
|
{
|
|
4122
3455
|
"internalType": "bytes",
|
|
4123
|
-
"name": "
|
|
3456
|
+
"name": "signature",
|
|
4124
3457
|
"type": "bytes"
|
|
4125
3458
|
},
|
|
4126
3459
|
{
|
|
4127
|
-
"
|
|
4128
|
-
|
|
4129
|
-
|
|
4130
|
-
"name": "recipient",
|
|
4131
|
-
"type": "address"
|
|
4132
|
-
},
|
|
4133
|
-
{
|
|
4134
|
-
"internalType": "uint256",
|
|
4135
|
-
"name": "nativeTokenAmount",
|
|
4136
|
-
"type": "uint256"
|
|
4137
|
-
},
|
|
4138
|
-
{
|
|
4139
|
-
"internalType": "address",
|
|
4140
|
-
"name": "erc20TokenAddress",
|
|
4141
|
-
"type": "address"
|
|
4142
|
-
},
|
|
4143
|
-
{
|
|
4144
|
-
"internalType": "uint256",
|
|
4145
|
-
"name": "erc20TokenAmount",
|
|
4146
|
-
"type": "uint256"
|
|
4147
|
-
}
|
|
4148
|
-
],
|
|
4149
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4150
|
-
"name": "payment",
|
|
4151
|
-
"type": "tuple"
|
|
3460
|
+
"internalType": "bytes",
|
|
3461
|
+
"name": "data",
|
|
3462
|
+
"type": "bytes"
|
|
4152
3463
|
}
|
|
4153
3464
|
],
|
|
4154
|
-
"internalType": "struct EngineBlox.
|
|
4155
|
-
"name": "",
|
|
3465
|
+
"internalType": "struct EngineBlox.MetaTransaction",
|
|
3466
|
+
"name": "metaTx",
|
|
4156
3467
|
"type": "tuple"
|
|
4157
3468
|
}
|
|
4158
3469
|
],
|
|
3470
|
+
"name": "updateBroadcasterCancellationWithMetaTx",
|
|
3471
|
+
"outputs": [
|
|
3472
|
+
{
|
|
3473
|
+
"internalType": "uint256",
|
|
3474
|
+
"name": "",
|
|
3475
|
+
"type": "uint256"
|
|
3476
|
+
}
|
|
3477
|
+
],
|
|
4159
3478
|
"stateMutability": "nonpayable",
|
|
4160
3479
|
"type": "function"
|
|
4161
3480
|
},
|
|
4162
3481
|
{
|
|
4163
|
-
"inputs": [
|
|
4164
|
-
"name": "transferOwnershipRequest",
|
|
4165
|
-
"outputs": [
|
|
4166
|
-
{
|
|
4167
|
-
"components": [
|
|
4168
|
-
{
|
|
4169
|
-
"internalType": "uint256",
|
|
4170
|
-
"name": "txId",
|
|
4171
|
-
"type": "uint256"
|
|
4172
|
-
},
|
|
4173
|
-
{
|
|
4174
|
-
"internalType": "uint256",
|
|
4175
|
-
"name": "releaseTime",
|
|
4176
|
-
"type": "uint256"
|
|
4177
|
-
},
|
|
4178
|
-
{
|
|
4179
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4180
|
-
"name": "status",
|
|
4181
|
-
"type": "uint8"
|
|
4182
|
-
},
|
|
4183
|
-
{
|
|
4184
|
-
"components": [
|
|
4185
|
-
{
|
|
4186
|
-
"internalType": "address",
|
|
4187
|
-
"name": "requester",
|
|
4188
|
-
"type": "address"
|
|
4189
|
-
},
|
|
4190
|
-
{
|
|
4191
|
-
"internalType": "address",
|
|
4192
|
-
"name": "target",
|
|
4193
|
-
"type": "address"
|
|
4194
|
-
},
|
|
4195
|
-
{
|
|
4196
|
-
"internalType": "uint256",
|
|
4197
|
-
"name": "value",
|
|
4198
|
-
"type": "uint256"
|
|
4199
|
-
},
|
|
4200
|
-
{
|
|
4201
|
-
"internalType": "uint256",
|
|
4202
|
-
"name": "gasLimit",
|
|
4203
|
-
"type": "uint256"
|
|
4204
|
-
},
|
|
4205
|
-
{
|
|
4206
|
-
"internalType": "bytes32",
|
|
4207
|
-
"name": "operationType",
|
|
4208
|
-
"type": "bytes32"
|
|
4209
|
-
},
|
|
4210
|
-
{
|
|
4211
|
-
"internalType": "bytes4",
|
|
4212
|
-
"name": "executionSelector",
|
|
4213
|
-
"type": "bytes4"
|
|
4214
|
-
},
|
|
4215
|
-
{
|
|
4216
|
-
"internalType": "bytes",
|
|
4217
|
-
"name": "executionParams",
|
|
4218
|
-
"type": "bytes"
|
|
4219
|
-
}
|
|
4220
|
-
],
|
|
4221
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
4222
|
-
"name": "params",
|
|
4223
|
-
"type": "tuple"
|
|
4224
|
-
},
|
|
4225
|
-
{
|
|
4226
|
-
"internalType": "bytes32",
|
|
4227
|
-
"name": "message",
|
|
4228
|
-
"type": "bytes32"
|
|
4229
|
-
},
|
|
4230
|
-
{
|
|
4231
|
-
"internalType": "bytes",
|
|
4232
|
-
"name": "result",
|
|
4233
|
-
"type": "bytes"
|
|
4234
|
-
},
|
|
4235
|
-
{
|
|
4236
|
-
"components": [
|
|
4237
|
-
{
|
|
4238
|
-
"internalType": "address",
|
|
4239
|
-
"name": "recipient",
|
|
4240
|
-
"type": "address"
|
|
4241
|
-
},
|
|
4242
|
-
{
|
|
4243
|
-
"internalType": "uint256",
|
|
4244
|
-
"name": "nativeTokenAmount",
|
|
4245
|
-
"type": "uint256"
|
|
4246
|
-
},
|
|
4247
|
-
{
|
|
4248
|
-
"internalType": "address",
|
|
4249
|
-
"name": "erc20TokenAddress",
|
|
4250
|
-
"type": "address"
|
|
4251
|
-
},
|
|
4252
|
-
{
|
|
4253
|
-
"internalType": "uint256",
|
|
4254
|
-
"name": "erc20TokenAmount",
|
|
4255
|
-
"type": "uint256"
|
|
4256
|
-
}
|
|
4257
|
-
],
|
|
4258
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4259
|
-
"name": "payment",
|
|
4260
|
-
"type": "tuple"
|
|
4261
|
-
}
|
|
4262
|
-
],
|
|
4263
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
4264
|
-
"name": "",
|
|
4265
|
-
"type": "tuple"
|
|
4266
|
-
}
|
|
4267
|
-
],
|
|
4268
|
-
"stateMutability": "nonpayable",
|
|
4269
|
-
"type": "function"
|
|
4270
|
-
},
|
|
4271
|
-
{
|
|
4272
|
-
"inputs": [
|
|
4273
|
-
{
|
|
4274
|
-
"components": [
|
|
4275
|
-
{
|
|
4276
|
-
"components": [
|
|
4277
|
-
{
|
|
4278
|
-
"internalType": "uint256",
|
|
4279
|
-
"name": "txId",
|
|
4280
|
-
"type": "uint256"
|
|
4281
|
-
},
|
|
4282
|
-
{
|
|
4283
|
-
"internalType": "uint256",
|
|
4284
|
-
"name": "releaseTime",
|
|
4285
|
-
"type": "uint256"
|
|
4286
|
-
},
|
|
4287
|
-
{
|
|
4288
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4289
|
-
"name": "status",
|
|
4290
|
-
"type": "uint8"
|
|
4291
|
-
},
|
|
4292
|
-
{
|
|
4293
|
-
"components": [
|
|
4294
|
-
{
|
|
4295
|
-
"internalType": "address",
|
|
4296
|
-
"name": "requester",
|
|
4297
|
-
"type": "address"
|
|
4298
|
-
},
|
|
4299
|
-
{
|
|
4300
|
-
"internalType": "address",
|
|
4301
|
-
"name": "target",
|
|
4302
|
-
"type": "address"
|
|
4303
|
-
},
|
|
4304
|
-
{
|
|
4305
|
-
"internalType": "uint256",
|
|
4306
|
-
"name": "value",
|
|
4307
|
-
"type": "uint256"
|
|
4308
|
-
},
|
|
4309
|
-
{
|
|
4310
|
-
"internalType": "uint256",
|
|
4311
|
-
"name": "gasLimit",
|
|
4312
|
-
"type": "uint256"
|
|
4313
|
-
},
|
|
4314
|
-
{
|
|
4315
|
-
"internalType": "bytes32",
|
|
4316
|
-
"name": "operationType",
|
|
4317
|
-
"type": "bytes32"
|
|
4318
|
-
},
|
|
4319
|
-
{
|
|
4320
|
-
"internalType": "bytes4",
|
|
4321
|
-
"name": "executionSelector",
|
|
4322
|
-
"type": "bytes4"
|
|
4323
|
-
},
|
|
4324
|
-
{
|
|
4325
|
-
"internalType": "bytes",
|
|
4326
|
-
"name": "executionParams",
|
|
4327
|
-
"type": "bytes"
|
|
4328
|
-
}
|
|
4329
|
-
],
|
|
4330
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
4331
|
-
"name": "params",
|
|
4332
|
-
"type": "tuple"
|
|
4333
|
-
},
|
|
4334
|
-
{
|
|
4335
|
-
"internalType": "bytes32",
|
|
4336
|
-
"name": "message",
|
|
4337
|
-
"type": "bytes32"
|
|
4338
|
-
},
|
|
4339
|
-
{
|
|
4340
|
-
"internalType": "bytes",
|
|
4341
|
-
"name": "result",
|
|
4342
|
-
"type": "bytes"
|
|
4343
|
-
},
|
|
4344
|
-
{
|
|
4345
|
-
"components": [
|
|
4346
|
-
{
|
|
4347
|
-
"internalType": "address",
|
|
4348
|
-
"name": "recipient",
|
|
4349
|
-
"type": "address"
|
|
4350
|
-
},
|
|
4351
|
-
{
|
|
4352
|
-
"internalType": "uint256",
|
|
4353
|
-
"name": "nativeTokenAmount",
|
|
4354
|
-
"type": "uint256"
|
|
4355
|
-
},
|
|
4356
|
-
{
|
|
4357
|
-
"internalType": "address",
|
|
4358
|
-
"name": "erc20TokenAddress",
|
|
4359
|
-
"type": "address"
|
|
4360
|
-
},
|
|
4361
|
-
{
|
|
4362
|
-
"internalType": "uint256",
|
|
4363
|
-
"name": "erc20TokenAmount",
|
|
4364
|
-
"type": "uint256"
|
|
4365
|
-
}
|
|
4366
|
-
],
|
|
4367
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4368
|
-
"name": "payment",
|
|
4369
|
-
"type": "tuple"
|
|
4370
|
-
}
|
|
4371
|
-
],
|
|
4372
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
4373
|
-
"name": "txRecord",
|
|
4374
|
-
"type": "tuple"
|
|
4375
|
-
},
|
|
4376
|
-
{
|
|
4377
|
-
"components": [
|
|
4378
|
-
{
|
|
4379
|
-
"internalType": "uint256",
|
|
4380
|
-
"name": "chainId",
|
|
4381
|
-
"type": "uint256"
|
|
4382
|
-
},
|
|
4383
|
-
{
|
|
4384
|
-
"internalType": "uint256",
|
|
4385
|
-
"name": "nonce",
|
|
4386
|
-
"type": "uint256"
|
|
4387
|
-
},
|
|
4388
|
-
{
|
|
4389
|
-
"internalType": "address",
|
|
4390
|
-
"name": "handlerContract",
|
|
4391
|
-
"type": "address"
|
|
4392
|
-
},
|
|
4393
|
-
{
|
|
4394
|
-
"internalType": "bytes4",
|
|
4395
|
-
"name": "handlerSelector",
|
|
4396
|
-
"type": "bytes4"
|
|
4397
|
-
},
|
|
4398
|
-
{
|
|
4399
|
-
"internalType": "enum EngineBlox.TxAction",
|
|
4400
|
-
"name": "action",
|
|
4401
|
-
"type": "uint8"
|
|
4402
|
-
},
|
|
4403
|
-
{
|
|
4404
|
-
"internalType": "uint256",
|
|
4405
|
-
"name": "deadline",
|
|
4406
|
-
"type": "uint256"
|
|
4407
|
-
},
|
|
4408
|
-
{
|
|
4409
|
-
"internalType": "uint256",
|
|
4410
|
-
"name": "maxGasPrice",
|
|
4411
|
-
"type": "uint256"
|
|
4412
|
-
},
|
|
4413
|
-
{
|
|
4414
|
-
"internalType": "address",
|
|
4415
|
-
"name": "signer",
|
|
4416
|
-
"type": "address"
|
|
4417
|
-
}
|
|
4418
|
-
],
|
|
4419
|
-
"internalType": "struct EngineBlox.MetaTxParams",
|
|
4420
|
-
"name": "params",
|
|
4421
|
-
"type": "tuple"
|
|
4422
|
-
},
|
|
4423
|
-
{
|
|
4424
|
-
"internalType": "bytes32",
|
|
4425
|
-
"name": "message",
|
|
4426
|
-
"type": "bytes32"
|
|
4427
|
-
},
|
|
4428
|
-
{
|
|
4429
|
-
"internalType": "bytes",
|
|
4430
|
-
"name": "signature",
|
|
4431
|
-
"type": "bytes"
|
|
4432
|
-
},
|
|
4433
|
-
{
|
|
4434
|
-
"internalType": "bytes",
|
|
4435
|
-
"name": "data",
|
|
4436
|
-
"type": "bytes"
|
|
4437
|
-
}
|
|
4438
|
-
],
|
|
4439
|
-
"internalType": "struct EngineBlox.MetaTransaction",
|
|
4440
|
-
"name": "metaTx",
|
|
4441
|
-
"type": "tuple"
|
|
4442
|
-
}
|
|
4443
|
-
],
|
|
4444
|
-
"name": "updateBroadcasterApprovalWithMetaTx",
|
|
4445
|
-
"outputs": [
|
|
4446
|
-
{
|
|
4447
|
-
"components": [
|
|
4448
|
-
{
|
|
4449
|
-
"internalType": "uint256",
|
|
4450
|
-
"name": "txId",
|
|
4451
|
-
"type": "uint256"
|
|
4452
|
-
},
|
|
4453
|
-
{
|
|
4454
|
-
"internalType": "uint256",
|
|
4455
|
-
"name": "releaseTime",
|
|
4456
|
-
"type": "uint256"
|
|
4457
|
-
},
|
|
4458
|
-
{
|
|
4459
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4460
|
-
"name": "status",
|
|
4461
|
-
"type": "uint8"
|
|
4462
|
-
},
|
|
4463
|
-
{
|
|
4464
|
-
"components": [
|
|
4465
|
-
{
|
|
4466
|
-
"internalType": "address",
|
|
4467
|
-
"name": "requester",
|
|
4468
|
-
"type": "address"
|
|
4469
|
-
},
|
|
4470
|
-
{
|
|
4471
|
-
"internalType": "address",
|
|
4472
|
-
"name": "target",
|
|
4473
|
-
"type": "address"
|
|
4474
|
-
},
|
|
4475
|
-
{
|
|
4476
|
-
"internalType": "uint256",
|
|
4477
|
-
"name": "value",
|
|
4478
|
-
"type": "uint256"
|
|
4479
|
-
},
|
|
4480
|
-
{
|
|
4481
|
-
"internalType": "uint256",
|
|
4482
|
-
"name": "gasLimit",
|
|
4483
|
-
"type": "uint256"
|
|
4484
|
-
},
|
|
4485
|
-
{
|
|
4486
|
-
"internalType": "bytes32",
|
|
4487
|
-
"name": "operationType",
|
|
4488
|
-
"type": "bytes32"
|
|
4489
|
-
},
|
|
4490
|
-
{
|
|
4491
|
-
"internalType": "bytes4",
|
|
4492
|
-
"name": "executionSelector",
|
|
4493
|
-
"type": "bytes4"
|
|
4494
|
-
},
|
|
4495
|
-
{
|
|
4496
|
-
"internalType": "bytes",
|
|
4497
|
-
"name": "executionParams",
|
|
4498
|
-
"type": "bytes"
|
|
4499
|
-
}
|
|
4500
|
-
],
|
|
4501
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
4502
|
-
"name": "params",
|
|
4503
|
-
"type": "tuple"
|
|
4504
|
-
},
|
|
4505
|
-
{
|
|
4506
|
-
"internalType": "bytes32",
|
|
4507
|
-
"name": "message",
|
|
4508
|
-
"type": "bytes32"
|
|
4509
|
-
},
|
|
4510
|
-
{
|
|
4511
|
-
"internalType": "bytes",
|
|
4512
|
-
"name": "result",
|
|
4513
|
-
"type": "bytes"
|
|
4514
|
-
},
|
|
4515
|
-
{
|
|
4516
|
-
"components": [
|
|
4517
|
-
{
|
|
4518
|
-
"internalType": "address",
|
|
4519
|
-
"name": "recipient",
|
|
4520
|
-
"type": "address"
|
|
4521
|
-
},
|
|
4522
|
-
{
|
|
4523
|
-
"internalType": "uint256",
|
|
4524
|
-
"name": "nativeTokenAmount",
|
|
4525
|
-
"type": "uint256"
|
|
4526
|
-
},
|
|
4527
|
-
{
|
|
4528
|
-
"internalType": "address",
|
|
4529
|
-
"name": "erc20TokenAddress",
|
|
4530
|
-
"type": "address"
|
|
4531
|
-
},
|
|
4532
|
-
{
|
|
4533
|
-
"internalType": "uint256",
|
|
4534
|
-
"name": "erc20TokenAmount",
|
|
4535
|
-
"type": "uint256"
|
|
4536
|
-
}
|
|
4537
|
-
],
|
|
4538
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4539
|
-
"name": "payment",
|
|
4540
|
-
"type": "tuple"
|
|
4541
|
-
}
|
|
4542
|
-
],
|
|
4543
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
4544
|
-
"name": "",
|
|
4545
|
-
"type": "tuple"
|
|
4546
|
-
}
|
|
4547
|
-
],
|
|
4548
|
-
"stateMutability": "nonpayable",
|
|
4549
|
-
"type": "function"
|
|
4550
|
-
},
|
|
4551
|
-
{
|
|
4552
|
-
"inputs": [
|
|
4553
|
-
{
|
|
4554
|
-
"internalType": "uint256",
|
|
4555
|
-
"name": "txId",
|
|
4556
|
-
"type": "uint256"
|
|
4557
|
-
}
|
|
4558
|
-
],
|
|
4559
|
-
"name": "updateBroadcasterCancellation",
|
|
4560
|
-
"outputs": [
|
|
4561
|
-
{
|
|
4562
|
-
"components": [
|
|
4563
|
-
{
|
|
4564
|
-
"internalType": "uint256",
|
|
4565
|
-
"name": "txId",
|
|
4566
|
-
"type": "uint256"
|
|
4567
|
-
},
|
|
4568
|
-
{
|
|
4569
|
-
"internalType": "uint256",
|
|
4570
|
-
"name": "releaseTime",
|
|
4571
|
-
"type": "uint256"
|
|
4572
|
-
},
|
|
4573
|
-
{
|
|
4574
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4575
|
-
"name": "status",
|
|
4576
|
-
"type": "uint8"
|
|
4577
|
-
},
|
|
4578
|
-
{
|
|
4579
|
-
"components": [
|
|
4580
|
-
{
|
|
4581
|
-
"internalType": "address",
|
|
4582
|
-
"name": "requester",
|
|
4583
|
-
"type": "address"
|
|
4584
|
-
},
|
|
4585
|
-
{
|
|
4586
|
-
"internalType": "address",
|
|
4587
|
-
"name": "target",
|
|
4588
|
-
"type": "address"
|
|
4589
|
-
},
|
|
4590
|
-
{
|
|
4591
|
-
"internalType": "uint256",
|
|
4592
|
-
"name": "value",
|
|
4593
|
-
"type": "uint256"
|
|
4594
|
-
},
|
|
4595
|
-
{
|
|
4596
|
-
"internalType": "uint256",
|
|
4597
|
-
"name": "gasLimit",
|
|
4598
|
-
"type": "uint256"
|
|
4599
|
-
},
|
|
4600
|
-
{
|
|
4601
|
-
"internalType": "bytes32",
|
|
4602
|
-
"name": "operationType",
|
|
4603
|
-
"type": "bytes32"
|
|
4604
|
-
},
|
|
4605
|
-
{
|
|
4606
|
-
"internalType": "bytes4",
|
|
4607
|
-
"name": "executionSelector",
|
|
4608
|
-
"type": "bytes4"
|
|
4609
|
-
},
|
|
4610
|
-
{
|
|
4611
|
-
"internalType": "bytes",
|
|
4612
|
-
"name": "executionParams",
|
|
4613
|
-
"type": "bytes"
|
|
4614
|
-
}
|
|
4615
|
-
],
|
|
4616
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
4617
|
-
"name": "params",
|
|
4618
|
-
"type": "tuple"
|
|
4619
|
-
},
|
|
4620
|
-
{
|
|
4621
|
-
"internalType": "bytes32",
|
|
4622
|
-
"name": "message",
|
|
4623
|
-
"type": "bytes32"
|
|
4624
|
-
},
|
|
4625
|
-
{
|
|
4626
|
-
"internalType": "bytes",
|
|
4627
|
-
"name": "result",
|
|
4628
|
-
"type": "bytes"
|
|
4629
|
-
},
|
|
4630
|
-
{
|
|
4631
|
-
"components": [
|
|
4632
|
-
{
|
|
4633
|
-
"internalType": "address",
|
|
4634
|
-
"name": "recipient",
|
|
4635
|
-
"type": "address"
|
|
4636
|
-
},
|
|
4637
|
-
{
|
|
4638
|
-
"internalType": "uint256",
|
|
4639
|
-
"name": "nativeTokenAmount",
|
|
4640
|
-
"type": "uint256"
|
|
4641
|
-
},
|
|
4642
|
-
{
|
|
4643
|
-
"internalType": "address",
|
|
4644
|
-
"name": "erc20TokenAddress",
|
|
4645
|
-
"type": "address"
|
|
4646
|
-
},
|
|
4647
|
-
{
|
|
4648
|
-
"internalType": "uint256",
|
|
4649
|
-
"name": "erc20TokenAmount",
|
|
4650
|
-
"type": "uint256"
|
|
4651
|
-
}
|
|
4652
|
-
],
|
|
4653
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4654
|
-
"name": "payment",
|
|
4655
|
-
"type": "tuple"
|
|
4656
|
-
}
|
|
4657
|
-
],
|
|
4658
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
4659
|
-
"name": "",
|
|
4660
|
-
"type": "tuple"
|
|
4661
|
-
}
|
|
4662
|
-
],
|
|
4663
|
-
"stateMutability": "nonpayable",
|
|
4664
|
-
"type": "function"
|
|
4665
|
-
},
|
|
4666
|
-
{
|
|
4667
|
-
"inputs": [
|
|
4668
|
-
{
|
|
4669
|
-
"components": [
|
|
4670
|
-
{
|
|
4671
|
-
"components": [
|
|
4672
|
-
{
|
|
4673
|
-
"internalType": "uint256",
|
|
4674
|
-
"name": "txId",
|
|
4675
|
-
"type": "uint256"
|
|
4676
|
-
},
|
|
4677
|
-
{
|
|
4678
|
-
"internalType": "uint256",
|
|
4679
|
-
"name": "releaseTime",
|
|
4680
|
-
"type": "uint256"
|
|
4681
|
-
},
|
|
4682
|
-
{
|
|
4683
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4684
|
-
"name": "status",
|
|
4685
|
-
"type": "uint8"
|
|
4686
|
-
},
|
|
4687
|
-
{
|
|
4688
|
-
"components": [
|
|
4689
|
-
{
|
|
4690
|
-
"internalType": "address",
|
|
4691
|
-
"name": "requester",
|
|
4692
|
-
"type": "address"
|
|
4693
|
-
},
|
|
4694
|
-
{
|
|
4695
|
-
"internalType": "address",
|
|
4696
|
-
"name": "target",
|
|
4697
|
-
"type": "address"
|
|
4698
|
-
},
|
|
4699
|
-
{
|
|
4700
|
-
"internalType": "uint256",
|
|
4701
|
-
"name": "value",
|
|
4702
|
-
"type": "uint256"
|
|
4703
|
-
},
|
|
4704
|
-
{
|
|
4705
|
-
"internalType": "uint256",
|
|
4706
|
-
"name": "gasLimit",
|
|
4707
|
-
"type": "uint256"
|
|
4708
|
-
},
|
|
4709
|
-
{
|
|
4710
|
-
"internalType": "bytes32",
|
|
4711
|
-
"name": "operationType",
|
|
4712
|
-
"type": "bytes32"
|
|
4713
|
-
},
|
|
4714
|
-
{
|
|
4715
|
-
"internalType": "bytes4",
|
|
4716
|
-
"name": "executionSelector",
|
|
4717
|
-
"type": "bytes4"
|
|
4718
|
-
},
|
|
4719
|
-
{
|
|
4720
|
-
"internalType": "bytes",
|
|
4721
|
-
"name": "executionParams",
|
|
4722
|
-
"type": "bytes"
|
|
4723
|
-
}
|
|
4724
|
-
],
|
|
4725
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
4726
|
-
"name": "params",
|
|
4727
|
-
"type": "tuple"
|
|
4728
|
-
},
|
|
4729
|
-
{
|
|
4730
|
-
"internalType": "bytes32",
|
|
4731
|
-
"name": "message",
|
|
4732
|
-
"type": "bytes32"
|
|
4733
|
-
},
|
|
4734
|
-
{
|
|
4735
|
-
"internalType": "bytes",
|
|
4736
|
-
"name": "result",
|
|
4737
|
-
"type": "bytes"
|
|
4738
|
-
},
|
|
4739
|
-
{
|
|
4740
|
-
"components": [
|
|
4741
|
-
{
|
|
4742
|
-
"internalType": "address",
|
|
4743
|
-
"name": "recipient",
|
|
4744
|
-
"type": "address"
|
|
4745
|
-
},
|
|
4746
|
-
{
|
|
4747
|
-
"internalType": "uint256",
|
|
4748
|
-
"name": "nativeTokenAmount",
|
|
4749
|
-
"type": "uint256"
|
|
4750
|
-
},
|
|
4751
|
-
{
|
|
4752
|
-
"internalType": "address",
|
|
4753
|
-
"name": "erc20TokenAddress",
|
|
4754
|
-
"type": "address"
|
|
4755
|
-
},
|
|
4756
|
-
{
|
|
4757
|
-
"internalType": "uint256",
|
|
4758
|
-
"name": "erc20TokenAmount",
|
|
4759
|
-
"type": "uint256"
|
|
4760
|
-
}
|
|
4761
|
-
],
|
|
4762
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4763
|
-
"name": "payment",
|
|
4764
|
-
"type": "tuple"
|
|
4765
|
-
}
|
|
4766
|
-
],
|
|
4767
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
4768
|
-
"name": "txRecord",
|
|
4769
|
-
"type": "tuple"
|
|
4770
|
-
},
|
|
4771
|
-
{
|
|
4772
|
-
"components": [
|
|
4773
|
-
{
|
|
4774
|
-
"internalType": "uint256",
|
|
4775
|
-
"name": "chainId",
|
|
4776
|
-
"type": "uint256"
|
|
4777
|
-
},
|
|
4778
|
-
{
|
|
4779
|
-
"internalType": "uint256",
|
|
4780
|
-
"name": "nonce",
|
|
4781
|
-
"type": "uint256"
|
|
4782
|
-
},
|
|
4783
|
-
{
|
|
4784
|
-
"internalType": "address",
|
|
4785
|
-
"name": "handlerContract",
|
|
4786
|
-
"type": "address"
|
|
4787
|
-
},
|
|
4788
|
-
{
|
|
4789
|
-
"internalType": "bytes4",
|
|
4790
|
-
"name": "handlerSelector",
|
|
4791
|
-
"type": "bytes4"
|
|
4792
|
-
},
|
|
4793
|
-
{
|
|
4794
|
-
"internalType": "enum EngineBlox.TxAction",
|
|
4795
|
-
"name": "action",
|
|
4796
|
-
"type": "uint8"
|
|
4797
|
-
},
|
|
4798
|
-
{
|
|
4799
|
-
"internalType": "uint256",
|
|
4800
|
-
"name": "deadline",
|
|
4801
|
-
"type": "uint256"
|
|
4802
|
-
},
|
|
4803
|
-
{
|
|
4804
|
-
"internalType": "uint256",
|
|
4805
|
-
"name": "maxGasPrice",
|
|
4806
|
-
"type": "uint256"
|
|
4807
|
-
},
|
|
4808
|
-
{
|
|
4809
|
-
"internalType": "address",
|
|
4810
|
-
"name": "signer",
|
|
4811
|
-
"type": "address"
|
|
4812
|
-
}
|
|
4813
|
-
],
|
|
4814
|
-
"internalType": "struct EngineBlox.MetaTxParams",
|
|
4815
|
-
"name": "params",
|
|
4816
|
-
"type": "tuple"
|
|
4817
|
-
},
|
|
4818
|
-
{
|
|
4819
|
-
"internalType": "bytes32",
|
|
4820
|
-
"name": "message",
|
|
4821
|
-
"type": "bytes32"
|
|
4822
|
-
},
|
|
4823
|
-
{
|
|
4824
|
-
"internalType": "bytes",
|
|
4825
|
-
"name": "signature",
|
|
4826
|
-
"type": "bytes"
|
|
4827
|
-
},
|
|
4828
|
-
{
|
|
4829
|
-
"internalType": "bytes",
|
|
4830
|
-
"name": "data",
|
|
4831
|
-
"type": "bytes"
|
|
4832
|
-
}
|
|
4833
|
-
],
|
|
4834
|
-
"internalType": "struct EngineBlox.MetaTransaction",
|
|
4835
|
-
"name": "metaTx",
|
|
4836
|
-
"type": "tuple"
|
|
4837
|
-
}
|
|
4838
|
-
],
|
|
4839
|
-
"name": "updateBroadcasterCancellationWithMetaTx",
|
|
4840
|
-
"outputs": [
|
|
4841
|
-
{
|
|
4842
|
-
"components": [
|
|
4843
|
-
{
|
|
4844
|
-
"internalType": "uint256",
|
|
4845
|
-
"name": "txId",
|
|
4846
|
-
"type": "uint256"
|
|
4847
|
-
},
|
|
4848
|
-
{
|
|
4849
|
-
"internalType": "uint256",
|
|
4850
|
-
"name": "releaseTime",
|
|
4851
|
-
"type": "uint256"
|
|
4852
|
-
},
|
|
4853
|
-
{
|
|
4854
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4855
|
-
"name": "status",
|
|
4856
|
-
"type": "uint8"
|
|
4857
|
-
},
|
|
4858
|
-
{
|
|
4859
|
-
"components": [
|
|
4860
|
-
{
|
|
4861
|
-
"internalType": "address",
|
|
4862
|
-
"name": "requester",
|
|
4863
|
-
"type": "address"
|
|
4864
|
-
},
|
|
4865
|
-
{
|
|
4866
|
-
"internalType": "address",
|
|
4867
|
-
"name": "target",
|
|
4868
|
-
"type": "address"
|
|
4869
|
-
},
|
|
4870
|
-
{
|
|
4871
|
-
"internalType": "uint256",
|
|
4872
|
-
"name": "value",
|
|
4873
|
-
"type": "uint256"
|
|
4874
|
-
},
|
|
4875
|
-
{
|
|
4876
|
-
"internalType": "uint256",
|
|
4877
|
-
"name": "gasLimit",
|
|
4878
|
-
"type": "uint256"
|
|
4879
|
-
},
|
|
4880
|
-
{
|
|
4881
|
-
"internalType": "bytes32",
|
|
4882
|
-
"name": "operationType",
|
|
4883
|
-
"type": "bytes32"
|
|
4884
|
-
},
|
|
4885
|
-
{
|
|
4886
|
-
"internalType": "bytes4",
|
|
4887
|
-
"name": "executionSelector",
|
|
4888
|
-
"type": "bytes4"
|
|
4889
|
-
},
|
|
4890
|
-
{
|
|
4891
|
-
"internalType": "bytes",
|
|
4892
|
-
"name": "executionParams",
|
|
4893
|
-
"type": "bytes"
|
|
4894
|
-
}
|
|
4895
|
-
],
|
|
4896
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
4897
|
-
"name": "params",
|
|
4898
|
-
"type": "tuple"
|
|
4899
|
-
},
|
|
4900
|
-
{
|
|
4901
|
-
"internalType": "bytes32",
|
|
4902
|
-
"name": "message",
|
|
4903
|
-
"type": "bytes32"
|
|
4904
|
-
},
|
|
4905
|
-
{
|
|
4906
|
-
"internalType": "bytes",
|
|
4907
|
-
"name": "result",
|
|
4908
|
-
"type": "bytes"
|
|
4909
|
-
},
|
|
4910
|
-
{
|
|
4911
|
-
"components": [
|
|
4912
|
-
{
|
|
4913
|
-
"internalType": "address",
|
|
4914
|
-
"name": "recipient",
|
|
4915
|
-
"type": "address"
|
|
4916
|
-
},
|
|
4917
|
-
{
|
|
4918
|
-
"internalType": "uint256",
|
|
4919
|
-
"name": "nativeTokenAmount",
|
|
4920
|
-
"type": "uint256"
|
|
4921
|
-
},
|
|
4922
|
-
{
|
|
4923
|
-
"internalType": "address",
|
|
4924
|
-
"name": "erc20TokenAddress",
|
|
4925
|
-
"type": "address"
|
|
4926
|
-
},
|
|
4927
|
-
{
|
|
4928
|
-
"internalType": "uint256",
|
|
4929
|
-
"name": "erc20TokenAmount",
|
|
4930
|
-
"type": "uint256"
|
|
4931
|
-
}
|
|
4932
|
-
],
|
|
4933
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4934
|
-
"name": "payment",
|
|
4935
|
-
"type": "tuple"
|
|
4936
|
-
}
|
|
4937
|
-
],
|
|
4938
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
4939
|
-
"name": "",
|
|
4940
|
-
"type": "tuple"
|
|
4941
|
-
}
|
|
4942
|
-
],
|
|
4943
|
-
"stateMutability": "nonpayable",
|
|
4944
|
-
"type": "function"
|
|
4945
|
-
},
|
|
4946
|
-
{
|
|
4947
|
-
"inputs": [
|
|
3482
|
+
"inputs": [
|
|
4948
3483
|
{
|
|
4949
3484
|
"internalType": "uint256",
|
|
4950
3485
|
"name": "txId",
|
|
4951
3486
|
"type": "uint256"
|
|
4952
|
-
}
|
|
4953
|
-
],
|
|
4954
|
-
"name": "updateBroadcasterDelayedApproval",
|
|
4955
|
-
"outputs": [
|
|
4956
|
-
{
|
|
4957
|
-
"
|
|
4958
|
-
{
|
|
4959
|
-
"internalType": "uint256",
|
|
4960
|
-
"name": "txId",
|
|
4961
|
-
"type": "uint256"
|
|
4962
|
-
},
|
|
4963
|
-
{
|
|
4964
|
-
"internalType": "uint256",
|
|
4965
|
-
"name": "releaseTime",
|
|
4966
|
-
"type": "uint256"
|
|
4967
|
-
},
|
|
4968
|
-
{
|
|
4969
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4970
|
-
"name": "status",
|
|
4971
|
-
"type": "uint8"
|
|
4972
|
-
},
|
|
4973
|
-
{
|
|
4974
|
-
"components": [
|
|
4975
|
-
{
|
|
4976
|
-
"internalType": "address",
|
|
4977
|
-
"name": "requester",
|
|
4978
|
-
"type": "address"
|
|
4979
|
-
},
|
|
4980
|
-
{
|
|
4981
|
-
"internalType": "address",
|
|
4982
|
-
"name": "target",
|
|
4983
|
-
"type": "address"
|
|
4984
|
-
},
|
|
4985
|
-
{
|
|
4986
|
-
"internalType": "uint256",
|
|
4987
|
-
"name": "value",
|
|
4988
|
-
"type": "uint256"
|
|
4989
|
-
},
|
|
4990
|
-
{
|
|
4991
|
-
"internalType": "uint256",
|
|
4992
|
-
"name": "gasLimit",
|
|
4993
|
-
"type": "uint256"
|
|
4994
|
-
},
|
|
4995
|
-
{
|
|
4996
|
-
"internalType": "bytes32",
|
|
4997
|
-
"name": "operationType",
|
|
4998
|
-
"type": "bytes32"
|
|
4999
|
-
},
|
|
5000
|
-
{
|
|
5001
|
-
"internalType": "bytes4",
|
|
5002
|
-
"name": "executionSelector",
|
|
5003
|
-
"type": "bytes4"
|
|
5004
|
-
},
|
|
5005
|
-
{
|
|
5006
|
-
"internalType": "bytes",
|
|
5007
|
-
"name": "executionParams",
|
|
5008
|
-
"type": "bytes"
|
|
5009
|
-
}
|
|
5010
|
-
],
|
|
5011
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
5012
|
-
"name": "params",
|
|
5013
|
-
"type": "tuple"
|
|
5014
|
-
},
|
|
5015
|
-
{
|
|
5016
|
-
"internalType": "bytes32",
|
|
5017
|
-
"name": "message",
|
|
5018
|
-
"type": "bytes32"
|
|
5019
|
-
},
|
|
5020
|
-
{
|
|
5021
|
-
"internalType": "bytes",
|
|
5022
|
-
"name": "result",
|
|
5023
|
-
"type": "bytes"
|
|
5024
|
-
},
|
|
5025
|
-
{
|
|
5026
|
-
"components": [
|
|
5027
|
-
{
|
|
5028
|
-
"internalType": "address",
|
|
5029
|
-
"name": "recipient",
|
|
5030
|
-
"type": "address"
|
|
5031
|
-
},
|
|
5032
|
-
{
|
|
5033
|
-
"internalType": "uint256",
|
|
5034
|
-
"name": "nativeTokenAmount",
|
|
5035
|
-
"type": "uint256"
|
|
5036
|
-
},
|
|
5037
|
-
{
|
|
5038
|
-
"internalType": "address",
|
|
5039
|
-
"name": "erc20TokenAddress",
|
|
5040
|
-
"type": "address"
|
|
5041
|
-
},
|
|
5042
|
-
{
|
|
5043
|
-
"internalType": "uint256",
|
|
5044
|
-
"name": "erc20TokenAmount",
|
|
5045
|
-
"type": "uint256"
|
|
5046
|
-
}
|
|
5047
|
-
],
|
|
5048
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
5049
|
-
"name": "payment",
|
|
5050
|
-
"type": "tuple"
|
|
5051
|
-
}
|
|
5052
|
-
],
|
|
5053
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
5054
|
-
"name": "",
|
|
5055
|
-
"type": "tuple"
|
|
5056
|
-
}
|
|
5057
|
-
],
|
|
5058
|
-
"stateMutability": "nonpayable",
|
|
5059
|
-
"type": "function"
|
|
5060
|
-
},
|
|
5061
|
-
{
|
|
5062
|
-
"inputs": [
|
|
5063
|
-
{
|
|
5064
|
-
"internalType": "address",
|
|
5065
|
-
"name": "newBroadcaster",
|
|
5066
|
-
"type": "address"
|
|
5067
|
-
}
|
|
5068
|
-
],
|
|
5069
|
-
"name": "updateBroadcasterRequest",
|
|
5070
|
-
"outputs": [
|
|
5071
|
-
{
|
|
5072
|
-
"components": [
|
|
5073
|
-
{
|
|
5074
|
-
"internalType": "uint256",
|
|
5075
|
-
"name": "txId",
|
|
5076
|
-
"type": "uint256"
|
|
5077
|
-
},
|
|
5078
|
-
{
|
|
5079
|
-
"internalType": "uint256",
|
|
5080
|
-
"name": "releaseTime",
|
|
5081
|
-
"type": "uint256"
|
|
5082
|
-
},
|
|
5083
|
-
{
|
|
5084
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
5085
|
-
"name": "status",
|
|
5086
|
-
"type": "uint8"
|
|
5087
|
-
},
|
|
5088
|
-
{
|
|
5089
|
-
"components": [
|
|
5090
|
-
{
|
|
5091
|
-
"internalType": "address",
|
|
5092
|
-
"name": "requester",
|
|
5093
|
-
"type": "address"
|
|
5094
|
-
},
|
|
5095
|
-
{
|
|
5096
|
-
"internalType": "address",
|
|
5097
|
-
"name": "target",
|
|
5098
|
-
"type": "address"
|
|
5099
|
-
},
|
|
5100
|
-
{
|
|
5101
|
-
"internalType": "uint256",
|
|
5102
|
-
"name": "value",
|
|
5103
|
-
"type": "uint256"
|
|
5104
|
-
},
|
|
5105
|
-
{
|
|
5106
|
-
"internalType": "uint256",
|
|
5107
|
-
"name": "gasLimit",
|
|
5108
|
-
"type": "uint256"
|
|
5109
|
-
},
|
|
5110
|
-
{
|
|
5111
|
-
"internalType": "bytes32",
|
|
5112
|
-
"name": "operationType",
|
|
5113
|
-
"type": "bytes32"
|
|
5114
|
-
},
|
|
5115
|
-
{
|
|
5116
|
-
"internalType": "bytes4",
|
|
5117
|
-
"name": "executionSelector",
|
|
5118
|
-
"type": "bytes4"
|
|
5119
|
-
},
|
|
5120
|
-
{
|
|
5121
|
-
"internalType": "bytes",
|
|
5122
|
-
"name": "executionParams",
|
|
5123
|
-
"type": "bytes"
|
|
5124
|
-
}
|
|
5125
|
-
],
|
|
5126
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
5127
|
-
"name": "params",
|
|
5128
|
-
"type": "tuple"
|
|
5129
|
-
},
|
|
5130
|
-
{
|
|
5131
|
-
"internalType": "bytes32",
|
|
5132
|
-
"name": "message",
|
|
5133
|
-
"type": "bytes32"
|
|
5134
|
-
},
|
|
5135
|
-
{
|
|
5136
|
-
"internalType": "bytes",
|
|
5137
|
-
"name": "result",
|
|
5138
|
-
"type": "bytes"
|
|
5139
|
-
},
|
|
5140
|
-
{
|
|
5141
|
-
"components": [
|
|
5142
|
-
{
|
|
5143
|
-
"internalType": "address",
|
|
5144
|
-
"name": "recipient",
|
|
5145
|
-
"type": "address"
|
|
5146
|
-
},
|
|
5147
|
-
{
|
|
5148
|
-
"internalType": "uint256",
|
|
5149
|
-
"name": "nativeTokenAmount",
|
|
5150
|
-
"type": "uint256"
|
|
5151
|
-
},
|
|
5152
|
-
{
|
|
5153
|
-
"internalType": "address",
|
|
5154
|
-
"name": "erc20TokenAddress",
|
|
5155
|
-
"type": "address"
|
|
5156
|
-
},
|
|
5157
|
-
{
|
|
5158
|
-
"internalType": "uint256",
|
|
5159
|
-
"name": "erc20TokenAmount",
|
|
5160
|
-
"type": "uint256"
|
|
5161
|
-
}
|
|
5162
|
-
],
|
|
5163
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
5164
|
-
"name": "payment",
|
|
5165
|
-
"type": "tuple"
|
|
5166
|
-
}
|
|
5167
|
-
],
|
|
5168
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3487
|
+
}
|
|
3488
|
+
],
|
|
3489
|
+
"name": "updateBroadcasterDelayedApproval",
|
|
3490
|
+
"outputs": [
|
|
3491
|
+
{
|
|
3492
|
+
"internalType": "uint256",
|
|
5169
3493
|
"name": "",
|
|
5170
|
-
"type": "
|
|
3494
|
+
"type": "uint256"
|
|
3495
|
+
}
|
|
3496
|
+
],
|
|
3497
|
+
"stateMutability": "nonpayable",
|
|
3498
|
+
"type": "function"
|
|
3499
|
+
},
|
|
3500
|
+
{
|
|
3501
|
+
"inputs": [
|
|
3502
|
+
{
|
|
3503
|
+
"internalType": "address",
|
|
3504
|
+
"name": "newBroadcaster",
|
|
3505
|
+
"type": "address"
|
|
3506
|
+
},
|
|
3507
|
+
{
|
|
3508
|
+
"internalType": "uint256",
|
|
3509
|
+
"name": "location",
|
|
3510
|
+
"type": "uint256"
|
|
3511
|
+
}
|
|
3512
|
+
],
|
|
3513
|
+
"name": "updateBroadcasterRequest",
|
|
3514
|
+
"outputs": [
|
|
3515
|
+
{
|
|
3516
|
+
"internalType": "uint256",
|
|
3517
|
+
"name": "txId",
|
|
3518
|
+
"type": "uint256"
|
|
5171
3519
|
}
|
|
5172
3520
|
],
|
|
5173
3521
|
"stateMutability": "nonpayable",
|
|
@@ -5349,105 +3697,9 @@
|
|
|
5349
3697
|
"name": "updateRecoveryRequestAndApprove",
|
|
5350
3698
|
"outputs": [
|
|
5351
3699
|
{
|
|
5352
|
-
"
|
|
5353
|
-
{
|
|
5354
|
-
"internalType": "uint256",
|
|
5355
|
-
"name": "txId",
|
|
5356
|
-
"type": "uint256"
|
|
5357
|
-
},
|
|
5358
|
-
{
|
|
5359
|
-
"internalType": "uint256",
|
|
5360
|
-
"name": "releaseTime",
|
|
5361
|
-
"type": "uint256"
|
|
5362
|
-
},
|
|
5363
|
-
{
|
|
5364
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
5365
|
-
"name": "status",
|
|
5366
|
-
"type": "uint8"
|
|
5367
|
-
},
|
|
5368
|
-
{
|
|
5369
|
-
"components": [
|
|
5370
|
-
{
|
|
5371
|
-
"internalType": "address",
|
|
5372
|
-
"name": "requester",
|
|
5373
|
-
"type": "address"
|
|
5374
|
-
},
|
|
5375
|
-
{
|
|
5376
|
-
"internalType": "address",
|
|
5377
|
-
"name": "target",
|
|
5378
|
-
"type": "address"
|
|
5379
|
-
},
|
|
5380
|
-
{
|
|
5381
|
-
"internalType": "uint256",
|
|
5382
|
-
"name": "value",
|
|
5383
|
-
"type": "uint256"
|
|
5384
|
-
},
|
|
5385
|
-
{
|
|
5386
|
-
"internalType": "uint256",
|
|
5387
|
-
"name": "gasLimit",
|
|
5388
|
-
"type": "uint256"
|
|
5389
|
-
},
|
|
5390
|
-
{
|
|
5391
|
-
"internalType": "bytes32",
|
|
5392
|
-
"name": "operationType",
|
|
5393
|
-
"type": "bytes32"
|
|
5394
|
-
},
|
|
5395
|
-
{
|
|
5396
|
-
"internalType": "bytes4",
|
|
5397
|
-
"name": "executionSelector",
|
|
5398
|
-
"type": "bytes4"
|
|
5399
|
-
},
|
|
5400
|
-
{
|
|
5401
|
-
"internalType": "bytes",
|
|
5402
|
-
"name": "executionParams",
|
|
5403
|
-
"type": "bytes"
|
|
5404
|
-
}
|
|
5405
|
-
],
|
|
5406
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
5407
|
-
"name": "params",
|
|
5408
|
-
"type": "tuple"
|
|
5409
|
-
},
|
|
5410
|
-
{
|
|
5411
|
-
"internalType": "bytes32",
|
|
5412
|
-
"name": "message",
|
|
5413
|
-
"type": "bytes32"
|
|
5414
|
-
},
|
|
5415
|
-
{
|
|
5416
|
-
"internalType": "bytes",
|
|
5417
|
-
"name": "result",
|
|
5418
|
-
"type": "bytes"
|
|
5419
|
-
},
|
|
5420
|
-
{
|
|
5421
|
-
"components": [
|
|
5422
|
-
{
|
|
5423
|
-
"internalType": "address",
|
|
5424
|
-
"name": "recipient",
|
|
5425
|
-
"type": "address"
|
|
5426
|
-
},
|
|
5427
|
-
{
|
|
5428
|
-
"internalType": "uint256",
|
|
5429
|
-
"name": "nativeTokenAmount",
|
|
5430
|
-
"type": "uint256"
|
|
5431
|
-
},
|
|
5432
|
-
{
|
|
5433
|
-
"internalType": "address",
|
|
5434
|
-
"name": "erc20TokenAddress",
|
|
5435
|
-
"type": "address"
|
|
5436
|
-
},
|
|
5437
|
-
{
|
|
5438
|
-
"internalType": "uint256",
|
|
5439
|
-
"name": "erc20TokenAmount",
|
|
5440
|
-
"type": "uint256"
|
|
5441
|
-
}
|
|
5442
|
-
],
|
|
5443
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
5444
|
-
"name": "payment",
|
|
5445
|
-
"type": "tuple"
|
|
5446
|
-
}
|
|
5447
|
-
],
|
|
5448
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3700
|
+
"internalType": "uint256",
|
|
5449
3701
|
"name": "",
|
|
5450
|
-
"type": "
|
|
3702
|
+
"type": "uint256"
|
|
5451
3703
|
}
|
|
5452
3704
|
],
|
|
5453
3705
|
"stateMutability": "nonpayable",
|
|
@@ -5629,105 +3881,9 @@
|
|
|
5629
3881
|
"name": "updateTimeLockRequestAndApprove",
|
|
5630
3882
|
"outputs": [
|
|
5631
3883
|
{
|
|
5632
|
-
"
|
|
5633
|
-
{
|
|
5634
|
-
"internalType": "uint256",
|
|
5635
|
-
"name": "txId",
|
|
5636
|
-
"type": "uint256"
|
|
5637
|
-
},
|
|
5638
|
-
{
|
|
5639
|
-
"internalType": "uint256",
|
|
5640
|
-
"name": "releaseTime",
|
|
5641
|
-
"type": "uint256"
|
|
5642
|
-
},
|
|
5643
|
-
{
|
|
5644
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
5645
|
-
"name": "status",
|
|
5646
|
-
"type": "uint8"
|
|
5647
|
-
},
|
|
5648
|
-
{
|
|
5649
|
-
"components": [
|
|
5650
|
-
{
|
|
5651
|
-
"internalType": "address",
|
|
5652
|
-
"name": "requester",
|
|
5653
|
-
"type": "address"
|
|
5654
|
-
},
|
|
5655
|
-
{
|
|
5656
|
-
"internalType": "address",
|
|
5657
|
-
"name": "target",
|
|
5658
|
-
"type": "address"
|
|
5659
|
-
},
|
|
5660
|
-
{
|
|
5661
|
-
"internalType": "uint256",
|
|
5662
|
-
"name": "value",
|
|
5663
|
-
"type": "uint256"
|
|
5664
|
-
},
|
|
5665
|
-
{
|
|
5666
|
-
"internalType": "uint256",
|
|
5667
|
-
"name": "gasLimit",
|
|
5668
|
-
"type": "uint256"
|
|
5669
|
-
},
|
|
5670
|
-
{
|
|
5671
|
-
"internalType": "bytes32",
|
|
5672
|
-
"name": "operationType",
|
|
5673
|
-
"type": "bytes32"
|
|
5674
|
-
},
|
|
5675
|
-
{
|
|
5676
|
-
"internalType": "bytes4",
|
|
5677
|
-
"name": "executionSelector",
|
|
5678
|
-
"type": "bytes4"
|
|
5679
|
-
},
|
|
5680
|
-
{
|
|
5681
|
-
"internalType": "bytes",
|
|
5682
|
-
"name": "executionParams",
|
|
5683
|
-
"type": "bytes"
|
|
5684
|
-
}
|
|
5685
|
-
],
|
|
5686
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
5687
|
-
"name": "params",
|
|
5688
|
-
"type": "tuple"
|
|
5689
|
-
},
|
|
5690
|
-
{
|
|
5691
|
-
"internalType": "bytes32",
|
|
5692
|
-
"name": "message",
|
|
5693
|
-
"type": "bytes32"
|
|
5694
|
-
},
|
|
5695
|
-
{
|
|
5696
|
-
"internalType": "bytes",
|
|
5697
|
-
"name": "result",
|
|
5698
|
-
"type": "bytes"
|
|
5699
|
-
},
|
|
5700
|
-
{
|
|
5701
|
-
"components": [
|
|
5702
|
-
{
|
|
5703
|
-
"internalType": "address",
|
|
5704
|
-
"name": "recipient",
|
|
5705
|
-
"type": "address"
|
|
5706
|
-
},
|
|
5707
|
-
{
|
|
5708
|
-
"internalType": "uint256",
|
|
5709
|
-
"name": "nativeTokenAmount",
|
|
5710
|
-
"type": "uint256"
|
|
5711
|
-
},
|
|
5712
|
-
{
|
|
5713
|
-
"internalType": "address",
|
|
5714
|
-
"name": "erc20TokenAddress",
|
|
5715
|
-
"type": "address"
|
|
5716
|
-
},
|
|
5717
|
-
{
|
|
5718
|
-
"internalType": "uint256",
|
|
5719
|
-
"name": "erc20TokenAmount",
|
|
5720
|
-
"type": "uint256"
|
|
5721
|
-
}
|
|
5722
|
-
],
|
|
5723
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
5724
|
-
"name": "payment",
|
|
5725
|
-
"type": "tuple"
|
|
5726
|
-
}
|
|
5727
|
-
],
|
|
5728
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3884
|
+
"internalType": "uint256",
|
|
5729
3885
|
"name": "",
|
|
5730
|
-
"type": "
|
|
3886
|
+
"type": "uint256"
|
|
5731
3887
|
}
|
|
5732
3888
|
],
|
|
5733
3889
|
"stateMutability": "nonpayable",
|
|
@@ -5769,31 +3925,5 @@
|
|
|
5769
3925
|
"outputs": [],
|
|
5770
3926
|
"stateMutability": "nonpayable",
|
|
5771
3927
|
"type": "function"
|
|
5772
|
-
},
|
|
5773
|
-
{
|
|
5774
|
-
"inputs": [
|
|
5775
|
-
{
|
|
5776
|
-
"internalType": "bytes4",
|
|
5777
|
-
"name": "interfaceId",
|
|
5778
|
-
"type": "bytes4"
|
|
5779
|
-
}
|
|
5780
|
-
],
|
|
5781
|
-
"name": "supportsInterface",
|
|
5782
|
-
"outputs": [
|
|
5783
|
-
{
|
|
5784
|
-
"internalType": "bool",
|
|
5785
|
-
"name": "",
|
|
5786
|
-
"type": "bool"
|
|
5787
|
-
}
|
|
5788
|
-
],
|
|
5789
|
-
"stateMutability": "view",
|
|
5790
|
-
"type": "function"
|
|
5791
|
-
},
|
|
5792
|
-
{
|
|
5793
|
-
"inputs": [],
|
|
5794
|
-
"name": "deposit",
|
|
5795
|
-
"outputs": [],
|
|
5796
|
-
"stateMutability": "payable",
|
|
5797
|
-
"type": "function"
|
|
5798
3928
|
}
|
|
5799
3929
|
]
|