@bloxchain/contracts 1.0.0-alpha → 1.0.0-alpha.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +55 -18
- package/abi/{ControlBlox.abi.json → AccountBlox.abi.json} +699 -2974
- package/abi/BareBlox.abi.json +127 -90
- package/abi/BaseStateMachine.abi.json +127 -90
- package/abi/EngineBlox.abi.json +11 -31
- package/abi/GuardController.abi.json +217 -895
- package/abi/GuardControllerDefinitions.abi.json +380 -0
- package/abi/IDefinition.abi.json +19 -0
- package/abi/RoleBlox.abi.json +818 -2404
- package/abi/RuntimeRBAC.abi.json +122 -328
- package/abi/RuntimeRBACDefinitions.abi.json +243 -0
- package/abi/SecureBlox.abi.json +620 -1952
- package/abi/SecureOwnable.abi.json +469 -1801
- package/abi/SecureOwnableDefinitions.abi.json +57 -0
- package/abi/SimpleRWA20.abi.json +486 -1999
- package/abi/SimpleRWA20Definitions.abi.json +19 -0
- package/abi/SimpleVault.abi.json +884 -2685
- package/abi/SimpleVaultDefinitions.abi.json +19 -0
- package/components/README.md +8 -0
- package/core/access/RuntimeRBAC.sol +184 -0
- package/core/access/interface/IRuntimeRBAC.sol +55 -0
- package/{contracts/core → core}/access/lib/definitions/RuntimeRBACDefinitions.sol +121 -1
- package/{contracts/core → core}/base/BaseStateMachine.sol +187 -54
- package/{contracts/core → core}/base/interface/IBaseStateMachine.sol +7 -0
- package/{contracts/core → core}/execution/GuardController.sol +89 -155
- package/{contracts/core → core}/execution/interface/IGuardController.sol +52 -12
- package/{contracts/core → core}/execution/lib/definitions/GuardControllerDefinitions.sol +91 -2
- package/{contracts/core → core}/lib/EngineBlox.sol +167 -64
- package/{contracts → core/lib}/interfaces/IDefinition.sol +15 -6
- package/{contracts → core/lib}/interfaces/IEventForwarder.sol +1 -1
- package/{contracts → core/lib}/utils/SharedValidation.sol +490 -486
- package/core/pattern/Account.sol +75 -0
- package/core/research/BloxchainWallet.sol +133 -0
- package/core/research/FactoryBlox/FactoryBlox.sol +344 -0
- package/core/research/FactoryBlox/FactoryBloxDefinitions.sol +144 -0
- package/core/research/erc1155-blox/ERC1155Blox.sol +170 -0
- package/core/research/erc1155-blox/lib/definitions/ERC1155BloxDefinitions.sol +203 -0
- package/core/research/erc20-blox/ERC20Blox.sol +135 -0
- package/core/research/erc20-blox/lib/definitions/ERC20BloxDefinitions.sol +185 -0
- package/core/research/erc721-blox/ERC721Blox.sol +131 -0
- package/core/research/erc721-blox/lib/definitions/ERC721BloxDefinitions.sol +172 -0
- package/core/research/lending-blox/.gitkeep +1 -0
- package/core/research/p2p-blox/P2PBlox.sol +266 -0
- package/core/research/p2p-blox/README.md +85 -0
- package/core/research/p2p-blox/lib/definitions/P2PBloxDefinitions.sol +19 -0
- package/{contracts/core → core}/security/SecureOwnable.sol +390 -419
- package/{contracts/core → core}/security/interface/ISecureOwnable.sol +27 -40
- package/{contracts/core → core}/security/lib/definitions/SecureOwnableDefinitions.sol +786 -757
- package/package.json +49 -47
- package/standards/README.md +12 -0
- package/standards/behavior/ICopyable.sol +36 -0
- package/standards/hooks/IOnActionHook.sol +21 -0
- package/contracts/core/access/RuntimeRBAC.sol +0 -344
- package/contracts/core/access/interface/IRuntimeRBAC.sol +0 -108
- package/contracts/interfaces/IOnActionHook.sol +0 -79
package/abi/SimpleRWA20.abi.json
CHANGED
|
@@ -15,6 +15,17 @@
|
|
|
15
15
|
"name": "ArrayLengthMismatch",
|
|
16
16
|
"type": "error"
|
|
17
17
|
},
|
|
18
|
+
{
|
|
19
|
+
"inputs": [
|
|
20
|
+
{
|
|
21
|
+
"internalType": "bytes32",
|
|
22
|
+
"name": "resourceId",
|
|
23
|
+
"type": "bytes32"
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"name": "CannotModifyProtected",
|
|
27
|
+
"type": "error"
|
|
28
|
+
},
|
|
18
29
|
{
|
|
19
30
|
"inputs": [
|
|
20
31
|
{
|
|
@@ -160,22 +171,6 @@
|
|
|
160
171
|
"name": "InvalidRange",
|
|
161
172
|
"type": "error"
|
|
162
173
|
},
|
|
163
|
-
{
|
|
164
|
-
"inputs": [
|
|
165
|
-
{
|
|
166
|
-
"internalType": "uint256",
|
|
167
|
-
"name": "newPeriod",
|
|
168
|
-
"type": "uint256"
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
"internalType": "uint256",
|
|
172
|
-
"name": "currentPeriod",
|
|
173
|
-
"type": "uint256"
|
|
174
|
-
}
|
|
175
|
-
],
|
|
176
|
-
"name": "NewTimelockSame",
|
|
177
|
-
"type": "error"
|
|
178
|
-
},
|
|
179
174
|
{
|
|
180
175
|
"inputs": [
|
|
181
176
|
{
|
|
@@ -192,22 +187,6 @@
|
|
|
192
187
|
"name": "NotInitializing",
|
|
193
188
|
"type": "error"
|
|
194
189
|
},
|
|
195
|
-
{
|
|
196
|
-
"inputs": [
|
|
197
|
-
{
|
|
198
|
-
"internalType": "address",
|
|
199
|
-
"name": "newAddress",
|
|
200
|
-
"type": "address"
|
|
201
|
-
},
|
|
202
|
-
{
|
|
203
|
-
"internalType": "address",
|
|
204
|
-
"name": "currentAddress",
|
|
205
|
-
"type": "address"
|
|
206
|
-
}
|
|
207
|
-
],
|
|
208
|
-
"name": "NotNewAddress",
|
|
209
|
-
"type": "error"
|
|
210
|
-
},
|
|
211
190
|
{
|
|
212
191
|
"inputs": [],
|
|
213
192
|
"name": "NotSupported",
|
|
@@ -229,6 +208,11 @@
|
|
|
229
208
|
"name": "OnlyCallableByContract",
|
|
230
209
|
"type": "error"
|
|
231
210
|
},
|
|
211
|
+
{
|
|
212
|
+
"inputs": [],
|
|
213
|
+
"name": "PendingSecureRequest",
|
|
214
|
+
"type": "error"
|
|
215
|
+
},
|
|
232
216
|
{
|
|
233
217
|
"inputs": [
|
|
234
218
|
{
|
|
@@ -258,7 +242,7 @@
|
|
|
258
242
|
"type": "bytes32"
|
|
259
243
|
}
|
|
260
244
|
],
|
|
261
|
-
"name": "
|
|
245
|
+
"name": "ResourceNotFound",
|
|
262
246
|
"type": "error"
|
|
263
247
|
},
|
|
264
248
|
{
|
|
@@ -314,17 +298,6 @@
|
|
|
314
298
|
"name": "RestrictedRecovery",
|
|
315
299
|
"type": "error"
|
|
316
300
|
},
|
|
317
|
-
{
|
|
318
|
-
"inputs": [
|
|
319
|
-
{
|
|
320
|
-
"internalType": "uint256",
|
|
321
|
-
"name": "provided",
|
|
322
|
-
"type": "uint256"
|
|
323
|
-
}
|
|
324
|
-
],
|
|
325
|
-
"name": "TimeLockPeriodZero",
|
|
326
|
-
"type": "error"
|
|
327
|
-
},
|
|
328
301
|
{
|
|
329
302
|
"anonymous": false,
|
|
330
303
|
"inputs": [
|
|
@@ -354,51 +327,19 @@
|
|
|
354
327
|
"anonymous": false,
|
|
355
328
|
"inputs": [
|
|
356
329
|
{
|
|
357
|
-
"indexed":
|
|
358
|
-
"internalType": "
|
|
359
|
-
"name": "
|
|
360
|
-
"type": "
|
|
361
|
-
}
|
|
362
|
-
],
|
|
363
|
-
"name": "BroadcasterUpdateCancelled",
|
|
364
|
-
"type": "event"
|
|
365
|
-
},
|
|
366
|
-
{
|
|
367
|
-
"anonymous": false,
|
|
368
|
-
"inputs": [
|
|
369
|
-
{
|
|
370
|
-
"indexed": false,
|
|
371
|
-
"internalType": "address",
|
|
372
|
-
"name": "currentBroadcaster",
|
|
373
|
-
"type": "address"
|
|
374
|
-
},
|
|
375
|
-
{
|
|
376
|
-
"indexed": false,
|
|
377
|
-
"internalType": "address",
|
|
378
|
-
"name": "newBroadcaster",
|
|
379
|
-
"type": "address"
|
|
380
|
-
}
|
|
381
|
-
],
|
|
382
|
-
"name": "BroadcasterUpdateRequest",
|
|
383
|
-
"type": "event"
|
|
384
|
-
},
|
|
385
|
-
{
|
|
386
|
-
"anonymous": false,
|
|
387
|
-
"inputs": [
|
|
388
|
-
{
|
|
389
|
-
"indexed": false,
|
|
390
|
-
"internalType": "address",
|
|
391
|
-
"name": "oldBroadcaster",
|
|
392
|
-
"type": "address"
|
|
330
|
+
"indexed": true,
|
|
331
|
+
"internalType": "bytes4",
|
|
332
|
+
"name": "functionSelector",
|
|
333
|
+
"type": "bytes4"
|
|
393
334
|
},
|
|
394
335
|
{
|
|
395
336
|
"indexed": false,
|
|
396
|
-
"internalType": "
|
|
397
|
-
"name": "
|
|
398
|
-
"type": "
|
|
337
|
+
"internalType": "bytes",
|
|
338
|
+
"name": "data",
|
|
339
|
+
"type": "bytes"
|
|
399
340
|
}
|
|
400
341
|
],
|
|
401
|
-
"name": "
|
|
342
|
+
"name": "ComponentEvent",
|
|
402
343
|
"type": "event"
|
|
403
344
|
},
|
|
404
345
|
{
|
|
@@ -417,364 +358,169 @@
|
|
|
417
358
|
{
|
|
418
359
|
"anonymous": false,
|
|
419
360
|
"inputs": [
|
|
361
|
+
{
|
|
362
|
+
"indexed": true,
|
|
363
|
+
"internalType": "address",
|
|
364
|
+
"name": "from",
|
|
365
|
+
"type": "address"
|
|
366
|
+
},
|
|
420
367
|
{
|
|
421
368
|
"indexed": false,
|
|
422
369
|
"internalType": "uint256",
|
|
423
|
-
"name": "
|
|
370
|
+
"name": "amount",
|
|
424
371
|
"type": "uint256"
|
|
425
372
|
}
|
|
426
373
|
],
|
|
427
|
-
"name": "
|
|
374
|
+
"name": "TokensBurned",
|
|
428
375
|
"type": "event"
|
|
429
376
|
},
|
|
430
377
|
{
|
|
431
378
|
"anonymous": false,
|
|
432
379
|
"inputs": [
|
|
433
380
|
{
|
|
434
|
-
"indexed":
|
|
381
|
+
"indexed": true,
|
|
435
382
|
"internalType": "address",
|
|
436
|
-
"name": "
|
|
383
|
+
"name": "to",
|
|
437
384
|
"type": "address"
|
|
438
385
|
},
|
|
439
386
|
{
|
|
440
387
|
"indexed": false,
|
|
441
|
-
"internalType": "
|
|
442
|
-
"name": "
|
|
443
|
-
"type": "
|
|
388
|
+
"internalType": "uint256",
|
|
389
|
+
"name": "amount",
|
|
390
|
+
"type": "uint256"
|
|
444
391
|
}
|
|
445
392
|
],
|
|
446
|
-
"name": "
|
|
393
|
+
"name": "TokensMinted",
|
|
447
394
|
"type": "event"
|
|
448
395
|
},
|
|
449
396
|
{
|
|
450
397
|
"anonymous": false,
|
|
451
398
|
"inputs": [
|
|
452
399
|
{
|
|
453
|
-
"indexed":
|
|
400
|
+
"indexed": true,
|
|
454
401
|
"internalType": "address",
|
|
455
|
-
"name": "
|
|
402
|
+
"name": "from",
|
|
456
403
|
"type": "address"
|
|
457
404
|
},
|
|
458
405
|
{
|
|
459
|
-
"indexed":
|
|
406
|
+
"indexed": true,
|
|
460
407
|
"internalType": "address",
|
|
461
|
-
"name": "
|
|
408
|
+
"name": "to",
|
|
462
409
|
"type": "address"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"indexed": false,
|
|
413
|
+
"internalType": "uint256",
|
|
414
|
+
"name": "value",
|
|
415
|
+
"type": "uint256"
|
|
463
416
|
}
|
|
464
417
|
],
|
|
465
|
-
"name": "
|
|
418
|
+
"name": "Transfer",
|
|
466
419
|
"type": "event"
|
|
467
420
|
},
|
|
468
421
|
{
|
|
469
|
-
"anonymous": false,
|
|
470
422
|
"inputs": [
|
|
471
423
|
{
|
|
472
|
-
"indexed": false,
|
|
473
424
|
"internalType": "address",
|
|
474
|
-
"name": "
|
|
425
|
+
"name": "owner",
|
|
475
426
|
"type": "address"
|
|
476
427
|
},
|
|
477
428
|
{
|
|
478
|
-
"indexed": false,
|
|
479
429
|
"internalType": "address",
|
|
480
|
-
"name": "
|
|
430
|
+
"name": "spender",
|
|
481
431
|
"type": "address"
|
|
482
432
|
}
|
|
483
433
|
],
|
|
484
|
-
"name": "
|
|
485
|
-
"
|
|
486
|
-
},
|
|
487
|
-
{
|
|
488
|
-
"anonymous": false,
|
|
489
|
-
"inputs": [
|
|
490
|
-
{
|
|
491
|
-
"indexed": false,
|
|
492
|
-
"internalType": "uint256",
|
|
493
|
-
"name": "oldPeriod",
|
|
494
|
-
"type": "uint256"
|
|
495
|
-
},
|
|
434
|
+
"name": "allowance",
|
|
435
|
+
"outputs": [
|
|
496
436
|
{
|
|
497
|
-
"indexed": false,
|
|
498
437
|
"internalType": "uint256",
|
|
499
|
-
"name": "
|
|
438
|
+
"name": "",
|
|
500
439
|
"type": "uint256"
|
|
501
440
|
}
|
|
502
441
|
],
|
|
503
|
-
"
|
|
504
|
-
"type": "
|
|
442
|
+
"stateMutability": "view",
|
|
443
|
+
"type": "function"
|
|
505
444
|
},
|
|
506
445
|
{
|
|
507
|
-
"anonymous": false,
|
|
508
446
|
"inputs": [
|
|
509
447
|
{
|
|
510
|
-
"indexed": true,
|
|
511
448
|
"internalType": "address",
|
|
512
|
-
"name": "
|
|
449
|
+
"name": "spender",
|
|
513
450
|
"type": "address"
|
|
514
451
|
},
|
|
515
452
|
{
|
|
516
|
-
"indexed": false,
|
|
517
453
|
"internalType": "uint256",
|
|
518
|
-
"name": "
|
|
454
|
+
"name": "value",
|
|
519
455
|
"type": "uint256"
|
|
520
456
|
}
|
|
521
457
|
],
|
|
522
|
-
"name": "
|
|
523
|
-
"
|
|
458
|
+
"name": "approve",
|
|
459
|
+
"outputs": [
|
|
460
|
+
{
|
|
461
|
+
"internalType": "bool",
|
|
462
|
+
"name": "",
|
|
463
|
+
"type": "bool"
|
|
464
|
+
}
|
|
465
|
+
],
|
|
466
|
+
"stateMutability": "nonpayable",
|
|
467
|
+
"type": "function"
|
|
524
468
|
},
|
|
525
469
|
{
|
|
526
|
-
"anonymous": false,
|
|
527
470
|
"inputs": [
|
|
528
471
|
{
|
|
529
|
-
"indexed": true,
|
|
530
472
|
"internalType": "address",
|
|
531
|
-
"name": "
|
|
473
|
+
"name": "account",
|
|
532
474
|
"type": "address"
|
|
533
|
-
}
|
|
475
|
+
}
|
|
476
|
+
],
|
|
477
|
+
"name": "balanceOf",
|
|
478
|
+
"outputs": [
|
|
534
479
|
{
|
|
535
|
-
"indexed": false,
|
|
536
480
|
"internalType": "uint256",
|
|
537
|
-
"name": "
|
|
481
|
+
"name": "",
|
|
538
482
|
"type": "uint256"
|
|
539
483
|
}
|
|
540
484
|
],
|
|
541
|
-
"
|
|
542
|
-
"type": "
|
|
485
|
+
"stateMutability": "view",
|
|
486
|
+
"type": "function"
|
|
543
487
|
},
|
|
544
488
|
{
|
|
545
|
-
"anonymous": false,
|
|
546
489
|
"inputs": [
|
|
547
490
|
{
|
|
548
|
-
"indexed": true,
|
|
549
491
|
"internalType": "uint256",
|
|
550
|
-
"name": "
|
|
492
|
+
"name": "value",
|
|
551
493
|
"type": "uint256"
|
|
552
|
-
},
|
|
553
|
-
{
|
|
554
|
-
"indexed": true,
|
|
555
|
-
"internalType": "bytes32",
|
|
556
|
-
"name": "operationType",
|
|
557
|
-
"type": "bytes32"
|
|
558
|
-
},
|
|
559
|
-
{
|
|
560
|
-
"indexed": true,
|
|
561
|
-
"internalType": "address",
|
|
562
|
-
"name": "approver",
|
|
563
|
-
"type": "address"
|
|
564
494
|
}
|
|
565
495
|
],
|
|
566
|
-
"name": "
|
|
567
|
-
"
|
|
496
|
+
"name": "burn",
|
|
497
|
+
"outputs": [],
|
|
498
|
+
"stateMutability": "nonpayable",
|
|
499
|
+
"type": "function"
|
|
568
500
|
},
|
|
569
501
|
{
|
|
570
|
-
"anonymous": false,
|
|
571
502
|
"inputs": [
|
|
572
503
|
{
|
|
573
|
-
"indexed": true,
|
|
574
|
-
"internalType": "uint256",
|
|
575
|
-
"name": "txId",
|
|
576
|
-
"type": "uint256"
|
|
577
|
-
},
|
|
578
|
-
{
|
|
579
|
-
"indexed": true,
|
|
580
|
-
"internalType": "bytes32",
|
|
581
|
-
"name": "operationType",
|
|
582
|
-
"type": "bytes32"
|
|
583
|
-
},
|
|
584
|
-
{
|
|
585
|
-
"indexed": true,
|
|
586
504
|
"internalType": "address",
|
|
587
|
-
"name": "
|
|
505
|
+
"name": "account",
|
|
588
506
|
"type": "address"
|
|
589
|
-
}
|
|
590
|
-
],
|
|
591
|
-
"name": "TransactionCancelled",
|
|
592
|
-
"type": "event"
|
|
593
|
-
},
|
|
594
|
-
{
|
|
595
|
-
"anonymous": false,
|
|
596
|
-
"inputs": [
|
|
507
|
+
},
|
|
597
508
|
{
|
|
598
|
-
"indexed": true,
|
|
599
509
|
"internalType": "uint256",
|
|
600
|
-
"name": "
|
|
510
|
+
"name": "value",
|
|
601
511
|
"type": "uint256"
|
|
602
|
-
},
|
|
603
|
-
{
|
|
604
|
-
"indexed": true,
|
|
605
|
-
"internalType": "bytes32",
|
|
606
|
-
"name": "operationType",
|
|
607
|
-
"type": "bytes32"
|
|
608
|
-
},
|
|
609
|
-
{
|
|
610
|
-
"indexed": false,
|
|
611
|
-
"internalType": "bool",
|
|
612
|
-
"name": "success",
|
|
613
|
-
"type": "bool"
|
|
614
512
|
}
|
|
615
513
|
],
|
|
616
|
-
"name": "
|
|
617
|
-
"
|
|
514
|
+
"name": "burnFrom",
|
|
515
|
+
"outputs": [],
|
|
516
|
+
"stateMutability": "nonpayable",
|
|
517
|
+
"type": "function"
|
|
618
518
|
},
|
|
619
519
|
{
|
|
620
|
-
"anonymous": false,
|
|
621
520
|
"inputs": [
|
|
622
521
|
{
|
|
623
|
-
"indexed": true,
|
|
624
|
-
"internalType": "uint256",
|
|
625
|
-
"name": "txId",
|
|
626
|
-
"type": "uint256"
|
|
627
|
-
},
|
|
628
|
-
{
|
|
629
|
-
"indexed": true,
|
|
630
522
|
"internalType": "address",
|
|
631
|
-
"name": "
|
|
632
|
-
"type": "address"
|
|
633
|
-
},
|
|
634
|
-
{
|
|
635
|
-
"indexed": true,
|
|
636
|
-
"internalType": "bytes32",
|
|
637
|
-
"name": "operationType",
|
|
638
|
-
"type": "bytes32"
|
|
639
|
-
},
|
|
640
|
-
{
|
|
641
|
-
"indexed": false,
|
|
642
|
-
"internalType": "uint256",
|
|
643
|
-
"name": "releaseTime",
|
|
644
|
-
"type": "uint256"
|
|
645
|
-
}
|
|
646
|
-
],
|
|
647
|
-
"name": "TransactionRequested",
|
|
648
|
-
"type": "event"
|
|
649
|
-
},
|
|
650
|
-
{
|
|
651
|
-
"anonymous": false,
|
|
652
|
-
"inputs": [
|
|
653
|
-
{
|
|
654
|
-
"indexed": true,
|
|
655
|
-
"internalType": "address",
|
|
656
|
-
"name": "from",
|
|
657
|
-
"type": "address"
|
|
658
|
-
},
|
|
659
|
-
{
|
|
660
|
-
"indexed": true,
|
|
661
|
-
"internalType": "address",
|
|
662
|
-
"name": "to",
|
|
663
|
-
"type": "address"
|
|
664
|
-
},
|
|
665
|
-
{
|
|
666
|
-
"indexed": false,
|
|
667
|
-
"internalType": "uint256",
|
|
668
|
-
"name": "value",
|
|
669
|
-
"type": "uint256"
|
|
670
|
-
}
|
|
671
|
-
],
|
|
672
|
-
"name": "Transfer",
|
|
673
|
-
"type": "event"
|
|
674
|
-
},
|
|
675
|
-
{
|
|
676
|
-
"inputs": [
|
|
677
|
-
{
|
|
678
|
-
"internalType": "address",
|
|
679
|
-
"name": "owner",
|
|
680
|
-
"type": "address"
|
|
681
|
-
},
|
|
682
|
-
{
|
|
683
|
-
"internalType": "address",
|
|
684
|
-
"name": "spender",
|
|
685
|
-
"type": "address"
|
|
686
|
-
}
|
|
687
|
-
],
|
|
688
|
-
"name": "allowance",
|
|
689
|
-
"outputs": [
|
|
690
|
-
{
|
|
691
|
-
"internalType": "uint256",
|
|
692
|
-
"name": "",
|
|
693
|
-
"type": "uint256"
|
|
694
|
-
}
|
|
695
|
-
],
|
|
696
|
-
"stateMutability": "view",
|
|
697
|
-
"type": "function"
|
|
698
|
-
},
|
|
699
|
-
{
|
|
700
|
-
"inputs": [
|
|
701
|
-
{
|
|
702
|
-
"internalType": "address",
|
|
703
|
-
"name": "spender",
|
|
704
|
-
"type": "address"
|
|
705
|
-
},
|
|
706
|
-
{
|
|
707
|
-
"internalType": "uint256",
|
|
708
|
-
"name": "value",
|
|
709
|
-
"type": "uint256"
|
|
710
|
-
}
|
|
711
|
-
],
|
|
712
|
-
"name": "approve",
|
|
713
|
-
"outputs": [
|
|
714
|
-
{
|
|
715
|
-
"internalType": "bool",
|
|
716
|
-
"name": "",
|
|
717
|
-
"type": "bool"
|
|
718
|
-
}
|
|
719
|
-
],
|
|
720
|
-
"stateMutability": "nonpayable",
|
|
721
|
-
"type": "function"
|
|
722
|
-
},
|
|
723
|
-
{
|
|
724
|
-
"inputs": [
|
|
725
|
-
{
|
|
726
|
-
"internalType": "address",
|
|
727
|
-
"name": "account",
|
|
728
|
-
"type": "address"
|
|
729
|
-
}
|
|
730
|
-
],
|
|
731
|
-
"name": "balanceOf",
|
|
732
|
-
"outputs": [
|
|
733
|
-
{
|
|
734
|
-
"internalType": "uint256",
|
|
735
|
-
"name": "",
|
|
736
|
-
"type": "uint256"
|
|
737
|
-
}
|
|
738
|
-
],
|
|
739
|
-
"stateMutability": "view",
|
|
740
|
-
"type": "function"
|
|
741
|
-
},
|
|
742
|
-
{
|
|
743
|
-
"inputs": [
|
|
744
|
-
{
|
|
745
|
-
"internalType": "uint256",
|
|
746
|
-
"name": "value",
|
|
747
|
-
"type": "uint256"
|
|
748
|
-
}
|
|
749
|
-
],
|
|
750
|
-
"name": "burn",
|
|
751
|
-
"outputs": [],
|
|
752
|
-
"stateMutability": "nonpayable",
|
|
753
|
-
"type": "function"
|
|
754
|
-
},
|
|
755
|
-
{
|
|
756
|
-
"inputs": [
|
|
757
|
-
{
|
|
758
|
-
"internalType": "address",
|
|
759
|
-
"name": "account",
|
|
760
|
-
"type": "address"
|
|
761
|
-
},
|
|
762
|
-
{
|
|
763
|
-
"internalType": "uint256",
|
|
764
|
-
"name": "value",
|
|
765
|
-
"type": "uint256"
|
|
766
|
-
}
|
|
767
|
-
],
|
|
768
|
-
"name": "burnFrom",
|
|
769
|
-
"outputs": [],
|
|
770
|
-
"stateMutability": "nonpayable",
|
|
771
|
-
"type": "function"
|
|
772
|
-
},
|
|
773
|
-
{
|
|
774
|
-
"inputs": [
|
|
775
|
-
{
|
|
776
|
-
"internalType": "address",
|
|
777
|
-
"name": "handlerContract",
|
|
523
|
+
"name": "handlerContract",
|
|
778
524
|
"type": "address"
|
|
779
525
|
},
|
|
780
526
|
{
|
|
@@ -875,6 +621,11 @@
|
|
|
875
621
|
"internalType": "address",
|
|
876
622
|
"name": "newBroadcaster",
|
|
877
623
|
"type": "address"
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"internalType": "uint256",
|
|
627
|
+
"name": "location",
|
|
628
|
+
"type": "uint256"
|
|
878
629
|
}
|
|
879
630
|
],
|
|
880
631
|
"name": "executeBroadcasterUpdate",
|
|
@@ -1481,6 +1232,100 @@
|
|
|
1481
1232
|
"stateMutability": "view",
|
|
1482
1233
|
"type": "function"
|
|
1483
1234
|
},
|
|
1235
|
+
{
|
|
1236
|
+
"inputs": [
|
|
1237
|
+
{
|
|
1238
|
+
"internalType": "bytes4",
|
|
1239
|
+
"name": "functionSelector",
|
|
1240
|
+
"type": "bytes4"
|
|
1241
|
+
}
|
|
1242
|
+
],
|
|
1243
|
+
"name": "getFunctionSchema",
|
|
1244
|
+
"outputs": [
|
|
1245
|
+
{
|
|
1246
|
+
"components": [
|
|
1247
|
+
{
|
|
1248
|
+
"internalType": "string",
|
|
1249
|
+
"name": "functionSignature",
|
|
1250
|
+
"type": "string"
|
|
1251
|
+
},
|
|
1252
|
+
{
|
|
1253
|
+
"internalType": "bytes4",
|
|
1254
|
+
"name": "functionSelector",
|
|
1255
|
+
"type": "bytes4"
|
|
1256
|
+
},
|
|
1257
|
+
{
|
|
1258
|
+
"internalType": "bytes32",
|
|
1259
|
+
"name": "operationType",
|
|
1260
|
+
"type": "bytes32"
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
"internalType": "string",
|
|
1264
|
+
"name": "operationName",
|
|
1265
|
+
"type": "string"
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
"internalType": "uint16",
|
|
1269
|
+
"name": "supportedActionsBitmap",
|
|
1270
|
+
"type": "uint16"
|
|
1271
|
+
},
|
|
1272
|
+
{
|
|
1273
|
+
"internalType": "bool",
|
|
1274
|
+
"name": "isProtected",
|
|
1275
|
+
"type": "bool"
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
"internalType": "bytes4[]",
|
|
1279
|
+
"name": "handlerForSelectors",
|
|
1280
|
+
"type": "bytes4[]"
|
|
1281
|
+
}
|
|
1282
|
+
],
|
|
1283
|
+
"internalType": "struct EngineBlox.FunctionSchema",
|
|
1284
|
+
"name": "",
|
|
1285
|
+
"type": "tuple"
|
|
1286
|
+
}
|
|
1287
|
+
],
|
|
1288
|
+
"stateMutability": "view",
|
|
1289
|
+
"type": "function"
|
|
1290
|
+
},
|
|
1291
|
+
{
|
|
1292
|
+
"inputs": [
|
|
1293
|
+
{
|
|
1294
|
+
"internalType": "bytes4",
|
|
1295
|
+
"name": "functionSelector",
|
|
1296
|
+
"type": "bytes4"
|
|
1297
|
+
}
|
|
1298
|
+
],
|
|
1299
|
+
"name": "getFunctionWhitelistTargets",
|
|
1300
|
+
"outputs": [
|
|
1301
|
+
{
|
|
1302
|
+
"internalType": "address[]",
|
|
1303
|
+
"name": "",
|
|
1304
|
+
"type": "address[]"
|
|
1305
|
+
}
|
|
1306
|
+
],
|
|
1307
|
+
"stateMutability": "view",
|
|
1308
|
+
"type": "function"
|
|
1309
|
+
},
|
|
1310
|
+
{
|
|
1311
|
+
"inputs": [
|
|
1312
|
+
{
|
|
1313
|
+
"internalType": "bytes4",
|
|
1314
|
+
"name": "functionSelector",
|
|
1315
|
+
"type": "bytes4"
|
|
1316
|
+
}
|
|
1317
|
+
],
|
|
1318
|
+
"name": "getHooks",
|
|
1319
|
+
"outputs": [
|
|
1320
|
+
{
|
|
1321
|
+
"internalType": "address[]",
|
|
1322
|
+
"name": "hooks",
|
|
1323
|
+
"type": "address[]"
|
|
1324
|
+
}
|
|
1325
|
+
],
|
|
1326
|
+
"stateMutability": "view",
|
|
1327
|
+
"type": "function"
|
|
1328
|
+
},
|
|
1484
1329
|
{
|
|
1485
1330
|
"inputs": [],
|
|
1486
1331
|
"name": "getPendingTransactions",
|
|
@@ -1871,6 +1716,25 @@
|
|
|
1871
1716
|
"stateMutability": "view",
|
|
1872
1717
|
"type": "function"
|
|
1873
1718
|
},
|
|
1719
|
+
{
|
|
1720
|
+
"inputs": [
|
|
1721
|
+
{
|
|
1722
|
+
"internalType": "bytes32",
|
|
1723
|
+
"name": "roleHash",
|
|
1724
|
+
"type": "bytes32"
|
|
1725
|
+
}
|
|
1726
|
+
],
|
|
1727
|
+
"name": "getWalletsInRole",
|
|
1728
|
+
"outputs": [
|
|
1729
|
+
{
|
|
1730
|
+
"internalType": "address[]",
|
|
1731
|
+
"name": "",
|
|
1732
|
+
"type": "address[]"
|
|
1733
|
+
}
|
|
1734
|
+
],
|
|
1735
|
+
"stateMutability": "view",
|
|
1736
|
+
"type": "function"
|
|
1737
|
+
},
|
|
1874
1738
|
{
|
|
1875
1739
|
"inputs": [
|
|
1876
1740
|
{
|
|
@@ -2232,105 +2096,9 @@
|
|
|
2232
2096
|
"name": "transferOwnershipApprovalWithMetaTx",
|
|
2233
2097
|
"outputs": [
|
|
2234
2098
|
{
|
|
2235
|
-
"
|
|
2236
|
-
{
|
|
2237
|
-
"internalType": "uint256",
|
|
2238
|
-
"name": "txId",
|
|
2239
|
-
"type": "uint256"
|
|
2240
|
-
},
|
|
2241
|
-
{
|
|
2242
|
-
"internalType": "uint256",
|
|
2243
|
-
"name": "releaseTime",
|
|
2244
|
-
"type": "uint256"
|
|
2245
|
-
},
|
|
2246
|
-
{
|
|
2247
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2248
|
-
"name": "status",
|
|
2249
|
-
"type": "uint8"
|
|
2250
|
-
},
|
|
2251
|
-
{
|
|
2252
|
-
"components": [
|
|
2253
|
-
{
|
|
2254
|
-
"internalType": "address",
|
|
2255
|
-
"name": "requester",
|
|
2256
|
-
"type": "address"
|
|
2257
|
-
},
|
|
2258
|
-
{
|
|
2259
|
-
"internalType": "address",
|
|
2260
|
-
"name": "target",
|
|
2261
|
-
"type": "address"
|
|
2262
|
-
},
|
|
2263
|
-
{
|
|
2264
|
-
"internalType": "uint256",
|
|
2265
|
-
"name": "value",
|
|
2266
|
-
"type": "uint256"
|
|
2267
|
-
},
|
|
2268
|
-
{
|
|
2269
|
-
"internalType": "uint256",
|
|
2270
|
-
"name": "gasLimit",
|
|
2271
|
-
"type": "uint256"
|
|
2272
|
-
},
|
|
2273
|
-
{
|
|
2274
|
-
"internalType": "bytes32",
|
|
2275
|
-
"name": "operationType",
|
|
2276
|
-
"type": "bytes32"
|
|
2277
|
-
},
|
|
2278
|
-
{
|
|
2279
|
-
"internalType": "bytes4",
|
|
2280
|
-
"name": "executionSelector",
|
|
2281
|
-
"type": "bytes4"
|
|
2282
|
-
},
|
|
2283
|
-
{
|
|
2284
|
-
"internalType": "bytes",
|
|
2285
|
-
"name": "executionParams",
|
|
2286
|
-
"type": "bytes"
|
|
2287
|
-
}
|
|
2288
|
-
],
|
|
2289
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2290
|
-
"name": "params",
|
|
2291
|
-
"type": "tuple"
|
|
2292
|
-
},
|
|
2293
|
-
{
|
|
2294
|
-
"internalType": "bytes32",
|
|
2295
|
-
"name": "message",
|
|
2296
|
-
"type": "bytes32"
|
|
2297
|
-
},
|
|
2298
|
-
{
|
|
2299
|
-
"internalType": "bytes",
|
|
2300
|
-
"name": "result",
|
|
2301
|
-
"type": "bytes"
|
|
2302
|
-
},
|
|
2303
|
-
{
|
|
2304
|
-
"components": [
|
|
2305
|
-
{
|
|
2306
|
-
"internalType": "address",
|
|
2307
|
-
"name": "recipient",
|
|
2308
|
-
"type": "address"
|
|
2309
|
-
},
|
|
2310
|
-
{
|
|
2311
|
-
"internalType": "uint256",
|
|
2312
|
-
"name": "nativeTokenAmount",
|
|
2313
|
-
"type": "uint256"
|
|
2314
|
-
},
|
|
2315
|
-
{
|
|
2316
|
-
"internalType": "address",
|
|
2317
|
-
"name": "erc20TokenAddress",
|
|
2318
|
-
"type": "address"
|
|
2319
|
-
},
|
|
2320
|
-
{
|
|
2321
|
-
"internalType": "uint256",
|
|
2322
|
-
"name": "erc20TokenAmount",
|
|
2323
|
-
"type": "uint256"
|
|
2324
|
-
}
|
|
2325
|
-
],
|
|
2326
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2327
|
-
"name": "payment",
|
|
2328
|
-
"type": "tuple"
|
|
2329
|
-
}
|
|
2330
|
-
],
|
|
2331
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2099
|
+
"internalType": "uint256",
|
|
2332
2100
|
"name": "",
|
|
2333
|
-
"type": "
|
|
2101
|
+
"type": "uint256"
|
|
2334
2102
|
}
|
|
2335
2103
|
],
|
|
2336
2104
|
"stateMutability": "nonpayable",
|
|
@@ -2347,105 +2115,9 @@
|
|
|
2347
2115
|
"name": "transferOwnershipCancellation",
|
|
2348
2116
|
"outputs": [
|
|
2349
2117
|
{
|
|
2350
|
-
"
|
|
2351
|
-
{
|
|
2352
|
-
"internalType": "uint256",
|
|
2353
|
-
"name": "txId",
|
|
2354
|
-
"type": "uint256"
|
|
2355
|
-
},
|
|
2356
|
-
{
|
|
2357
|
-
"internalType": "uint256",
|
|
2358
|
-
"name": "releaseTime",
|
|
2359
|
-
"type": "uint256"
|
|
2360
|
-
},
|
|
2361
|
-
{
|
|
2362
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2363
|
-
"name": "status",
|
|
2364
|
-
"type": "uint8"
|
|
2365
|
-
},
|
|
2366
|
-
{
|
|
2367
|
-
"components": [
|
|
2368
|
-
{
|
|
2369
|
-
"internalType": "address",
|
|
2370
|
-
"name": "requester",
|
|
2371
|
-
"type": "address"
|
|
2372
|
-
},
|
|
2373
|
-
{
|
|
2374
|
-
"internalType": "address",
|
|
2375
|
-
"name": "target",
|
|
2376
|
-
"type": "address"
|
|
2377
|
-
},
|
|
2378
|
-
{
|
|
2379
|
-
"internalType": "uint256",
|
|
2380
|
-
"name": "value",
|
|
2381
|
-
"type": "uint256"
|
|
2382
|
-
},
|
|
2383
|
-
{
|
|
2384
|
-
"internalType": "uint256",
|
|
2385
|
-
"name": "gasLimit",
|
|
2386
|
-
"type": "uint256"
|
|
2387
|
-
},
|
|
2388
|
-
{
|
|
2389
|
-
"internalType": "bytes32",
|
|
2390
|
-
"name": "operationType",
|
|
2391
|
-
"type": "bytes32"
|
|
2392
|
-
},
|
|
2393
|
-
{
|
|
2394
|
-
"internalType": "bytes4",
|
|
2395
|
-
"name": "executionSelector",
|
|
2396
|
-
"type": "bytes4"
|
|
2397
|
-
},
|
|
2398
|
-
{
|
|
2399
|
-
"internalType": "bytes",
|
|
2400
|
-
"name": "executionParams",
|
|
2401
|
-
"type": "bytes"
|
|
2402
|
-
}
|
|
2403
|
-
],
|
|
2404
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2405
|
-
"name": "params",
|
|
2406
|
-
"type": "tuple"
|
|
2407
|
-
},
|
|
2408
|
-
{
|
|
2409
|
-
"internalType": "bytes32",
|
|
2410
|
-
"name": "message",
|
|
2411
|
-
"type": "bytes32"
|
|
2412
|
-
},
|
|
2413
|
-
{
|
|
2414
|
-
"internalType": "bytes",
|
|
2415
|
-
"name": "result",
|
|
2416
|
-
"type": "bytes"
|
|
2417
|
-
},
|
|
2418
|
-
{
|
|
2419
|
-
"components": [
|
|
2420
|
-
{
|
|
2421
|
-
"internalType": "address",
|
|
2422
|
-
"name": "recipient",
|
|
2423
|
-
"type": "address"
|
|
2424
|
-
},
|
|
2425
|
-
{
|
|
2426
|
-
"internalType": "uint256",
|
|
2427
|
-
"name": "nativeTokenAmount",
|
|
2428
|
-
"type": "uint256"
|
|
2429
|
-
},
|
|
2430
|
-
{
|
|
2431
|
-
"internalType": "address",
|
|
2432
|
-
"name": "erc20TokenAddress",
|
|
2433
|
-
"type": "address"
|
|
2434
|
-
},
|
|
2435
|
-
{
|
|
2436
|
-
"internalType": "uint256",
|
|
2437
|
-
"name": "erc20TokenAmount",
|
|
2438
|
-
"type": "uint256"
|
|
2439
|
-
}
|
|
2440
|
-
],
|
|
2441
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2442
|
-
"name": "payment",
|
|
2443
|
-
"type": "tuple"
|
|
2444
|
-
}
|
|
2445
|
-
],
|
|
2446
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2118
|
+
"internalType": "uint256",
|
|
2447
2119
|
"name": "",
|
|
2448
|
-
"type": "
|
|
2120
|
+
"type": "uint256"
|
|
2449
2121
|
}
|
|
2450
2122
|
],
|
|
2451
2123
|
"stateMutability": "nonpayable",
|
|
@@ -2626,739 +2298,56 @@
|
|
|
2626
2298
|
],
|
|
2627
2299
|
"name": "transferOwnershipCancellationWithMetaTx",
|
|
2628
2300
|
"outputs": [
|
|
2301
|
+
{
|
|
2302
|
+
"internalType": "uint256",
|
|
2303
|
+
"name": "",
|
|
2304
|
+
"type": "uint256"
|
|
2305
|
+
}
|
|
2306
|
+
],
|
|
2307
|
+
"stateMutability": "nonpayable",
|
|
2308
|
+
"type": "function"
|
|
2309
|
+
},
|
|
2310
|
+
{
|
|
2311
|
+
"inputs": [
|
|
2312
|
+
{
|
|
2313
|
+
"internalType": "uint256",
|
|
2314
|
+
"name": "txId",
|
|
2315
|
+
"type": "uint256"
|
|
2316
|
+
}
|
|
2317
|
+
],
|
|
2318
|
+
"name": "transferOwnershipDelayedApproval",
|
|
2319
|
+
"outputs": [
|
|
2320
|
+
{
|
|
2321
|
+
"internalType": "uint256",
|
|
2322
|
+
"name": "",
|
|
2323
|
+
"type": "uint256"
|
|
2324
|
+
}
|
|
2325
|
+
],
|
|
2326
|
+
"stateMutability": "nonpayable",
|
|
2327
|
+
"type": "function"
|
|
2328
|
+
},
|
|
2329
|
+
{
|
|
2330
|
+
"inputs": [],
|
|
2331
|
+
"name": "transferOwnershipRequest",
|
|
2332
|
+
"outputs": [
|
|
2333
|
+
{
|
|
2334
|
+
"internalType": "uint256",
|
|
2335
|
+
"name": "txId",
|
|
2336
|
+
"type": "uint256"
|
|
2337
|
+
}
|
|
2338
|
+
],
|
|
2339
|
+
"stateMutability": "nonpayable",
|
|
2340
|
+
"type": "function"
|
|
2341
|
+
},
|
|
2342
|
+
{
|
|
2343
|
+
"inputs": [
|
|
2629
2344
|
{
|
|
2630
2345
|
"components": [
|
|
2631
|
-
{
|
|
2632
|
-
"internalType": "uint256",
|
|
2633
|
-
"name": "txId",
|
|
2634
|
-
"type": "uint256"
|
|
2635
|
-
},
|
|
2636
|
-
{
|
|
2637
|
-
"internalType": "uint256",
|
|
2638
|
-
"name": "releaseTime",
|
|
2639
|
-
"type": "uint256"
|
|
2640
|
-
},
|
|
2641
|
-
{
|
|
2642
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2643
|
-
"name": "status",
|
|
2644
|
-
"type": "uint8"
|
|
2645
|
-
},
|
|
2646
2346
|
{
|
|
2647
2347
|
"components": [
|
|
2648
|
-
{
|
|
2649
|
-
"internalType": "address",
|
|
2650
|
-
"name": "requester",
|
|
2651
|
-
"type": "address"
|
|
2652
|
-
},
|
|
2653
|
-
{
|
|
2654
|
-
"internalType": "address",
|
|
2655
|
-
"name": "target",
|
|
2656
|
-
"type": "address"
|
|
2657
|
-
},
|
|
2658
2348
|
{
|
|
2659
2349
|
"internalType": "uint256",
|
|
2660
|
-
"name": "
|
|
2661
|
-
"type": "uint256"
|
|
2662
|
-
},
|
|
2663
|
-
{
|
|
2664
|
-
"internalType": "uint256",
|
|
2665
|
-
"name": "gasLimit",
|
|
2666
|
-
"type": "uint256"
|
|
2667
|
-
},
|
|
2668
|
-
{
|
|
2669
|
-
"internalType": "bytes32",
|
|
2670
|
-
"name": "operationType",
|
|
2671
|
-
"type": "bytes32"
|
|
2672
|
-
},
|
|
2673
|
-
{
|
|
2674
|
-
"internalType": "bytes4",
|
|
2675
|
-
"name": "executionSelector",
|
|
2676
|
-
"type": "bytes4"
|
|
2677
|
-
},
|
|
2678
|
-
{
|
|
2679
|
-
"internalType": "bytes",
|
|
2680
|
-
"name": "executionParams",
|
|
2681
|
-
"type": "bytes"
|
|
2682
|
-
}
|
|
2683
|
-
],
|
|
2684
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2685
|
-
"name": "params",
|
|
2686
|
-
"type": "tuple"
|
|
2687
|
-
},
|
|
2688
|
-
{
|
|
2689
|
-
"internalType": "bytes32",
|
|
2690
|
-
"name": "message",
|
|
2691
|
-
"type": "bytes32"
|
|
2692
|
-
},
|
|
2693
|
-
{
|
|
2694
|
-
"internalType": "bytes",
|
|
2695
|
-
"name": "result",
|
|
2696
|
-
"type": "bytes"
|
|
2697
|
-
},
|
|
2698
|
-
{
|
|
2699
|
-
"components": [
|
|
2700
|
-
{
|
|
2701
|
-
"internalType": "address",
|
|
2702
|
-
"name": "recipient",
|
|
2703
|
-
"type": "address"
|
|
2704
|
-
},
|
|
2705
|
-
{
|
|
2706
|
-
"internalType": "uint256",
|
|
2707
|
-
"name": "nativeTokenAmount",
|
|
2708
|
-
"type": "uint256"
|
|
2709
|
-
},
|
|
2710
|
-
{
|
|
2711
|
-
"internalType": "address",
|
|
2712
|
-
"name": "erc20TokenAddress",
|
|
2713
|
-
"type": "address"
|
|
2714
|
-
},
|
|
2715
|
-
{
|
|
2716
|
-
"internalType": "uint256",
|
|
2717
|
-
"name": "erc20TokenAmount",
|
|
2718
|
-
"type": "uint256"
|
|
2719
|
-
}
|
|
2720
|
-
],
|
|
2721
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2722
|
-
"name": "payment",
|
|
2723
|
-
"type": "tuple"
|
|
2724
|
-
}
|
|
2725
|
-
],
|
|
2726
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2727
|
-
"name": "",
|
|
2728
|
-
"type": "tuple"
|
|
2729
|
-
}
|
|
2730
|
-
],
|
|
2731
|
-
"stateMutability": "nonpayable",
|
|
2732
|
-
"type": "function"
|
|
2733
|
-
},
|
|
2734
|
-
{
|
|
2735
|
-
"inputs": [
|
|
2736
|
-
{
|
|
2737
|
-
"internalType": "uint256",
|
|
2738
|
-
"name": "txId",
|
|
2739
|
-
"type": "uint256"
|
|
2740
|
-
}
|
|
2741
|
-
],
|
|
2742
|
-
"name": "transferOwnershipDelayedApproval",
|
|
2743
|
-
"outputs": [
|
|
2744
|
-
{
|
|
2745
|
-
"components": [
|
|
2746
|
-
{
|
|
2747
|
-
"internalType": "uint256",
|
|
2748
|
-
"name": "txId",
|
|
2749
|
-
"type": "uint256"
|
|
2750
|
-
},
|
|
2751
|
-
{
|
|
2752
|
-
"internalType": "uint256",
|
|
2753
|
-
"name": "releaseTime",
|
|
2754
|
-
"type": "uint256"
|
|
2755
|
-
},
|
|
2756
|
-
{
|
|
2757
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2758
|
-
"name": "status",
|
|
2759
|
-
"type": "uint8"
|
|
2760
|
-
},
|
|
2761
|
-
{
|
|
2762
|
-
"components": [
|
|
2763
|
-
{
|
|
2764
|
-
"internalType": "address",
|
|
2765
|
-
"name": "requester",
|
|
2766
|
-
"type": "address"
|
|
2767
|
-
},
|
|
2768
|
-
{
|
|
2769
|
-
"internalType": "address",
|
|
2770
|
-
"name": "target",
|
|
2771
|
-
"type": "address"
|
|
2772
|
-
},
|
|
2773
|
-
{
|
|
2774
|
-
"internalType": "uint256",
|
|
2775
|
-
"name": "value",
|
|
2776
|
-
"type": "uint256"
|
|
2777
|
-
},
|
|
2778
|
-
{
|
|
2779
|
-
"internalType": "uint256",
|
|
2780
|
-
"name": "gasLimit",
|
|
2781
|
-
"type": "uint256"
|
|
2782
|
-
},
|
|
2783
|
-
{
|
|
2784
|
-
"internalType": "bytes32",
|
|
2785
|
-
"name": "operationType",
|
|
2786
|
-
"type": "bytes32"
|
|
2787
|
-
},
|
|
2788
|
-
{
|
|
2789
|
-
"internalType": "bytes4",
|
|
2790
|
-
"name": "executionSelector",
|
|
2791
|
-
"type": "bytes4"
|
|
2792
|
-
},
|
|
2793
|
-
{
|
|
2794
|
-
"internalType": "bytes",
|
|
2795
|
-
"name": "executionParams",
|
|
2796
|
-
"type": "bytes"
|
|
2797
|
-
}
|
|
2798
|
-
],
|
|
2799
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2800
|
-
"name": "params",
|
|
2801
|
-
"type": "tuple"
|
|
2802
|
-
},
|
|
2803
|
-
{
|
|
2804
|
-
"internalType": "bytes32",
|
|
2805
|
-
"name": "message",
|
|
2806
|
-
"type": "bytes32"
|
|
2807
|
-
},
|
|
2808
|
-
{
|
|
2809
|
-
"internalType": "bytes",
|
|
2810
|
-
"name": "result",
|
|
2811
|
-
"type": "bytes"
|
|
2812
|
-
},
|
|
2813
|
-
{
|
|
2814
|
-
"components": [
|
|
2815
|
-
{
|
|
2816
|
-
"internalType": "address",
|
|
2817
|
-
"name": "recipient",
|
|
2818
|
-
"type": "address"
|
|
2819
|
-
},
|
|
2820
|
-
{
|
|
2821
|
-
"internalType": "uint256",
|
|
2822
|
-
"name": "nativeTokenAmount",
|
|
2823
|
-
"type": "uint256"
|
|
2824
|
-
},
|
|
2825
|
-
{
|
|
2826
|
-
"internalType": "address",
|
|
2827
|
-
"name": "erc20TokenAddress",
|
|
2828
|
-
"type": "address"
|
|
2829
|
-
},
|
|
2830
|
-
{
|
|
2831
|
-
"internalType": "uint256",
|
|
2832
|
-
"name": "erc20TokenAmount",
|
|
2833
|
-
"type": "uint256"
|
|
2834
|
-
}
|
|
2835
|
-
],
|
|
2836
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2837
|
-
"name": "payment",
|
|
2838
|
-
"type": "tuple"
|
|
2839
|
-
}
|
|
2840
|
-
],
|
|
2841
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2842
|
-
"name": "",
|
|
2843
|
-
"type": "tuple"
|
|
2844
|
-
}
|
|
2845
|
-
],
|
|
2846
|
-
"stateMutability": "nonpayable",
|
|
2847
|
-
"type": "function"
|
|
2848
|
-
},
|
|
2849
|
-
{
|
|
2850
|
-
"inputs": [],
|
|
2851
|
-
"name": "transferOwnershipRequest",
|
|
2852
|
-
"outputs": [
|
|
2853
|
-
{
|
|
2854
|
-
"components": [
|
|
2855
|
-
{
|
|
2856
|
-
"internalType": "uint256",
|
|
2857
|
-
"name": "txId",
|
|
2858
|
-
"type": "uint256"
|
|
2859
|
-
},
|
|
2860
|
-
{
|
|
2861
|
-
"internalType": "uint256",
|
|
2862
|
-
"name": "releaseTime",
|
|
2863
|
-
"type": "uint256"
|
|
2864
|
-
},
|
|
2865
|
-
{
|
|
2866
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2867
|
-
"name": "status",
|
|
2868
|
-
"type": "uint8"
|
|
2869
|
-
},
|
|
2870
|
-
{
|
|
2871
|
-
"components": [
|
|
2872
|
-
{
|
|
2873
|
-
"internalType": "address",
|
|
2874
|
-
"name": "requester",
|
|
2875
|
-
"type": "address"
|
|
2876
|
-
},
|
|
2877
|
-
{
|
|
2878
|
-
"internalType": "address",
|
|
2879
|
-
"name": "target",
|
|
2880
|
-
"type": "address"
|
|
2881
|
-
},
|
|
2882
|
-
{
|
|
2883
|
-
"internalType": "uint256",
|
|
2884
|
-
"name": "value",
|
|
2885
|
-
"type": "uint256"
|
|
2886
|
-
},
|
|
2887
|
-
{
|
|
2888
|
-
"internalType": "uint256",
|
|
2889
|
-
"name": "gasLimit",
|
|
2890
|
-
"type": "uint256"
|
|
2891
|
-
},
|
|
2892
|
-
{
|
|
2893
|
-
"internalType": "bytes32",
|
|
2894
|
-
"name": "operationType",
|
|
2895
|
-
"type": "bytes32"
|
|
2896
|
-
},
|
|
2897
|
-
{
|
|
2898
|
-
"internalType": "bytes4",
|
|
2899
|
-
"name": "executionSelector",
|
|
2900
|
-
"type": "bytes4"
|
|
2901
|
-
},
|
|
2902
|
-
{
|
|
2903
|
-
"internalType": "bytes",
|
|
2904
|
-
"name": "executionParams",
|
|
2905
|
-
"type": "bytes"
|
|
2906
|
-
}
|
|
2907
|
-
],
|
|
2908
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2909
|
-
"name": "params",
|
|
2910
|
-
"type": "tuple"
|
|
2911
|
-
},
|
|
2912
|
-
{
|
|
2913
|
-
"internalType": "bytes32",
|
|
2914
|
-
"name": "message",
|
|
2915
|
-
"type": "bytes32"
|
|
2916
|
-
},
|
|
2917
|
-
{
|
|
2918
|
-
"internalType": "bytes",
|
|
2919
|
-
"name": "result",
|
|
2920
|
-
"type": "bytes"
|
|
2921
|
-
},
|
|
2922
|
-
{
|
|
2923
|
-
"components": [
|
|
2924
|
-
{
|
|
2925
|
-
"internalType": "address",
|
|
2926
|
-
"name": "recipient",
|
|
2927
|
-
"type": "address"
|
|
2928
|
-
},
|
|
2929
|
-
{
|
|
2930
|
-
"internalType": "uint256",
|
|
2931
|
-
"name": "nativeTokenAmount",
|
|
2932
|
-
"type": "uint256"
|
|
2933
|
-
},
|
|
2934
|
-
{
|
|
2935
|
-
"internalType": "address",
|
|
2936
|
-
"name": "erc20TokenAddress",
|
|
2937
|
-
"type": "address"
|
|
2938
|
-
},
|
|
2939
|
-
{
|
|
2940
|
-
"internalType": "uint256",
|
|
2941
|
-
"name": "erc20TokenAmount",
|
|
2942
|
-
"type": "uint256"
|
|
2943
|
-
}
|
|
2944
|
-
],
|
|
2945
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2946
|
-
"name": "payment",
|
|
2947
|
-
"type": "tuple"
|
|
2948
|
-
}
|
|
2949
|
-
],
|
|
2950
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2951
|
-
"name": "",
|
|
2952
|
-
"type": "tuple"
|
|
2953
|
-
}
|
|
2954
|
-
],
|
|
2955
|
-
"stateMutability": "nonpayable",
|
|
2956
|
-
"type": "function"
|
|
2957
|
-
},
|
|
2958
|
-
{
|
|
2959
|
-
"inputs": [
|
|
2960
|
-
{
|
|
2961
|
-
"components": [
|
|
2962
|
-
{
|
|
2963
|
-
"components": [
|
|
2964
|
-
{
|
|
2965
|
-
"internalType": "uint256",
|
|
2966
|
-
"name": "txId",
|
|
2967
|
-
"type": "uint256"
|
|
2968
|
-
},
|
|
2969
|
-
{
|
|
2970
|
-
"internalType": "uint256",
|
|
2971
|
-
"name": "releaseTime",
|
|
2972
|
-
"type": "uint256"
|
|
2973
|
-
},
|
|
2974
|
-
{
|
|
2975
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2976
|
-
"name": "status",
|
|
2977
|
-
"type": "uint8"
|
|
2978
|
-
},
|
|
2979
|
-
{
|
|
2980
|
-
"components": [
|
|
2981
|
-
{
|
|
2982
|
-
"internalType": "address",
|
|
2983
|
-
"name": "requester",
|
|
2984
|
-
"type": "address"
|
|
2985
|
-
},
|
|
2986
|
-
{
|
|
2987
|
-
"internalType": "address",
|
|
2988
|
-
"name": "target",
|
|
2989
|
-
"type": "address"
|
|
2990
|
-
},
|
|
2991
|
-
{
|
|
2992
|
-
"internalType": "uint256",
|
|
2993
|
-
"name": "value",
|
|
2994
|
-
"type": "uint256"
|
|
2995
|
-
},
|
|
2996
|
-
{
|
|
2997
|
-
"internalType": "uint256",
|
|
2998
|
-
"name": "gasLimit",
|
|
2999
|
-
"type": "uint256"
|
|
3000
|
-
},
|
|
3001
|
-
{
|
|
3002
|
-
"internalType": "bytes32",
|
|
3003
|
-
"name": "operationType",
|
|
3004
|
-
"type": "bytes32"
|
|
3005
|
-
},
|
|
3006
|
-
{
|
|
3007
|
-
"internalType": "bytes4",
|
|
3008
|
-
"name": "executionSelector",
|
|
3009
|
-
"type": "bytes4"
|
|
3010
|
-
},
|
|
3011
|
-
{
|
|
3012
|
-
"internalType": "bytes",
|
|
3013
|
-
"name": "executionParams",
|
|
3014
|
-
"type": "bytes"
|
|
3015
|
-
}
|
|
3016
|
-
],
|
|
3017
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3018
|
-
"name": "params",
|
|
3019
|
-
"type": "tuple"
|
|
3020
|
-
},
|
|
3021
|
-
{
|
|
3022
|
-
"internalType": "bytes32",
|
|
3023
|
-
"name": "message",
|
|
3024
|
-
"type": "bytes32"
|
|
3025
|
-
},
|
|
3026
|
-
{
|
|
3027
|
-
"internalType": "bytes",
|
|
3028
|
-
"name": "result",
|
|
3029
|
-
"type": "bytes"
|
|
3030
|
-
},
|
|
3031
|
-
{
|
|
3032
|
-
"components": [
|
|
3033
|
-
{
|
|
3034
|
-
"internalType": "address",
|
|
3035
|
-
"name": "recipient",
|
|
3036
|
-
"type": "address"
|
|
3037
|
-
},
|
|
3038
|
-
{
|
|
3039
|
-
"internalType": "uint256",
|
|
3040
|
-
"name": "nativeTokenAmount",
|
|
3041
|
-
"type": "uint256"
|
|
3042
|
-
},
|
|
3043
|
-
{
|
|
3044
|
-
"internalType": "address",
|
|
3045
|
-
"name": "erc20TokenAddress",
|
|
3046
|
-
"type": "address"
|
|
3047
|
-
},
|
|
3048
|
-
{
|
|
3049
|
-
"internalType": "uint256",
|
|
3050
|
-
"name": "erc20TokenAmount",
|
|
3051
|
-
"type": "uint256"
|
|
3052
|
-
}
|
|
3053
|
-
],
|
|
3054
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3055
|
-
"name": "payment",
|
|
3056
|
-
"type": "tuple"
|
|
3057
|
-
}
|
|
3058
|
-
],
|
|
3059
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3060
|
-
"name": "txRecord",
|
|
3061
|
-
"type": "tuple"
|
|
3062
|
-
},
|
|
3063
|
-
{
|
|
3064
|
-
"components": [
|
|
3065
|
-
{
|
|
3066
|
-
"internalType": "uint256",
|
|
3067
|
-
"name": "chainId",
|
|
3068
|
-
"type": "uint256"
|
|
3069
|
-
},
|
|
3070
|
-
{
|
|
3071
|
-
"internalType": "uint256",
|
|
3072
|
-
"name": "nonce",
|
|
3073
|
-
"type": "uint256"
|
|
3074
|
-
},
|
|
3075
|
-
{
|
|
3076
|
-
"internalType": "address",
|
|
3077
|
-
"name": "handlerContract",
|
|
3078
|
-
"type": "address"
|
|
3079
|
-
},
|
|
3080
|
-
{
|
|
3081
|
-
"internalType": "bytes4",
|
|
3082
|
-
"name": "handlerSelector",
|
|
3083
|
-
"type": "bytes4"
|
|
3084
|
-
},
|
|
3085
|
-
{
|
|
3086
|
-
"internalType": "enum EngineBlox.TxAction",
|
|
3087
|
-
"name": "action",
|
|
3088
|
-
"type": "uint8"
|
|
3089
|
-
},
|
|
3090
|
-
{
|
|
3091
|
-
"internalType": "uint256",
|
|
3092
|
-
"name": "deadline",
|
|
3093
|
-
"type": "uint256"
|
|
3094
|
-
},
|
|
3095
|
-
{
|
|
3096
|
-
"internalType": "uint256",
|
|
3097
|
-
"name": "maxGasPrice",
|
|
3098
|
-
"type": "uint256"
|
|
3099
|
-
},
|
|
3100
|
-
{
|
|
3101
|
-
"internalType": "address",
|
|
3102
|
-
"name": "signer",
|
|
3103
|
-
"type": "address"
|
|
3104
|
-
}
|
|
3105
|
-
],
|
|
3106
|
-
"internalType": "struct EngineBlox.MetaTxParams",
|
|
3107
|
-
"name": "params",
|
|
3108
|
-
"type": "tuple"
|
|
3109
|
-
},
|
|
3110
|
-
{
|
|
3111
|
-
"internalType": "bytes32",
|
|
3112
|
-
"name": "message",
|
|
3113
|
-
"type": "bytes32"
|
|
3114
|
-
},
|
|
3115
|
-
{
|
|
3116
|
-
"internalType": "bytes",
|
|
3117
|
-
"name": "signature",
|
|
3118
|
-
"type": "bytes"
|
|
3119
|
-
},
|
|
3120
|
-
{
|
|
3121
|
-
"internalType": "bytes",
|
|
3122
|
-
"name": "data",
|
|
3123
|
-
"type": "bytes"
|
|
3124
|
-
}
|
|
3125
|
-
],
|
|
3126
|
-
"internalType": "struct EngineBlox.MetaTransaction",
|
|
3127
|
-
"name": "metaTx",
|
|
3128
|
-
"type": "tuple"
|
|
3129
|
-
}
|
|
3130
|
-
],
|
|
3131
|
-
"name": "updateBroadcasterApprovalWithMetaTx",
|
|
3132
|
-
"outputs": [
|
|
3133
|
-
{
|
|
3134
|
-
"components": [
|
|
3135
|
-
{
|
|
3136
|
-
"internalType": "uint256",
|
|
3137
|
-
"name": "txId",
|
|
3138
|
-
"type": "uint256"
|
|
3139
|
-
},
|
|
3140
|
-
{
|
|
3141
|
-
"internalType": "uint256",
|
|
3142
|
-
"name": "releaseTime",
|
|
3143
|
-
"type": "uint256"
|
|
3144
|
-
},
|
|
3145
|
-
{
|
|
3146
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3147
|
-
"name": "status",
|
|
3148
|
-
"type": "uint8"
|
|
3149
|
-
},
|
|
3150
|
-
{
|
|
3151
|
-
"components": [
|
|
3152
|
-
{
|
|
3153
|
-
"internalType": "address",
|
|
3154
|
-
"name": "requester",
|
|
3155
|
-
"type": "address"
|
|
3156
|
-
},
|
|
3157
|
-
{
|
|
3158
|
-
"internalType": "address",
|
|
3159
|
-
"name": "target",
|
|
3160
|
-
"type": "address"
|
|
3161
|
-
},
|
|
3162
|
-
{
|
|
3163
|
-
"internalType": "uint256",
|
|
3164
|
-
"name": "value",
|
|
3165
|
-
"type": "uint256"
|
|
3166
|
-
},
|
|
3167
|
-
{
|
|
3168
|
-
"internalType": "uint256",
|
|
3169
|
-
"name": "gasLimit",
|
|
3170
|
-
"type": "uint256"
|
|
3171
|
-
},
|
|
3172
|
-
{
|
|
3173
|
-
"internalType": "bytes32",
|
|
3174
|
-
"name": "operationType",
|
|
3175
|
-
"type": "bytes32"
|
|
3176
|
-
},
|
|
3177
|
-
{
|
|
3178
|
-
"internalType": "bytes4",
|
|
3179
|
-
"name": "executionSelector",
|
|
3180
|
-
"type": "bytes4"
|
|
3181
|
-
},
|
|
3182
|
-
{
|
|
3183
|
-
"internalType": "bytes",
|
|
3184
|
-
"name": "executionParams",
|
|
3185
|
-
"type": "bytes"
|
|
3186
|
-
}
|
|
3187
|
-
],
|
|
3188
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3189
|
-
"name": "params",
|
|
3190
|
-
"type": "tuple"
|
|
3191
|
-
},
|
|
3192
|
-
{
|
|
3193
|
-
"internalType": "bytes32",
|
|
3194
|
-
"name": "message",
|
|
3195
|
-
"type": "bytes32"
|
|
3196
|
-
},
|
|
3197
|
-
{
|
|
3198
|
-
"internalType": "bytes",
|
|
3199
|
-
"name": "result",
|
|
3200
|
-
"type": "bytes"
|
|
3201
|
-
},
|
|
3202
|
-
{
|
|
3203
|
-
"components": [
|
|
3204
|
-
{
|
|
3205
|
-
"internalType": "address",
|
|
3206
|
-
"name": "recipient",
|
|
3207
|
-
"type": "address"
|
|
3208
|
-
},
|
|
3209
|
-
{
|
|
3210
|
-
"internalType": "uint256",
|
|
3211
|
-
"name": "nativeTokenAmount",
|
|
3212
|
-
"type": "uint256"
|
|
3213
|
-
},
|
|
3214
|
-
{
|
|
3215
|
-
"internalType": "address",
|
|
3216
|
-
"name": "erc20TokenAddress",
|
|
3217
|
-
"type": "address"
|
|
3218
|
-
},
|
|
3219
|
-
{
|
|
3220
|
-
"internalType": "uint256",
|
|
3221
|
-
"name": "erc20TokenAmount",
|
|
3222
|
-
"type": "uint256"
|
|
3223
|
-
}
|
|
3224
|
-
],
|
|
3225
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3226
|
-
"name": "payment",
|
|
3227
|
-
"type": "tuple"
|
|
3228
|
-
}
|
|
3229
|
-
],
|
|
3230
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3231
|
-
"name": "",
|
|
3232
|
-
"type": "tuple"
|
|
3233
|
-
}
|
|
3234
|
-
],
|
|
3235
|
-
"stateMutability": "nonpayable",
|
|
3236
|
-
"type": "function"
|
|
3237
|
-
},
|
|
3238
|
-
{
|
|
3239
|
-
"inputs": [
|
|
3240
|
-
{
|
|
3241
|
-
"internalType": "uint256",
|
|
3242
|
-
"name": "txId",
|
|
3243
|
-
"type": "uint256"
|
|
3244
|
-
}
|
|
3245
|
-
],
|
|
3246
|
-
"name": "updateBroadcasterCancellation",
|
|
3247
|
-
"outputs": [
|
|
3248
|
-
{
|
|
3249
|
-
"components": [
|
|
3250
|
-
{
|
|
3251
|
-
"internalType": "uint256",
|
|
3252
|
-
"name": "txId",
|
|
3253
|
-
"type": "uint256"
|
|
3254
|
-
},
|
|
3255
|
-
{
|
|
3256
|
-
"internalType": "uint256",
|
|
3257
|
-
"name": "releaseTime",
|
|
3258
|
-
"type": "uint256"
|
|
3259
|
-
},
|
|
3260
|
-
{
|
|
3261
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3262
|
-
"name": "status",
|
|
3263
|
-
"type": "uint8"
|
|
3264
|
-
},
|
|
3265
|
-
{
|
|
3266
|
-
"components": [
|
|
3267
|
-
{
|
|
3268
|
-
"internalType": "address",
|
|
3269
|
-
"name": "requester",
|
|
3270
|
-
"type": "address"
|
|
3271
|
-
},
|
|
3272
|
-
{
|
|
3273
|
-
"internalType": "address",
|
|
3274
|
-
"name": "target",
|
|
3275
|
-
"type": "address"
|
|
3276
|
-
},
|
|
3277
|
-
{
|
|
3278
|
-
"internalType": "uint256",
|
|
3279
|
-
"name": "value",
|
|
3280
|
-
"type": "uint256"
|
|
3281
|
-
},
|
|
3282
|
-
{
|
|
3283
|
-
"internalType": "uint256",
|
|
3284
|
-
"name": "gasLimit",
|
|
3285
|
-
"type": "uint256"
|
|
3286
|
-
},
|
|
3287
|
-
{
|
|
3288
|
-
"internalType": "bytes32",
|
|
3289
|
-
"name": "operationType",
|
|
3290
|
-
"type": "bytes32"
|
|
3291
|
-
},
|
|
3292
|
-
{
|
|
3293
|
-
"internalType": "bytes4",
|
|
3294
|
-
"name": "executionSelector",
|
|
3295
|
-
"type": "bytes4"
|
|
3296
|
-
},
|
|
3297
|
-
{
|
|
3298
|
-
"internalType": "bytes",
|
|
3299
|
-
"name": "executionParams",
|
|
3300
|
-
"type": "bytes"
|
|
3301
|
-
}
|
|
3302
|
-
],
|
|
3303
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3304
|
-
"name": "params",
|
|
3305
|
-
"type": "tuple"
|
|
3306
|
-
},
|
|
3307
|
-
{
|
|
3308
|
-
"internalType": "bytes32",
|
|
3309
|
-
"name": "message",
|
|
3310
|
-
"type": "bytes32"
|
|
3311
|
-
},
|
|
3312
|
-
{
|
|
3313
|
-
"internalType": "bytes",
|
|
3314
|
-
"name": "result",
|
|
3315
|
-
"type": "bytes"
|
|
3316
|
-
},
|
|
3317
|
-
{
|
|
3318
|
-
"components": [
|
|
3319
|
-
{
|
|
3320
|
-
"internalType": "address",
|
|
3321
|
-
"name": "recipient",
|
|
3322
|
-
"type": "address"
|
|
3323
|
-
},
|
|
3324
|
-
{
|
|
3325
|
-
"internalType": "uint256",
|
|
3326
|
-
"name": "nativeTokenAmount",
|
|
3327
|
-
"type": "uint256"
|
|
3328
|
-
},
|
|
3329
|
-
{
|
|
3330
|
-
"internalType": "address",
|
|
3331
|
-
"name": "erc20TokenAddress",
|
|
3332
|
-
"type": "address"
|
|
3333
|
-
},
|
|
3334
|
-
{
|
|
3335
|
-
"internalType": "uint256",
|
|
3336
|
-
"name": "erc20TokenAmount",
|
|
3337
|
-
"type": "uint256"
|
|
3338
|
-
}
|
|
3339
|
-
],
|
|
3340
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3341
|
-
"name": "payment",
|
|
3342
|
-
"type": "tuple"
|
|
3343
|
-
}
|
|
3344
|
-
],
|
|
3345
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3346
|
-
"name": "",
|
|
3347
|
-
"type": "tuple"
|
|
3348
|
-
}
|
|
3349
|
-
],
|
|
3350
|
-
"stateMutability": "nonpayable",
|
|
3351
|
-
"type": "function"
|
|
3352
|
-
},
|
|
3353
|
-
{
|
|
3354
|
-
"inputs": [
|
|
3355
|
-
{
|
|
3356
|
-
"components": [
|
|
3357
|
-
{
|
|
3358
|
-
"components": [
|
|
3359
|
-
{
|
|
3360
|
-
"internalType": "uint256",
|
|
3361
|
-
"name": "txId",
|
|
2350
|
+
"name": "txId",
|
|
3362
2351
|
"type": "uint256"
|
|
3363
2352
|
},
|
|
3364
2353
|
{
|
|
@@ -3477,225 +2466,28 @@
|
|
|
3477
2466
|
"name": "handlerSelector",
|
|
3478
2467
|
"type": "bytes4"
|
|
3479
2468
|
},
|
|
3480
|
-
{
|
|
3481
|
-
"internalType": "enum EngineBlox.TxAction",
|
|
3482
|
-
"name": "action",
|
|
3483
|
-
"type": "uint8"
|
|
3484
|
-
},
|
|
3485
|
-
{
|
|
3486
|
-
"internalType": "uint256",
|
|
3487
|
-
"name": "deadline",
|
|
3488
|
-
"type": "uint256"
|
|
3489
|
-
},
|
|
3490
|
-
{
|
|
3491
|
-
"internalType": "uint256",
|
|
3492
|
-
"name": "maxGasPrice",
|
|
3493
|
-
"type": "uint256"
|
|
3494
|
-
},
|
|
3495
|
-
{
|
|
3496
|
-
"internalType": "address",
|
|
3497
|
-
"name": "signer",
|
|
3498
|
-
"type": "address"
|
|
3499
|
-
}
|
|
3500
|
-
],
|
|
3501
|
-
"internalType": "struct EngineBlox.MetaTxParams",
|
|
3502
|
-
"name": "params",
|
|
3503
|
-
"type": "tuple"
|
|
3504
|
-
},
|
|
3505
|
-
{
|
|
3506
|
-
"internalType": "bytes32",
|
|
3507
|
-
"name": "message",
|
|
3508
|
-
"type": "bytes32"
|
|
3509
|
-
},
|
|
3510
|
-
{
|
|
3511
|
-
"internalType": "bytes",
|
|
3512
|
-
"name": "signature",
|
|
3513
|
-
"type": "bytes"
|
|
3514
|
-
},
|
|
3515
|
-
{
|
|
3516
|
-
"internalType": "bytes",
|
|
3517
|
-
"name": "data",
|
|
3518
|
-
"type": "bytes"
|
|
3519
|
-
}
|
|
3520
|
-
],
|
|
3521
|
-
"internalType": "struct EngineBlox.MetaTransaction",
|
|
3522
|
-
"name": "metaTx",
|
|
3523
|
-
"type": "tuple"
|
|
3524
|
-
}
|
|
3525
|
-
],
|
|
3526
|
-
"name": "updateBroadcasterCancellationWithMetaTx",
|
|
3527
|
-
"outputs": [
|
|
3528
|
-
{
|
|
3529
|
-
"components": [
|
|
3530
|
-
{
|
|
3531
|
-
"internalType": "uint256",
|
|
3532
|
-
"name": "txId",
|
|
3533
|
-
"type": "uint256"
|
|
3534
|
-
},
|
|
3535
|
-
{
|
|
3536
|
-
"internalType": "uint256",
|
|
3537
|
-
"name": "releaseTime",
|
|
3538
|
-
"type": "uint256"
|
|
3539
|
-
},
|
|
3540
|
-
{
|
|
3541
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3542
|
-
"name": "status",
|
|
3543
|
-
"type": "uint8"
|
|
3544
|
-
},
|
|
3545
|
-
{
|
|
3546
|
-
"components": [
|
|
3547
|
-
{
|
|
3548
|
-
"internalType": "address",
|
|
3549
|
-
"name": "requester",
|
|
3550
|
-
"type": "address"
|
|
3551
|
-
},
|
|
3552
|
-
{
|
|
3553
|
-
"internalType": "address",
|
|
3554
|
-
"name": "target",
|
|
3555
|
-
"type": "address"
|
|
3556
|
-
},
|
|
3557
|
-
{
|
|
3558
|
-
"internalType": "uint256",
|
|
3559
|
-
"name": "value",
|
|
3560
|
-
"type": "uint256"
|
|
3561
|
-
},
|
|
3562
|
-
{
|
|
3563
|
-
"internalType": "uint256",
|
|
3564
|
-
"name": "gasLimit",
|
|
3565
|
-
"type": "uint256"
|
|
3566
|
-
},
|
|
3567
|
-
{
|
|
3568
|
-
"internalType": "bytes32",
|
|
3569
|
-
"name": "operationType",
|
|
3570
|
-
"type": "bytes32"
|
|
3571
|
-
},
|
|
3572
|
-
{
|
|
3573
|
-
"internalType": "bytes4",
|
|
3574
|
-
"name": "executionSelector",
|
|
3575
|
-
"type": "bytes4"
|
|
3576
|
-
},
|
|
3577
|
-
{
|
|
3578
|
-
"internalType": "bytes",
|
|
3579
|
-
"name": "executionParams",
|
|
3580
|
-
"type": "bytes"
|
|
3581
|
-
}
|
|
3582
|
-
],
|
|
3583
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3584
|
-
"name": "params",
|
|
3585
|
-
"type": "tuple"
|
|
3586
|
-
},
|
|
3587
|
-
{
|
|
3588
|
-
"internalType": "bytes32",
|
|
3589
|
-
"name": "message",
|
|
3590
|
-
"type": "bytes32"
|
|
3591
|
-
},
|
|
3592
|
-
{
|
|
3593
|
-
"internalType": "bytes",
|
|
3594
|
-
"name": "result",
|
|
3595
|
-
"type": "bytes"
|
|
3596
|
-
},
|
|
3597
|
-
{
|
|
3598
|
-
"components": [
|
|
3599
|
-
{
|
|
3600
|
-
"internalType": "address",
|
|
3601
|
-
"name": "recipient",
|
|
3602
|
-
"type": "address"
|
|
3603
|
-
},
|
|
3604
|
-
{
|
|
3605
|
-
"internalType": "uint256",
|
|
3606
|
-
"name": "nativeTokenAmount",
|
|
3607
|
-
"type": "uint256"
|
|
3608
|
-
},
|
|
3609
|
-
{
|
|
3610
|
-
"internalType": "address",
|
|
3611
|
-
"name": "erc20TokenAddress",
|
|
3612
|
-
"type": "address"
|
|
3613
|
-
},
|
|
3614
|
-
{
|
|
3615
|
-
"internalType": "uint256",
|
|
3616
|
-
"name": "erc20TokenAmount",
|
|
3617
|
-
"type": "uint256"
|
|
3618
|
-
}
|
|
3619
|
-
],
|
|
3620
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3621
|
-
"name": "payment",
|
|
3622
|
-
"type": "tuple"
|
|
3623
|
-
}
|
|
3624
|
-
],
|
|
3625
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3626
|
-
"name": "",
|
|
3627
|
-
"type": "tuple"
|
|
3628
|
-
}
|
|
3629
|
-
],
|
|
3630
|
-
"stateMutability": "nonpayable",
|
|
3631
|
-
"type": "function"
|
|
3632
|
-
},
|
|
3633
|
-
{
|
|
3634
|
-
"inputs": [
|
|
3635
|
-
{
|
|
3636
|
-
"internalType": "uint256",
|
|
3637
|
-
"name": "txId",
|
|
3638
|
-
"type": "uint256"
|
|
3639
|
-
}
|
|
3640
|
-
],
|
|
3641
|
-
"name": "updateBroadcasterDelayedApproval",
|
|
3642
|
-
"outputs": [
|
|
3643
|
-
{
|
|
3644
|
-
"components": [
|
|
3645
|
-
{
|
|
3646
|
-
"internalType": "uint256",
|
|
3647
|
-
"name": "txId",
|
|
3648
|
-
"type": "uint256"
|
|
3649
|
-
},
|
|
3650
|
-
{
|
|
3651
|
-
"internalType": "uint256",
|
|
3652
|
-
"name": "releaseTime",
|
|
3653
|
-
"type": "uint256"
|
|
3654
|
-
},
|
|
3655
|
-
{
|
|
3656
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3657
|
-
"name": "status",
|
|
3658
|
-
"type": "uint8"
|
|
3659
|
-
},
|
|
3660
|
-
{
|
|
3661
|
-
"components": [
|
|
3662
|
-
{
|
|
3663
|
-
"internalType": "address",
|
|
3664
|
-
"name": "requester",
|
|
3665
|
-
"type": "address"
|
|
3666
|
-
},
|
|
3667
|
-
{
|
|
3668
|
-
"internalType": "address",
|
|
3669
|
-
"name": "target",
|
|
3670
|
-
"type": "address"
|
|
2469
|
+
{
|
|
2470
|
+
"internalType": "enum EngineBlox.TxAction",
|
|
2471
|
+
"name": "action",
|
|
2472
|
+
"type": "uint8"
|
|
3671
2473
|
},
|
|
3672
2474
|
{
|
|
3673
2475
|
"internalType": "uint256",
|
|
3674
|
-
"name": "
|
|
2476
|
+
"name": "deadline",
|
|
3675
2477
|
"type": "uint256"
|
|
3676
2478
|
},
|
|
3677
2479
|
{
|
|
3678
2480
|
"internalType": "uint256",
|
|
3679
|
-
"name": "
|
|
2481
|
+
"name": "maxGasPrice",
|
|
3680
2482
|
"type": "uint256"
|
|
3681
2483
|
},
|
|
3682
2484
|
{
|
|
3683
|
-
"internalType": "
|
|
3684
|
-
"name": "
|
|
3685
|
-
"type": "
|
|
3686
|
-
},
|
|
3687
|
-
{
|
|
3688
|
-
"internalType": "bytes4",
|
|
3689
|
-
"name": "executionSelector",
|
|
3690
|
-
"type": "bytes4"
|
|
3691
|
-
},
|
|
3692
|
-
{
|
|
3693
|
-
"internalType": "bytes",
|
|
3694
|
-
"name": "executionParams",
|
|
3695
|
-
"type": "bytes"
|
|
2485
|
+
"internalType": "address",
|
|
2486
|
+
"name": "signer",
|
|
2487
|
+
"type": "address"
|
|
3696
2488
|
}
|
|
3697
2489
|
],
|
|
3698
|
-
"internalType": "struct EngineBlox.
|
|
2490
|
+
"internalType": "struct EngineBlox.MetaTxParams",
|
|
3699
2491
|
"name": "params",
|
|
3700
2492
|
"type": "tuple"
|
|
3701
2493
|
},
|
|
@@ -3706,157 +2498,250 @@
|
|
|
3706
2498
|
},
|
|
3707
2499
|
{
|
|
3708
2500
|
"internalType": "bytes",
|
|
3709
|
-
"name": "
|
|
2501
|
+
"name": "signature",
|
|
3710
2502
|
"type": "bytes"
|
|
3711
2503
|
},
|
|
3712
2504
|
{
|
|
3713
|
-
"
|
|
3714
|
-
|
|
3715
|
-
|
|
3716
|
-
"name": "recipient",
|
|
3717
|
-
"type": "address"
|
|
3718
|
-
},
|
|
3719
|
-
{
|
|
3720
|
-
"internalType": "uint256",
|
|
3721
|
-
"name": "nativeTokenAmount",
|
|
3722
|
-
"type": "uint256"
|
|
3723
|
-
},
|
|
3724
|
-
{
|
|
3725
|
-
"internalType": "address",
|
|
3726
|
-
"name": "erc20TokenAddress",
|
|
3727
|
-
"type": "address"
|
|
3728
|
-
},
|
|
3729
|
-
{
|
|
3730
|
-
"internalType": "uint256",
|
|
3731
|
-
"name": "erc20TokenAmount",
|
|
3732
|
-
"type": "uint256"
|
|
3733
|
-
}
|
|
3734
|
-
],
|
|
3735
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3736
|
-
"name": "payment",
|
|
3737
|
-
"type": "tuple"
|
|
2505
|
+
"internalType": "bytes",
|
|
2506
|
+
"name": "data",
|
|
2507
|
+
"type": "bytes"
|
|
3738
2508
|
}
|
|
3739
2509
|
],
|
|
3740
|
-
"internalType": "struct EngineBlox.
|
|
3741
|
-
"name": "",
|
|
2510
|
+
"internalType": "struct EngineBlox.MetaTransaction",
|
|
2511
|
+
"name": "metaTx",
|
|
3742
2512
|
"type": "tuple"
|
|
3743
2513
|
}
|
|
3744
2514
|
],
|
|
2515
|
+
"name": "updateBroadcasterApprovalWithMetaTx",
|
|
2516
|
+
"outputs": [
|
|
2517
|
+
{
|
|
2518
|
+
"internalType": "uint256",
|
|
2519
|
+
"name": "",
|
|
2520
|
+
"type": "uint256"
|
|
2521
|
+
}
|
|
2522
|
+
],
|
|
3745
2523
|
"stateMutability": "nonpayable",
|
|
3746
2524
|
"type": "function"
|
|
3747
2525
|
},
|
|
3748
2526
|
{
|
|
3749
2527
|
"inputs": [
|
|
3750
2528
|
{
|
|
3751
|
-
"internalType": "
|
|
3752
|
-
"name": "
|
|
3753
|
-
"type": "
|
|
2529
|
+
"internalType": "uint256",
|
|
2530
|
+
"name": "txId",
|
|
2531
|
+
"type": "uint256"
|
|
3754
2532
|
}
|
|
3755
2533
|
],
|
|
3756
|
-
"name": "
|
|
2534
|
+
"name": "updateBroadcasterCancellation",
|
|
3757
2535
|
"outputs": [
|
|
2536
|
+
{
|
|
2537
|
+
"internalType": "uint256",
|
|
2538
|
+
"name": "",
|
|
2539
|
+
"type": "uint256"
|
|
2540
|
+
}
|
|
2541
|
+
],
|
|
2542
|
+
"stateMutability": "nonpayable",
|
|
2543
|
+
"type": "function"
|
|
2544
|
+
},
|
|
2545
|
+
{
|
|
2546
|
+
"inputs": [
|
|
3758
2547
|
{
|
|
3759
2548
|
"components": [
|
|
3760
|
-
{
|
|
3761
|
-
"internalType": "uint256",
|
|
3762
|
-
"name": "txId",
|
|
3763
|
-
"type": "uint256"
|
|
3764
|
-
},
|
|
3765
|
-
{
|
|
3766
|
-
"internalType": "uint256",
|
|
3767
|
-
"name": "releaseTime",
|
|
3768
|
-
"type": "uint256"
|
|
3769
|
-
},
|
|
3770
|
-
{
|
|
3771
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3772
|
-
"name": "status",
|
|
3773
|
-
"type": "uint8"
|
|
3774
|
-
},
|
|
3775
2549
|
{
|
|
3776
2550
|
"components": [
|
|
3777
|
-
{
|
|
3778
|
-
"internalType": "address",
|
|
3779
|
-
"name": "requester",
|
|
3780
|
-
"type": "address"
|
|
3781
|
-
},
|
|
3782
|
-
{
|
|
3783
|
-
"internalType": "address",
|
|
3784
|
-
"name": "target",
|
|
3785
|
-
"type": "address"
|
|
3786
|
-
},
|
|
3787
2551
|
{
|
|
3788
2552
|
"internalType": "uint256",
|
|
3789
|
-
"name": "
|
|
2553
|
+
"name": "txId",
|
|
3790
2554
|
"type": "uint256"
|
|
3791
2555
|
},
|
|
3792
2556
|
{
|
|
3793
2557
|
"internalType": "uint256",
|
|
3794
|
-
"name": "
|
|
2558
|
+
"name": "releaseTime",
|
|
3795
2559
|
"type": "uint256"
|
|
3796
2560
|
},
|
|
3797
2561
|
{
|
|
3798
|
-
"internalType": "
|
|
3799
|
-
"name": "
|
|
3800
|
-
"type": "
|
|
2562
|
+
"internalType": "enum EngineBlox.TxStatus",
|
|
2563
|
+
"name": "status",
|
|
2564
|
+
"type": "uint8"
|
|
3801
2565
|
},
|
|
3802
2566
|
{
|
|
3803
|
-
"
|
|
3804
|
-
|
|
3805
|
-
|
|
2567
|
+
"components": [
|
|
2568
|
+
{
|
|
2569
|
+
"internalType": "address",
|
|
2570
|
+
"name": "requester",
|
|
2571
|
+
"type": "address"
|
|
2572
|
+
},
|
|
2573
|
+
{
|
|
2574
|
+
"internalType": "address",
|
|
2575
|
+
"name": "target",
|
|
2576
|
+
"type": "address"
|
|
2577
|
+
},
|
|
2578
|
+
{
|
|
2579
|
+
"internalType": "uint256",
|
|
2580
|
+
"name": "value",
|
|
2581
|
+
"type": "uint256"
|
|
2582
|
+
},
|
|
2583
|
+
{
|
|
2584
|
+
"internalType": "uint256",
|
|
2585
|
+
"name": "gasLimit",
|
|
2586
|
+
"type": "uint256"
|
|
2587
|
+
},
|
|
2588
|
+
{
|
|
2589
|
+
"internalType": "bytes32",
|
|
2590
|
+
"name": "operationType",
|
|
2591
|
+
"type": "bytes32"
|
|
2592
|
+
},
|
|
2593
|
+
{
|
|
2594
|
+
"internalType": "bytes4",
|
|
2595
|
+
"name": "executionSelector",
|
|
2596
|
+
"type": "bytes4"
|
|
2597
|
+
},
|
|
2598
|
+
{
|
|
2599
|
+
"internalType": "bytes",
|
|
2600
|
+
"name": "executionParams",
|
|
2601
|
+
"type": "bytes"
|
|
2602
|
+
}
|
|
2603
|
+
],
|
|
2604
|
+
"internalType": "struct EngineBlox.TxParams",
|
|
2605
|
+
"name": "params",
|
|
2606
|
+
"type": "tuple"
|
|
2607
|
+
},
|
|
2608
|
+
{
|
|
2609
|
+
"internalType": "bytes32",
|
|
2610
|
+
"name": "message",
|
|
2611
|
+
"type": "bytes32"
|
|
3806
2612
|
},
|
|
3807
2613
|
{
|
|
3808
2614
|
"internalType": "bytes",
|
|
3809
|
-
"name": "
|
|
2615
|
+
"name": "result",
|
|
3810
2616
|
"type": "bytes"
|
|
2617
|
+
},
|
|
2618
|
+
{
|
|
2619
|
+
"components": [
|
|
2620
|
+
{
|
|
2621
|
+
"internalType": "address",
|
|
2622
|
+
"name": "recipient",
|
|
2623
|
+
"type": "address"
|
|
2624
|
+
},
|
|
2625
|
+
{
|
|
2626
|
+
"internalType": "uint256",
|
|
2627
|
+
"name": "nativeTokenAmount",
|
|
2628
|
+
"type": "uint256"
|
|
2629
|
+
},
|
|
2630
|
+
{
|
|
2631
|
+
"internalType": "address",
|
|
2632
|
+
"name": "erc20TokenAddress",
|
|
2633
|
+
"type": "address"
|
|
2634
|
+
},
|
|
2635
|
+
{
|
|
2636
|
+
"internalType": "uint256",
|
|
2637
|
+
"name": "erc20TokenAmount",
|
|
2638
|
+
"type": "uint256"
|
|
2639
|
+
}
|
|
2640
|
+
],
|
|
2641
|
+
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2642
|
+
"name": "payment",
|
|
2643
|
+
"type": "tuple"
|
|
3811
2644
|
}
|
|
3812
2645
|
],
|
|
3813
|
-
"internalType": "struct EngineBlox.
|
|
3814
|
-
"name": "
|
|
2646
|
+
"internalType": "struct EngineBlox.TxRecord",
|
|
2647
|
+
"name": "txRecord",
|
|
3815
2648
|
"type": "tuple"
|
|
3816
2649
|
},
|
|
3817
|
-
{
|
|
3818
|
-
"internalType": "bytes32",
|
|
3819
|
-
"name": "message",
|
|
3820
|
-
"type": "bytes32"
|
|
3821
|
-
},
|
|
3822
|
-
{
|
|
3823
|
-
"internalType": "bytes",
|
|
3824
|
-
"name": "result",
|
|
3825
|
-
"type": "bytes"
|
|
3826
|
-
},
|
|
3827
2650
|
{
|
|
3828
2651
|
"components": [
|
|
3829
2652
|
{
|
|
3830
|
-
"internalType": "
|
|
3831
|
-
"name": "
|
|
3832
|
-
"type": "
|
|
2653
|
+
"internalType": "uint256",
|
|
2654
|
+
"name": "chainId",
|
|
2655
|
+
"type": "uint256"
|
|
3833
2656
|
},
|
|
3834
2657
|
{
|
|
3835
2658
|
"internalType": "uint256",
|
|
3836
|
-
"name": "
|
|
2659
|
+
"name": "nonce",
|
|
3837
2660
|
"type": "uint256"
|
|
3838
2661
|
},
|
|
3839
2662
|
{
|
|
3840
2663
|
"internalType": "address",
|
|
3841
|
-
"name": "
|
|
2664
|
+
"name": "handlerContract",
|
|
3842
2665
|
"type": "address"
|
|
3843
2666
|
},
|
|
2667
|
+
{
|
|
2668
|
+
"internalType": "bytes4",
|
|
2669
|
+
"name": "handlerSelector",
|
|
2670
|
+
"type": "bytes4"
|
|
2671
|
+
},
|
|
2672
|
+
{
|
|
2673
|
+
"internalType": "enum EngineBlox.TxAction",
|
|
2674
|
+
"name": "action",
|
|
2675
|
+
"type": "uint8"
|
|
2676
|
+
},
|
|
3844
2677
|
{
|
|
3845
2678
|
"internalType": "uint256",
|
|
3846
|
-
"name": "
|
|
2679
|
+
"name": "deadline",
|
|
2680
|
+
"type": "uint256"
|
|
2681
|
+
},
|
|
2682
|
+
{
|
|
2683
|
+
"internalType": "uint256",
|
|
2684
|
+
"name": "maxGasPrice",
|
|
3847
2685
|
"type": "uint256"
|
|
2686
|
+
},
|
|
2687
|
+
{
|
|
2688
|
+
"internalType": "address",
|
|
2689
|
+
"name": "signer",
|
|
2690
|
+
"type": "address"
|
|
3848
2691
|
}
|
|
3849
2692
|
],
|
|
3850
|
-
"internalType": "struct EngineBlox.
|
|
3851
|
-
"name": "
|
|
2693
|
+
"internalType": "struct EngineBlox.MetaTxParams",
|
|
2694
|
+
"name": "params",
|
|
3852
2695
|
"type": "tuple"
|
|
2696
|
+
},
|
|
2697
|
+
{
|
|
2698
|
+
"internalType": "bytes32",
|
|
2699
|
+
"name": "message",
|
|
2700
|
+
"type": "bytes32"
|
|
2701
|
+
},
|
|
2702
|
+
{
|
|
2703
|
+
"internalType": "bytes",
|
|
2704
|
+
"name": "signature",
|
|
2705
|
+
"type": "bytes"
|
|
2706
|
+
},
|
|
2707
|
+
{
|
|
2708
|
+
"internalType": "bytes",
|
|
2709
|
+
"name": "data",
|
|
2710
|
+
"type": "bytes"
|
|
3853
2711
|
}
|
|
3854
2712
|
],
|
|
3855
|
-
"internalType": "struct EngineBlox.
|
|
3856
|
-
"name": "",
|
|
2713
|
+
"internalType": "struct EngineBlox.MetaTransaction",
|
|
2714
|
+
"name": "metaTx",
|
|
3857
2715
|
"type": "tuple"
|
|
3858
2716
|
}
|
|
3859
2717
|
],
|
|
2718
|
+
"name": "updateBroadcasterCancellationWithMetaTx",
|
|
2719
|
+
"outputs": [
|
|
2720
|
+
{
|
|
2721
|
+
"internalType": "uint256",
|
|
2722
|
+
"name": "",
|
|
2723
|
+
"type": "uint256"
|
|
2724
|
+
}
|
|
2725
|
+
],
|
|
2726
|
+
"stateMutability": "nonpayable",
|
|
2727
|
+
"type": "function"
|
|
2728
|
+
},
|
|
2729
|
+
{
|
|
2730
|
+
"inputs": [
|
|
2731
|
+
{
|
|
2732
|
+
"internalType": "uint256",
|
|
2733
|
+
"name": "txId",
|
|
2734
|
+
"type": "uint256"
|
|
2735
|
+
}
|
|
2736
|
+
],
|
|
2737
|
+
"name": "updateBroadcasterDelayedApproval",
|
|
2738
|
+
"outputs": [
|
|
2739
|
+
{
|
|
2740
|
+
"internalType": "uint256",
|
|
2741
|
+
"name": "",
|
|
2742
|
+
"type": "uint256"
|
|
2743
|
+
}
|
|
2744
|
+
],
|
|
3860
2745
|
"stateMutability": "nonpayable",
|
|
3861
2746
|
"type": "function"
|
|
3862
2747
|
},
|
|
@@ -3864,19 +2749,24 @@
|
|
|
3864
2749
|
"inputs": [
|
|
3865
2750
|
{
|
|
3866
2751
|
"internalType": "address",
|
|
3867
|
-
"name": "
|
|
2752
|
+
"name": "newBroadcaster",
|
|
3868
2753
|
"type": "address"
|
|
2754
|
+
},
|
|
2755
|
+
{
|
|
2756
|
+
"internalType": "uint256",
|
|
2757
|
+
"name": "location",
|
|
2758
|
+
"type": "uint256"
|
|
3869
2759
|
}
|
|
3870
2760
|
],
|
|
3871
|
-
"name": "
|
|
2761
|
+
"name": "updateBroadcasterRequest",
|
|
3872
2762
|
"outputs": [
|
|
3873
2763
|
{
|
|
3874
|
-
"internalType": "
|
|
3875
|
-
"name": "",
|
|
3876
|
-
"type": "
|
|
2764
|
+
"internalType": "uint256",
|
|
2765
|
+
"name": "txId",
|
|
2766
|
+
"type": "uint256"
|
|
3877
2767
|
}
|
|
3878
2768
|
],
|
|
3879
|
-
"stateMutability": "
|
|
2769
|
+
"stateMutability": "nonpayable",
|
|
3880
2770
|
"type": "function"
|
|
3881
2771
|
},
|
|
3882
2772
|
{
|
|
@@ -4054,128 +2944,13 @@
|
|
|
4054
2944
|
],
|
|
4055
2945
|
"name": "updateRecoveryRequestAndApprove",
|
|
4056
2946
|
"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"
|
|
4080
|
-
},
|
|
4081
|
-
{
|
|
4082
|
-
"internalType": "address",
|
|
4083
|
-
"name": "target",
|
|
4084
|
-
"type": "address"
|
|
4085
|
-
},
|
|
4086
|
-
{
|
|
4087
|
-
"internalType": "uint256",
|
|
4088
|
-
"name": "value",
|
|
4089
|
-
"type": "uint256"
|
|
4090
|
-
},
|
|
4091
|
-
{
|
|
4092
|
-
"internalType": "uint256",
|
|
4093
|
-
"name": "gasLimit",
|
|
4094
|
-
"type": "uint256"
|
|
4095
|
-
},
|
|
4096
|
-
{
|
|
4097
|
-
"internalType": "bytes32",
|
|
4098
|
-
"name": "operationType",
|
|
4099
|
-
"type": "bytes32"
|
|
4100
|
-
},
|
|
4101
|
-
{
|
|
4102
|
-
"internalType": "bytes4",
|
|
4103
|
-
"name": "executionSelector",
|
|
4104
|
-
"type": "bytes4"
|
|
4105
|
-
},
|
|
4106
|
-
{
|
|
4107
|
-
"internalType": "bytes",
|
|
4108
|
-
"name": "executionParams",
|
|
4109
|
-
"type": "bytes"
|
|
4110
|
-
}
|
|
4111
|
-
],
|
|
4112
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
4113
|
-
"name": "params",
|
|
4114
|
-
"type": "tuple"
|
|
4115
|
-
},
|
|
4116
|
-
{
|
|
4117
|
-
"internalType": "bytes32",
|
|
4118
|
-
"name": "message",
|
|
4119
|
-
"type": "bytes32"
|
|
4120
|
-
},
|
|
4121
|
-
{
|
|
4122
|
-
"internalType": "bytes",
|
|
4123
|
-
"name": "result",
|
|
4124
|
-
"type": "bytes"
|
|
4125
|
-
},
|
|
4126
|
-
{
|
|
4127
|
-
"components": [
|
|
4128
|
-
{
|
|
4129
|
-
"internalType": "address",
|
|
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"
|
|
4152
|
-
}
|
|
4153
|
-
],
|
|
4154
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
4155
|
-
"name": "",
|
|
4156
|
-
"type": "tuple"
|
|
4157
|
-
}
|
|
4158
|
-
],
|
|
4159
|
-
"stateMutability": "nonpayable",
|
|
4160
|
-
"type": "function"
|
|
4161
|
-
},
|
|
4162
|
-
{
|
|
4163
|
-
"inputs": [
|
|
4164
2947
|
{
|
|
4165
2948
|
"internalType": "uint256",
|
|
4166
|
-
"name": "newTimeLockPeriodSec",
|
|
4167
|
-
"type": "uint256"
|
|
4168
|
-
}
|
|
4169
|
-
],
|
|
4170
|
-
"name": "updateTimeLockExecutionParams",
|
|
4171
|
-
"outputs": [
|
|
4172
|
-
{
|
|
4173
|
-
"internalType": "bytes",
|
|
4174
2949
|
"name": "",
|
|
4175
|
-
"type": "
|
|
2950
|
+
"type": "uint256"
|
|
4176
2951
|
}
|
|
4177
2952
|
],
|
|
4178
|
-
"stateMutability": "
|
|
2953
|
+
"stateMutability": "nonpayable",
|
|
4179
2954
|
"type": "function"
|
|
4180
2955
|
},
|
|
4181
2956
|
{
|
|
@@ -4317,98 +3092,16 @@
|
|
|
4317
3092
|
},
|
|
4318
3093
|
{
|
|
4319
3094
|
"internalType": "uint256",
|
|
4320
|
-
"name": "maxGasPrice",
|
|
4321
|
-
"type": "uint256"
|
|
4322
|
-
},
|
|
4323
|
-
{
|
|
4324
|
-
"internalType": "address",
|
|
4325
|
-
"name": "signer",
|
|
4326
|
-
"type": "address"
|
|
4327
|
-
}
|
|
4328
|
-
],
|
|
4329
|
-
"internalType": "struct EngineBlox.MetaTxParams",
|
|
4330
|
-
"name": "params",
|
|
4331
|
-
"type": "tuple"
|
|
4332
|
-
},
|
|
4333
|
-
{
|
|
4334
|
-
"internalType": "bytes32",
|
|
4335
|
-
"name": "message",
|
|
4336
|
-
"type": "bytes32"
|
|
4337
|
-
},
|
|
4338
|
-
{
|
|
4339
|
-
"internalType": "bytes",
|
|
4340
|
-
"name": "signature",
|
|
4341
|
-
"type": "bytes"
|
|
4342
|
-
},
|
|
4343
|
-
{
|
|
4344
|
-
"internalType": "bytes",
|
|
4345
|
-
"name": "data",
|
|
4346
|
-
"type": "bytes"
|
|
4347
|
-
}
|
|
4348
|
-
],
|
|
4349
|
-
"internalType": "struct EngineBlox.MetaTransaction",
|
|
4350
|
-
"name": "metaTx",
|
|
4351
|
-
"type": "tuple"
|
|
4352
|
-
}
|
|
4353
|
-
],
|
|
4354
|
-
"name": "updateTimeLockRequestAndApprove",
|
|
4355
|
-
"outputs": [
|
|
4356
|
-
{
|
|
4357
|
-
"components": [
|
|
4358
|
-
{
|
|
4359
|
-
"internalType": "uint256",
|
|
4360
|
-
"name": "txId",
|
|
4361
|
-
"type": "uint256"
|
|
4362
|
-
},
|
|
4363
|
-
{
|
|
4364
|
-
"internalType": "uint256",
|
|
4365
|
-
"name": "releaseTime",
|
|
4366
|
-
"type": "uint256"
|
|
4367
|
-
},
|
|
4368
|
-
{
|
|
4369
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4370
|
-
"name": "status",
|
|
4371
|
-
"type": "uint8"
|
|
4372
|
-
},
|
|
4373
|
-
{
|
|
4374
|
-
"components": [
|
|
4375
|
-
{
|
|
4376
|
-
"internalType": "address",
|
|
4377
|
-
"name": "requester",
|
|
4378
|
-
"type": "address"
|
|
4379
|
-
},
|
|
4380
|
-
{
|
|
4381
|
-
"internalType": "address",
|
|
4382
|
-
"name": "target",
|
|
4383
|
-
"type": "address"
|
|
4384
|
-
},
|
|
4385
|
-
{
|
|
4386
|
-
"internalType": "uint256",
|
|
4387
|
-
"name": "value",
|
|
4388
|
-
"type": "uint256"
|
|
4389
|
-
},
|
|
4390
|
-
{
|
|
4391
|
-
"internalType": "uint256",
|
|
4392
|
-
"name": "gasLimit",
|
|
4393
|
-
"type": "uint256"
|
|
4394
|
-
},
|
|
4395
|
-
{
|
|
4396
|
-
"internalType": "bytes32",
|
|
4397
|
-
"name": "operationType",
|
|
4398
|
-
"type": "bytes32"
|
|
4399
|
-
},
|
|
4400
|
-
{
|
|
4401
|
-
"internalType": "bytes4",
|
|
4402
|
-
"name": "executionSelector",
|
|
4403
|
-
"type": "bytes4"
|
|
3095
|
+
"name": "maxGasPrice",
|
|
3096
|
+
"type": "uint256"
|
|
4404
3097
|
},
|
|
4405
3098
|
{
|
|
4406
|
-
"internalType": "
|
|
4407
|
-
"name": "
|
|
4408
|
-
"type": "
|
|
3099
|
+
"internalType": "address",
|
|
3100
|
+
"name": "signer",
|
|
3101
|
+
"type": "address"
|
|
4409
3102
|
}
|
|
4410
3103
|
],
|
|
4411
|
-
"internalType": "struct EngineBlox.
|
|
3104
|
+
"internalType": "struct EngineBlox.MetaTxParams",
|
|
4412
3105
|
"name": "params",
|
|
4413
3106
|
"type": "tuple"
|
|
4414
3107
|
},
|
|
@@ -4419,42 +3112,28 @@
|
|
|
4419
3112
|
},
|
|
4420
3113
|
{
|
|
4421
3114
|
"internalType": "bytes",
|
|
4422
|
-
"name": "
|
|
3115
|
+
"name": "signature",
|
|
4423
3116
|
"type": "bytes"
|
|
4424
3117
|
},
|
|
4425
3118
|
{
|
|
4426
|
-
"
|
|
4427
|
-
|
|
4428
|
-
|
|
4429
|
-
"name": "recipient",
|
|
4430
|
-
"type": "address"
|
|
4431
|
-
},
|
|
4432
|
-
{
|
|
4433
|
-
"internalType": "uint256",
|
|
4434
|
-
"name": "nativeTokenAmount",
|
|
4435
|
-
"type": "uint256"
|
|
4436
|
-
},
|
|
4437
|
-
{
|
|
4438
|
-
"internalType": "address",
|
|
4439
|
-
"name": "erc20TokenAddress",
|
|
4440
|
-
"type": "address"
|
|
4441
|
-
},
|
|
4442
|
-
{
|
|
4443
|
-
"internalType": "uint256",
|
|
4444
|
-
"name": "erc20TokenAmount",
|
|
4445
|
-
"type": "uint256"
|
|
4446
|
-
}
|
|
4447
|
-
],
|
|
4448
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4449
|
-
"name": "payment",
|
|
4450
|
-
"type": "tuple"
|
|
3119
|
+
"internalType": "bytes",
|
|
3120
|
+
"name": "data",
|
|
3121
|
+
"type": "bytes"
|
|
4451
3122
|
}
|
|
4452
3123
|
],
|
|
4453
|
-
"internalType": "struct EngineBlox.
|
|
4454
|
-
"name": "",
|
|
3124
|
+
"internalType": "struct EngineBlox.MetaTransaction",
|
|
3125
|
+
"name": "metaTx",
|
|
4455
3126
|
"type": "tuple"
|
|
4456
3127
|
}
|
|
4457
3128
|
],
|
|
3129
|
+
"name": "updateTimeLockRequestAndApprove",
|
|
3130
|
+
"outputs": [
|
|
3131
|
+
{
|
|
3132
|
+
"internalType": "uint256",
|
|
3133
|
+
"name": "",
|
|
3134
|
+
"type": "uint256"
|
|
3135
|
+
}
|
|
3136
|
+
],
|
|
4458
3137
|
"stateMutability": "nonpayable",
|
|
4459
3138
|
"type": "function"
|
|
4460
3139
|
},
|
|
@@ -4710,105 +3389,9 @@
|
|
|
4710
3389
|
"name": "mintWithMetaTx",
|
|
4711
3390
|
"outputs": [
|
|
4712
3391
|
{
|
|
4713
|
-
"
|
|
4714
|
-
|
|
4715
|
-
|
|
4716
|
-
"name": "txId",
|
|
4717
|
-
"type": "uint256"
|
|
4718
|
-
},
|
|
4719
|
-
{
|
|
4720
|
-
"internalType": "uint256",
|
|
4721
|
-
"name": "releaseTime",
|
|
4722
|
-
"type": "uint256"
|
|
4723
|
-
},
|
|
4724
|
-
{
|
|
4725
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4726
|
-
"name": "status",
|
|
4727
|
-
"type": "uint8"
|
|
4728
|
-
},
|
|
4729
|
-
{
|
|
4730
|
-
"components": [
|
|
4731
|
-
{
|
|
4732
|
-
"internalType": "address",
|
|
4733
|
-
"name": "requester",
|
|
4734
|
-
"type": "address"
|
|
4735
|
-
},
|
|
4736
|
-
{
|
|
4737
|
-
"internalType": "address",
|
|
4738
|
-
"name": "target",
|
|
4739
|
-
"type": "address"
|
|
4740
|
-
},
|
|
4741
|
-
{
|
|
4742
|
-
"internalType": "uint256",
|
|
4743
|
-
"name": "value",
|
|
4744
|
-
"type": "uint256"
|
|
4745
|
-
},
|
|
4746
|
-
{
|
|
4747
|
-
"internalType": "uint256",
|
|
4748
|
-
"name": "gasLimit",
|
|
4749
|
-
"type": "uint256"
|
|
4750
|
-
},
|
|
4751
|
-
{
|
|
4752
|
-
"internalType": "bytes32",
|
|
4753
|
-
"name": "operationType",
|
|
4754
|
-
"type": "bytes32"
|
|
4755
|
-
},
|
|
4756
|
-
{
|
|
4757
|
-
"internalType": "bytes4",
|
|
4758
|
-
"name": "executionSelector",
|
|
4759
|
-
"type": "bytes4"
|
|
4760
|
-
},
|
|
4761
|
-
{
|
|
4762
|
-
"internalType": "bytes",
|
|
4763
|
-
"name": "executionParams",
|
|
4764
|
-
"type": "bytes"
|
|
4765
|
-
}
|
|
4766
|
-
],
|
|
4767
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
4768
|
-
"name": "params",
|
|
4769
|
-
"type": "tuple"
|
|
4770
|
-
},
|
|
4771
|
-
{
|
|
4772
|
-
"internalType": "bytes32",
|
|
4773
|
-
"name": "message",
|
|
4774
|
-
"type": "bytes32"
|
|
4775
|
-
},
|
|
4776
|
-
{
|
|
4777
|
-
"internalType": "bytes",
|
|
4778
|
-
"name": "result",
|
|
4779
|
-
"type": "bytes"
|
|
4780
|
-
},
|
|
4781
|
-
{
|
|
4782
|
-
"components": [
|
|
4783
|
-
{
|
|
4784
|
-
"internalType": "address",
|
|
4785
|
-
"name": "recipient",
|
|
4786
|
-
"type": "address"
|
|
4787
|
-
},
|
|
4788
|
-
{
|
|
4789
|
-
"internalType": "uint256",
|
|
4790
|
-
"name": "nativeTokenAmount",
|
|
4791
|
-
"type": "uint256"
|
|
4792
|
-
},
|
|
4793
|
-
{
|
|
4794
|
-
"internalType": "address",
|
|
4795
|
-
"name": "erc20TokenAddress",
|
|
4796
|
-
"type": "address"
|
|
4797
|
-
},
|
|
4798
|
-
{
|
|
4799
|
-
"internalType": "uint256",
|
|
4800
|
-
"name": "erc20TokenAmount",
|
|
4801
|
-
"type": "uint256"
|
|
4802
|
-
}
|
|
4803
|
-
],
|
|
4804
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4805
|
-
"name": "payment",
|
|
4806
|
-
"type": "tuple"
|
|
4807
|
-
}
|
|
4808
|
-
],
|
|
4809
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
4810
|
-
"name": "",
|
|
4811
|
-
"type": "tuple"
|
|
3392
|
+
"internalType": "uint256",
|
|
3393
|
+
"name": "txId",
|
|
3394
|
+
"type": "uint256"
|
|
4812
3395
|
}
|
|
4813
3396
|
],
|
|
4814
3397
|
"stateMutability": "nonpayable",
|
|
@@ -4990,105 +3573,9 @@
|
|
|
4990
3573
|
"name": "burnWithMetaTx",
|
|
4991
3574
|
"outputs": [
|
|
4992
3575
|
{
|
|
4993
|
-
"
|
|
4994
|
-
|
|
4995
|
-
|
|
4996
|
-
"name": "txId",
|
|
4997
|
-
"type": "uint256"
|
|
4998
|
-
},
|
|
4999
|
-
{
|
|
5000
|
-
"internalType": "uint256",
|
|
5001
|
-
"name": "releaseTime",
|
|
5002
|
-
"type": "uint256"
|
|
5003
|
-
},
|
|
5004
|
-
{
|
|
5005
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
5006
|
-
"name": "status",
|
|
5007
|
-
"type": "uint8"
|
|
5008
|
-
},
|
|
5009
|
-
{
|
|
5010
|
-
"components": [
|
|
5011
|
-
{
|
|
5012
|
-
"internalType": "address",
|
|
5013
|
-
"name": "requester",
|
|
5014
|
-
"type": "address"
|
|
5015
|
-
},
|
|
5016
|
-
{
|
|
5017
|
-
"internalType": "address",
|
|
5018
|
-
"name": "target",
|
|
5019
|
-
"type": "address"
|
|
5020
|
-
},
|
|
5021
|
-
{
|
|
5022
|
-
"internalType": "uint256",
|
|
5023
|
-
"name": "value",
|
|
5024
|
-
"type": "uint256"
|
|
5025
|
-
},
|
|
5026
|
-
{
|
|
5027
|
-
"internalType": "uint256",
|
|
5028
|
-
"name": "gasLimit",
|
|
5029
|
-
"type": "uint256"
|
|
5030
|
-
},
|
|
5031
|
-
{
|
|
5032
|
-
"internalType": "bytes32",
|
|
5033
|
-
"name": "operationType",
|
|
5034
|
-
"type": "bytes32"
|
|
5035
|
-
},
|
|
5036
|
-
{
|
|
5037
|
-
"internalType": "bytes4",
|
|
5038
|
-
"name": "executionSelector",
|
|
5039
|
-
"type": "bytes4"
|
|
5040
|
-
},
|
|
5041
|
-
{
|
|
5042
|
-
"internalType": "bytes",
|
|
5043
|
-
"name": "executionParams",
|
|
5044
|
-
"type": "bytes"
|
|
5045
|
-
}
|
|
5046
|
-
],
|
|
5047
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
5048
|
-
"name": "params",
|
|
5049
|
-
"type": "tuple"
|
|
5050
|
-
},
|
|
5051
|
-
{
|
|
5052
|
-
"internalType": "bytes32",
|
|
5053
|
-
"name": "message",
|
|
5054
|
-
"type": "bytes32"
|
|
5055
|
-
},
|
|
5056
|
-
{
|
|
5057
|
-
"internalType": "bytes",
|
|
5058
|
-
"name": "result",
|
|
5059
|
-
"type": "bytes"
|
|
5060
|
-
},
|
|
5061
|
-
{
|
|
5062
|
-
"components": [
|
|
5063
|
-
{
|
|
5064
|
-
"internalType": "address",
|
|
5065
|
-
"name": "recipient",
|
|
5066
|
-
"type": "address"
|
|
5067
|
-
},
|
|
5068
|
-
{
|
|
5069
|
-
"internalType": "uint256",
|
|
5070
|
-
"name": "nativeTokenAmount",
|
|
5071
|
-
"type": "uint256"
|
|
5072
|
-
},
|
|
5073
|
-
{
|
|
5074
|
-
"internalType": "address",
|
|
5075
|
-
"name": "erc20TokenAddress",
|
|
5076
|
-
"type": "address"
|
|
5077
|
-
},
|
|
5078
|
-
{
|
|
5079
|
-
"internalType": "uint256",
|
|
5080
|
-
"name": "erc20TokenAmount",
|
|
5081
|
-
"type": "uint256"
|
|
5082
|
-
}
|
|
5083
|
-
],
|
|
5084
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
5085
|
-
"name": "payment",
|
|
5086
|
-
"type": "tuple"
|
|
5087
|
-
}
|
|
5088
|
-
],
|
|
5089
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
5090
|
-
"name": "",
|
|
5091
|
-
"type": "tuple"
|
|
3576
|
+
"internalType": "uint256",
|
|
3577
|
+
"name": "txId",
|
|
3578
|
+
"type": "uint256"
|
|
5092
3579
|
}
|
|
5093
3580
|
],
|
|
5094
3581
|
"stateMutability": "nonpayable",
|