@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/SimpleRWA20.abi.json
CHANGED
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
{
|
|
19
19
|
"inputs": [
|
|
20
20
|
{
|
|
21
|
-
"internalType": "
|
|
22
|
-
"name": "
|
|
23
|
-
"type": "
|
|
21
|
+
"internalType": "bytes4",
|
|
22
|
+
"name": "functionSelector",
|
|
23
|
+
"type": "bytes4"
|
|
24
24
|
}
|
|
25
25
|
],
|
|
26
|
-
"name": "
|
|
26
|
+
"name": "ContractFunctionMustBeProtected",
|
|
27
27
|
"type": "error"
|
|
28
28
|
},
|
|
29
29
|
{
|
|
@@ -158,49 +158,49 @@
|
|
|
158
158
|
{
|
|
159
159
|
"inputs": [
|
|
160
160
|
{
|
|
161
|
-
"internalType": "
|
|
162
|
-
"name": "
|
|
163
|
-
"type": "
|
|
161
|
+
"internalType": "address",
|
|
162
|
+
"name": "signedContract",
|
|
163
|
+
"type": "address"
|
|
164
164
|
},
|
|
165
165
|
{
|
|
166
|
-
"internalType": "
|
|
167
|
-
"name": "
|
|
168
|
-
"type": "
|
|
166
|
+
"internalType": "address",
|
|
167
|
+
"name": "entryContract",
|
|
168
|
+
"type": "address"
|
|
169
169
|
}
|
|
170
170
|
],
|
|
171
|
-
"name": "
|
|
171
|
+
"name": "MetaTxHandlerContractMismatch",
|
|
172
172
|
"type": "error"
|
|
173
173
|
},
|
|
174
174
|
{
|
|
175
175
|
"inputs": [
|
|
176
176
|
{
|
|
177
|
-
"internalType": "
|
|
178
|
-
"name": "
|
|
179
|
-
"type": "
|
|
177
|
+
"internalType": "bytes4",
|
|
178
|
+
"name": "signedSelector",
|
|
179
|
+
"type": "bytes4"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"internalType": "bytes4",
|
|
183
|
+
"name": "entrySelector",
|
|
184
|
+
"type": "bytes4"
|
|
180
185
|
}
|
|
181
186
|
],
|
|
182
|
-
"name": "
|
|
183
|
-
"type": "error"
|
|
184
|
-
},
|
|
185
|
-
{
|
|
186
|
-
"inputs": [],
|
|
187
|
-
"name": "NotInitializing",
|
|
187
|
+
"name": "MetaTxHandlerSelectorMismatch",
|
|
188
188
|
"type": "error"
|
|
189
189
|
},
|
|
190
190
|
{
|
|
191
191
|
"inputs": [
|
|
192
192
|
{
|
|
193
193
|
"internalType": "address",
|
|
194
|
-
"name": "
|
|
195
|
-
"type": "address"
|
|
196
|
-
},
|
|
197
|
-
{
|
|
198
|
-
"internalType": "address",
|
|
199
|
-
"name": "currentAddress",
|
|
194
|
+
"name": "caller",
|
|
200
195
|
"type": "address"
|
|
201
196
|
}
|
|
202
197
|
],
|
|
203
|
-
"name": "
|
|
198
|
+
"name": "NoPermission",
|
|
199
|
+
"type": "error"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"inputs": [],
|
|
203
|
+
"name": "NotInitializing",
|
|
204
204
|
"type": "error"
|
|
205
205
|
},
|
|
206
206
|
{
|
|
@@ -637,6 +637,11 @@
|
|
|
637
637
|
"internalType": "address",
|
|
638
638
|
"name": "newBroadcaster",
|
|
639
639
|
"type": "address"
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"internalType": "uint256",
|
|
643
|
+
"name": "location",
|
|
644
|
+
"type": "uint256"
|
|
640
645
|
}
|
|
641
646
|
],
|
|
642
647
|
"name": "executeBroadcasterUpdate",
|
|
@@ -683,25 +688,6 @@
|
|
|
683
688
|
"stateMutability": "nonpayable",
|
|
684
689
|
"type": "function"
|
|
685
690
|
},
|
|
686
|
-
{
|
|
687
|
-
"inputs": [
|
|
688
|
-
{
|
|
689
|
-
"internalType": "bytes4",
|
|
690
|
-
"name": "functionSelector",
|
|
691
|
-
"type": "bytes4"
|
|
692
|
-
}
|
|
693
|
-
],
|
|
694
|
-
"name": "functionSchemaExists",
|
|
695
|
-
"outputs": [
|
|
696
|
-
{
|
|
697
|
-
"internalType": "bool",
|
|
698
|
-
"name": "",
|
|
699
|
-
"type": "bool"
|
|
700
|
-
}
|
|
701
|
-
],
|
|
702
|
-
"stateMutability": "view",
|
|
703
|
-
"type": "function"
|
|
704
|
-
},
|
|
705
691
|
{
|
|
706
692
|
"inputs": [
|
|
707
693
|
{
|
|
@@ -1230,6 +1216,25 @@
|
|
|
1230
1216
|
"stateMutability": "view",
|
|
1231
1217
|
"type": "function"
|
|
1232
1218
|
},
|
|
1219
|
+
{
|
|
1220
|
+
"inputs": [
|
|
1221
|
+
{
|
|
1222
|
+
"internalType": "bytes32",
|
|
1223
|
+
"name": "roleHash",
|
|
1224
|
+
"type": "bytes32"
|
|
1225
|
+
}
|
|
1226
|
+
],
|
|
1227
|
+
"name": "getAuthorizedWallets",
|
|
1228
|
+
"outputs": [
|
|
1229
|
+
{
|
|
1230
|
+
"internalType": "address[]",
|
|
1231
|
+
"name": "",
|
|
1232
|
+
"type": "address[]"
|
|
1233
|
+
}
|
|
1234
|
+
],
|
|
1235
|
+
"stateMutability": "view",
|
|
1236
|
+
"type": "function"
|
|
1237
|
+
},
|
|
1233
1238
|
{
|
|
1234
1239
|
"inputs": [],
|
|
1235
1240
|
"name": "getBroadcasters",
|
|
@@ -1243,6 +1248,105 @@
|
|
|
1243
1248
|
"stateMutability": "view",
|
|
1244
1249
|
"type": "function"
|
|
1245
1250
|
},
|
|
1251
|
+
{
|
|
1252
|
+
"inputs": [
|
|
1253
|
+
{
|
|
1254
|
+
"internalType": "bytes4",
|
|
1255
|
+
"name": "functionSelector",
|
|
1256
|
+
"type": "bytes4"
|
|
1257
|
+
}
|
|
1258
|
+
],
|
|
1259
|
+
"name": "getFunctionSchema",
|
|
1260
|
+
"outputs": [
|
|
1261
|
+
{
|
|
1262
|
+
"components": [
|
|
1263
|
+
{
|
|
1264
|
+
"internalType": "string",
|
|
1265
|
+
"name": "functionSignature",
|
|
1266
|
+
"type": "string"
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
"internalType": "bytes4",
|
|
1270
|
+
"name": "functionSelector",
|
|
1271
|
+
"type": "bytes4"
|
|
1272
|
+
},
|
|
1273
|
+
{
|
|
1274
|
+
"internalType": "bytes32",
|
|
1275
|
+
"name": "operationType",
|
|
1276
|
+
"type": "bytes32"
|
|
1277
|
+
},
|
|
1278
|
+
{
|
|
1279
|
+
"internalType": "string",
|
|
1280
|
+
"name": "operationName",
|
|
1281
|
+
"type": "string"
|
|
1282
|
+
},
|
|
1283
|
+
{
|
|
1284
|
+
"internalType": "uint16",
|
|
1285
|
+
"name": "supportedActionsBitmap",
|
|
1286
|
+
"type": "uint16"
|
|
1287
|
+
},
|
|
1288
|
+
{
|
|
1289
|
+
"internalType": "bool",
|
|
1290
|
+
"name": "enforceHandlerRelations",
|
|
1291
|
+
"type": "bool"
|
|
1292
|
+
},
|
|
1293
|
+
{
|
|
1294
|
+
"internalType": "bool",
|
|
1295
|
+
"name": "isProtected",
|
|
1296
|
+
"type": "bool"
|
|
1297
|
+
},
|
|
1298
|
+
{
|
|
1299
|
+
"internalType": "bytes4[]",
|
|
1300
|
+
"name": "handlerForSelectors",
|
|
1301
|
+
"type": "bytes4[]"
|
|
1302
|
+
}
|
|
1303
|
+
],
|
|
1304
|
+
"internalType": "struct EngineBlox.FunctionSchema",
|
|
1305
|
+
"name": "",
|
|
1306
|
+
"type": "tuple"
|
|
1307
|
+
}
|
|
1308
|
+
],
|
|
1309
|
+
"stateMutability": "view",
|
|
1310
|
+
"type": "function"
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
"inputs": [
|
|
1314
|
+
{
|
|
1315
|
+
"internalType": "bytes4",
|
|
1316
|
+
"name": "functionSelector",
|
|
1317
|
+
"type": "bytes4"
|
|
1318
|
+
}
|
|
1319
|
+
],
|
|
1320
|
+
"name": "getFunctionWhitelistTargets",
|
|
1321
|
+
"outputs": [
|
|
1322
|
+
{
|
|
1323
|
+
"internalType": "address[]",
|
|
1324
|
+
"name": "",
|
|
1325
|
+
"type": "address[]"
|
|
1326
|
+
}
|
|
1327
|
+
],
|
|
1328
|
+
"stateMutability": "view",
|
|
1329
|
+
"type": "function"
|
|
1330
|
+
},
|
|
1331
|
+
{
|
|
1332
|
+
"inputs": [
|
|
1333
|
+
{
|
|
1334
|
+
"internalType": "bytes4",
|
|
1335
|
+
"name": "functionSelector",
|
|
1336
|
+
"type": "bytes4"
|
|
1337
|
+
}
|
|
1338
|
+
],
|
|
1339
|
+
"name": "getHooks",
|
|
1340
|
+
"outputs": [
|
|
1341
|
+
{
|
|
1342
|
+
"internalType": "address[]",
|
|
1343
|
+
"name": "hooks",
|
|
1344
|
+
"type": "address[]"
|
|
1345
|
+
}
|
|
1346
|
+
],
|
|
1347
|
+
"stateMutability": "view",
|
|
1348
|
+
"type": "function"
|
|
1349
|
+
},
|
|
1246
1350
|
{
|
|
1247
1351
|
"inputs": [],
|
|
1248
1352
|
"name": "getPendingTransactions",
|
|
@@ -1286,7 +1390,7 @@
|
|
|
1286
1390
|
},
|
|
1287
1391
|
{
|
|
1288
1392
|
"internalType": "bytes32",
|
|
1289
|
-
"name": "
|
|
1393
|
+
"name": "hash",
|
|
1290
1394
|
"type": "bytes32"
|
|
1291
1395
|
},
|
|
1292
1396
|
{
|
|
@@ -1633,25 +1737,6 @@
|
|
|
1633
1737
|
"stateMutability": "view",
|
|
1634
1738
|
"type": "function"
|
|
1635
1739
|
},
|
|
1636
|
-
{
|
|
1637
|
-
"inputs": [
|
|
1638
|
-
{
|
|
1639
|
-
"internalType": "bytes32",
|
|
1640
|
-
"name": "roleHash",
|
|
1641
|
-
"type": "bytes32"
|
|
1642
|
-
}
|
|
1643
|
-
],
|
|
1644
|
-
"name": "getWalletsInRole",
|
|
1645
|
-
"outputs": [
|
|
1646
|
-
{
|
|
1647
|
-
"internalType": "address[]",
|
|
1648
|
-
"name": "",
|
|
1649
|
-
"type": "address[]"
|
|
1650
|
-
}
|
|
1651
|
-
],
|
|
1652
|
-
"stateMutability": "view",
|
|
1653
|
-
"type": "function"
|
|
1654
|
-
},
|
|
1655
1740
|
{
|
|
1656
1741
|
"inputs": [
|
|
1657
1742
|
{
|
|
@@ -1689,30 +1774,6 @@
|
|
|
1689
1774
|
"stateMutability": "view",
|
|
1690
1775
|
"type": "function"
|
|
1691
1776
|
},
|
|
1692
|
-
{
|
|
1693
|
-
"inputs": [
|
|
1694
|
-
{
|
|
1695
|
-
"internalType": "bytes4",
|
|
1696
|
-
"name": "functionSelector",
|
|
1697
|
-
"type": "bytes4"
|
|
1698
|
-
},
|
|
1699
|
-
{
|
|
1700
|
-
"internalType": "enum EngineBlox.TxAction",
|
|
1701
|
-
"name": "action",
|
|
1702
|
-
"type": "uint8"
|
|
1703
|
-
}
|
|
1704
|
-
],
|
|
1705
|
-
"name": "isActionSupportedByFunction",
|
|
1706
|
-
"outputs": [
|
|
1707
|
-
{
|
|
1708
|
-
"internalType": "bool",
|
|
1709
|
-
"name": "",
|
|
1710
|
-
"type": "bool"
|
|
1711
|
-
}
|
|
1712
|
-
],
|
|
1713
|
-
"stateMutability": "view",
|
|
1714
|
-
"type": "function"
|
|
1715
|
-
},
|
|
1716
1777
|
{
|
|
1717
1778
|
"inputs": [],
|
|
1718
1779
|
"name": "name",
|
|
@@ -2012,236 +2073,44 @@
|
|
|
2012
2073
|
],
|
|
2013
2074
|
"name": "transferOwnershipApprovalWithMetaTx",
|
|
2014
2075
|
"outputs": [
|
|
2076
|
+
{
|
|
2077
|
+
"internalType": "uint256",
|
|
2078
|
+
"name": "",
|
|
2079
|
+
"type": "uint256"
|
|
2080
|
+
}
|
|
2081
|
+
],
|
|
2082
|
+
"stateMutability": "nonpayable",
|
|
2083
|
+
"type": "function"
|
|
2084
|
+
},
|
|
2085
|
+
{
|
|
2086
|
+
"inputs": [
|
|
2087
|
+
{
|
|
2088
|
+
"internalType": "uint256",
|
|
2089
|
+
"name": "txId",
|
|
2090
|
+
"type": "uint256"
|
|
2091
|
+
}
|
|
2092
|
+
],
|
|
2093
|
+
"name": "transferOwnershipCancellation",
|
|
2094
|
+
"outputs": [
|
|
2095
|
+
{
|
|
2096
|
+
"internalType": "uint256",
|
|
2097
|
+
"name": "",
|
|
2098
|
+
"type": "uint256"
|
|
2099
|
+
}
|
|
2100
|
+
],
|
|
2101
|
+
"stateMutability": "nonpayable",
|
|
2102
|
+
"type": "function"
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
"inputs": [
|
|
2015
2106
|
{
|
|
2016
2107
|
"components": [
|
|
2017
|
-
{
|
|
2018
|
-
"internalType": "uint256",
|
|
2019
|
-
"name": "txId",
|
|
2020
|
-
"type": "uint256"
|
|
2021
|
-
},
|
|
2022
|
-
{
|
|
2023
|
-
"internalType": "uint256",
|
|
2024
|
-
"name": "releaseTime",
|
|
2025
|
-
"type": "uint256"
|
|
2026
|
-
},
|
|
2027
|
-
{
|
|
2028
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2029
|
-
"name": "status",
|
|
2030
|
-
"type": "uint8"
|
|
2031
|
-
},
|
|
2032
2108
|
{
|
|
2033
2109
|
"components": [
|
|
2034
2110
|
{
|
|
2035
|
-
"internalType": "
|
|
2036
|
-
"name": "
|
|
2037
|
-
"type": "
|
|
2038
|
-
},
|
|
2039
|
-
{
|
|
2040
|
-
"internalType": "address",
|
|
2041
|
-
"name": "target",
|
|
2042
|
-
"type": "address"
|
|
2043
|
-
},
|
|
2044
|
-
{
|
|
2045
|
-
"internalType": "uint256",
|
|
2046
|
-
"name": "value",
|
|
2047
|
-
"type": "uint256"
|
|
2048
|
-
},
|
|
2049
|
-
{
|
|
2050
|
-
"internalType": "uint256",
|
|
2051
|
-
"name": "gasLimit",
|
|
2052
|
-
"type": "uint256"
|
|
2053
|
-
},
|
|
2054
|
-
{
|
|
2055
|
-
"internalType": "bytes32",
|
|
2056
|
-
"name": "operationType",
|
|
2057
|
-
"type": "bytes32"
|
|
2058
|
-
},
|
|
2059
|
-
{
|
|
2060
|
-
"internalType": "bytes4",
|
|
2061
|
-
"name": "executionSelector",
|
|
2062
|
-
"type": "bytes4"
|
|
2063
|
-
},
|
|
2064
|
-
{
|
|
2065
|
-
"internalType": "bytes",
|
|
2066
|
-
"name": "executionParams",
|
|
2067
|
-
"type": "bytes"
|
|
2068
|
-
}
|
|
2069
|
-
],
|
|
2070
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2071
|
-
"name": "params",
|
|
2072
|
-
"type": "tuple"
|
|
2073
|
-
},
|
|
2074
|
-
{
|
|
2075
|
-
"internalType": "bytes32",
|
|
2076
|
-
"name": "message",
|
|
2077
|
-
"type": "bytes32"
|
|
2078
|
-
},
|
|
2079
|
-
{
|
|
2080
|
-
"internalType": "bytes",
|
|
2081
|
-
"name": "result",
|
|
2082
|
-
"type": "bytes"
|
|
2083
|
-
},
|
|
2084
|
-
{
|
|
2085
|
-
"components": [
|
|
2086
|
-
{
|
|
2087
|
-
"internalType": "address",
|
|
2088
|
-
"name": "recipient",
|
|
2089
|
-
"type": "address"
|
|
2090
|
-
},
|
|
2091
|
-
{
|
|
2092
|
-
"internalType": "uint256",
|
|
2093
|
-
"name": "nativeTokenAmount",
|
|
2094
|
-
"type": "uint256"
|
|
2095
|
-
},
|
|
2096
|
-
{
|
|
2097
|
-
"internalType": "address",
|
|
2098
|
-
"name": "erc20TokenAddress",
|
|
2099
|
-
"type": "address"
|
|
2100
|
-
},
|
|
2101
|
-
{
|
|
2102
|
-
"internalType": "uint256",
|
|
2103
|
-
"name": "erc20TokenAmount",
|
|
2104
|
-
"type": "uint256"
|
|
2105
|
-
}
|
|
2106
|
-
],
|
|
2107
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2108
|
-
"name": "payment",
|
|
2109
|
-
"type": "tuple"
|
|
2110
|
-
}
|
|
2111
|
-
],
|
|
2112
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2113
|
-
"name": "",
|
|
2114
|
-
"type": "tuple"
|
|
2115
|
-
}
|
|
2116
|
-
],
|
|
2117
|
-
"stateMutability": "nonpayable",
|
|
2118
|
-
"type": "function"
|
|
2119
|
-
},
|
|
2120
|
-
{
|
|
2121
|
-
"inputs": [
|
|
2122
|
-
{
|
|
2123
|
-
"internalType": "uint256",
|
|
2124
|
-
"name": "txId",
|
|
2125
|
-
"type": "uint256"
|
|
2126
|
-
}
|
|
2127
|
-
],
|
|
2128
|
-
"name": "transferOwnershipCancellation",
|
|
2129
|
-
"outputs": [
|
|
2130
|
-
{
|
|
2131
|
-
"components": [
|
|
2132
|
-
{
|
|
2133
|
-
"internalType": "uint256",
|
|
2134
|
-
"name": "txId",
|
|
2135
|
-
"type": "uint256"
|
|
2136
|
-
},
|
|
2137
|
-
{
|
|
2138
|
-
"internalType": "uint256",
|
|
2139
|
-
"name": "releaseTime",
|
|
2140
|
-
"type": "uint256"
|
|
2141
|
-
},
|
|
2142
|
-
{
|
|
2143
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2144
|
-
"name": "status",
|
|
2145
|
-
"type": "uint8"
|
|
2146
|
-
},
|
|
2147
|
-
{
|
|
2148
|
-
"components": [
|
|
2149
|
-
{
|
|
2150
|
-
"internalType": "address",
|
|
2151
|
-
"name": "requester",
|
|
2152
|
-
"type": "address"
|
|
2153
|
-
},
|
|
2154
|
-
{
|
|
2155
|
-
"internalType": "address",
|
|
2156
|
-
"name": "target",
|
|
2157
|
-
"type": "address"
|
|
2158
|
-
},
|
|
2159
|
-
{
|
|
2160
|
-
"internalType": "uint256",
|
|
2161
|
-
"name": "value",
|
|
2162
|
-
"type": "uint256"
|
|
2163
|
-
},
|
|
2164
|
-
{
|
|
2165
|
-
"internalType": "uint256",
|
|
2166
|
-
"name": "gasLimit",
|
|
2167
|
-
"type": "uint256"
|
|
2168
|
-
},
|
|
2169
|
-
{
|
|
2170
|
-
"internalType": "bytes32",
|
|
2171
|
-
"name": "operationType",
|
|
2172
|
-
"type": "bytes32"
|
|
2173
|
-
},
|
|
2174
|
-
{
|
|
2175
|
-
"internalType": "bytes4",
|
|
2176
|
-
"name": "executionSelector",
|
|
2177
|
-
"type": "bytes4"
|
|
2178
|
-
},
|
|
2179
|
-
{
|
|
2180
|
-
"internalType": "bytes",
|
|
2181
|
-
"name": "executionParams",
|
|
2182
|
-
"type": "bytes"
|
|
2183
|
-
}
|
|
2184
|
-
],
|
|
2185
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2186
|
-
"name": "params",
|
|
2187
|
-
"type": "tuple"
|
|
2188
|
-
},
|
|
2189
|
-
{
|
|
2190
|
-
"internalType": "bytes32",
|
|
2191
|
-
"name": "message",
|
|
2192
|
-
"type": "bytes32"
|
|
2193
|
-
},
|
|
2194
|
-
{
|
|
2195
|
-
"internalType": "bytes",
|
|
2196
|
-
"name": "result",
|
|
2197
|
-
"type": "bytes"
|
|
2198
|
-
},
|
|
2199
|
-
{
|
|
2200
|
-
"components": [
|
|
2201
|
-
{
|
|
2202
|
-
"internalType": "address",
|
|
2203
|
-
"name": "recipient",
|
|
2204
|
-
"type": "address"
|
|
2205
|
-
},
|
|
2206
|
-
{
|
|
2207
|
-
"internalType": "uint256",
|
|
2208
|
-
"name": "nativeTokenAmount",
|
|
2209
|
-
"type": "uint256"
|
|
2210
|
-
},
|
|
2211
|
-
{
|
|
2212
|
-
"internalType": "address",
|
|
2213
|
-
"name": "erc20TokenAddress",
|
|
2214
|
-
"type": "address"
|
|
2215
|
-
},
|
|
2216
|
-
{
|
|
2217
|
-
"internalType": "uint256",
|
|
2218
|
-
"name": "erc20TokenAmount",
|
|
2219
|
-
"type": "uint256"
|
|
2220
|
-
}
|
|
2221
|
-
],
|
|
2222
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2223
|
-
"name": "payment",
|
|
2224
|
-
"type": "tuple"
|
|
2225
|
-
}
|
|
2226
|
-
],
|
|
2227
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2228
|
-
"name": "",
|
|
2229
|
-
"type": "tuple"
|
|
2230
|
-
}
|
|
2231
|
-
],
|
|
2232
|
-
"stateMutability": "nonpayable",
|
|
2233
|
-
"type": "function"
|
|
2234
|
-
},
|
|
2235
|
-
{
|
|
2236
|
-
"inputs": [
|
|
2237
|
-
{
|
|
2238
|
-
"components": [
|
|
2239
|
-
{
|
|
2240
|
-
"components": [
|
|
2241
|
-
{
|
|
2242
|
-
"internalType": "uint256",
|
|
2243
|
-
"name": "txId",
|
|
2244
|
-
"type": "uint256"
|
|
2111
|
+
"internalType": "uint256",
|
|
2112
|
+
"name": "txId",
|
|
2113
|
+
"type": "uint256"
|
|
2245
2114
|
},
|
|
2246
2115
|
{
|
|
2247
2116
|
"internalType": "uint256",
|
|
@@ -2408,732 +2277,49 @@
|
|
|
2408
2277
|
"name": "transferOwnershipCancellationWithMetaTx",
|
|
2409
2278
|
"outputs": [
|
|
2410
2279
|
{
|
|
2411
|
-
"
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
{
|
|
2455
|
-
"internalType": "bytes4",
|
|
2456
|
-
"name": "executionSelector",
|
|
2457
|
-
"type": "bytes4"
|
|
2458
|
-
},
|
|
2459
|
-
{
|
|
2460
|
-
"internalType": "bytes",
|
|
2461
|
-
"name": "executionParams",
|
|
2462
|
-
"type": "bytes"
|
|
2463
|
-
}
|
|
2464
|
-
],
|
|
2465
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2466
|
-
"name": "params",
|
|
2467
|
-
"type": "tuple"
|
|
2468
|
-
},
|
|
2469
|
-
{
|
|
2470
|
-
"internalType": "bytes32",
|
|
2471
|
-
"name": "message",
|
|
2472
|
-
"type": "bytes32"
|
|
2473
|
-
},
|
|
2474
|
-
{
|
|
2475
|
-
"internalType": "bytes",
|
|
2476
|
-
"name": "result",
|
|
2477
|
-
"type": "bytes"
|
|
2478
|
-
},
|
|
2479
|
-
{
|
|
2480
|
-
"components": [
|
|
2481
|
-
{
|
|
2482
|
-
"internalType": "address",
|
|
2483
|
-
"name": "recipient",
|
|
2484
|
-
"type": "address"
|
|
2485
|
-
},
|
|
2486
|
-
{
|
|
2487
|
-
"internalType": "uint256",
|
|
2488
|
-
"name": "nativeTokenAmount",
|
|
2489
|
-
"type": "uint256"
|
|
2490
|
-
},
|
|
2491
|
-
{
|
|
2492
|
-
"internalType": "address",
|
|
2493
|
-
"name": "erc20TokenAddress",
|
|
2494
|
-
"type": "address"
|
|
2495
|
-
},
|
|
2496
|
-
{
|
|
2497
|
-
"internalType": "uint256",
|
|
2498
|
-
"name": "erc20TokenAmount",
|
|
2499
|
-
"type": "uint256"
|
|
2500
|
-
}
|
|
2501
|
-
],
|
|
2502
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2503
|
-
"name": "payment",
|
|
2504
|
-
"type": "tuple"
|
|
2505
|
-
}
|
|
2506
|
-
],
|
|
2507
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2508
|
-
"name": "",
|
|
2509
|
-
"type": "tuple"
|
|
2510
|
-
}
|
|
2511
|
-
],
|
|
2512
|
-
"stateMutability": "nonpayable",
|
|
2513
|
-
"type": "function"
|
|
2514
|
-
},
|
|
2515
|
-
{
|
|
2516
|
-
"inputs": [
|
|
2517
|
-
{
|
|
2518
|
-
"internalType": "uint256",
|
|
2519
|
-
"name": "txId",
|
|
2520
|
-
"type": "uint256"
|
|
2521
|
-
}
|
|
2522
|
-
],
|
|
2523
|
-
"name": "transferOwnershipDelayedApproval",
|
|
2524
|
-
"outputs": [
|
|
2525
|
-
{
|
|
2526
|
-
"components": [
|
|
2527
|
-
{
|
|
2528
|
-
"internalType": "uint256",
|
|
2529
|
-
"name": "txId",
|
|
2530
|
-
"type": "uint256"
|
|
2531
|
-
},
|
|
2532
|
-
{
|
|
2533
|
-
"internalType": "uint256",
|
|
2534
|
-
"name": "releaseTime",
|
|
2535
|
-
"type": "uint256"
|
|
2536
|
-
},
|
|
2537
|
-
{
|
|
2538
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2539
|
-
"name": "status",
|
|
2540
|
-
"type": "uint8"
|
|
2541
|
-
},
|
|
2542
|
-
{
|
|
2543
|
-
"components": [
|
|
2544
|
-
{
|
|
2545
|
-
"internalType": "address",
|
|
2546
|
-
"name": "requester",
|
|
2547
|
-
"type": "address"
|
|
2548
|
-
},
|
|
2549
|
-
{
|
|
2550
|
-
"internalType": "address",
|
|
2551
|
-
"name": "target",
|
|
2552
|
-
"type": "address"
|
|
2553
|
-
},
|
|
2554
|
-
{
|
|
2555
|
-
"internalType": "uint256",
|
|
2556
|
-
"name": "value",
|
|
2557
|
-
"type": "uint256"
|
|
2558
|
-
},
|
|
2559
|
-
{
|
|
2560
|
-
"internalType": "uint256",
|
|
2561
|
-
"name": "gasLimit",
|
|
2562
|
-
"type": "uint256"
|
|
2563
|
-
},
|
|
2564
|
-
{
|
|
2565
|
-
"internalType": "bytes32",
|
|
2566
|
-
"name": "operationType",
|
|
2567
|
-
"type": "bytes32"
|
|
2568
|
-
},
|
|
2569
|
-
{
|
|
2570
|
-
"internalType": "bytes4",
|
|
2571
|
-
"name": "executionSelector",
|
|
2572
|
-
"type": "bytes4"
|
|
2573
|
-
},
|
|
2574
|
-
{
|
|
2575
|
-
"internalType": "bytes",
|
|
2576
|
-
"name": "executionParams",
|
|
2577
|
-
"type": "bytes"
|
|
2578
|
-
}
|
|
2579
|
-
],
|
|
2580
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2581
|
-
"name": "params",
|
|
2582
|
-
"type": "tuple"
|
|
2583
|
-
},
|
|
2584
|
-
{
|
|
2585
|
-
"internalType": "bytes32",
|
|
2586
|
-
"name": "message",
|
|
2587
|
-
"type": "bytes32"
|
|
2588
|
-
},
|
|
2589
|
-
{
|
|
2590
|
-
"internalType": "bytes",
|
|
2591
|
-
"name": "result",
|
|
2592
|
-
"type": "bytes"
|
|
2593
|
-
},
|
|
2594
|
-
{
|
|
2595
|
-
"components": [
|
|
2596
|
-
{
|
|
2597
|
-
"internalType": "address",
|
|
2598
|
-
"name": "recipient",
|
|
2599
|
-
"type": "address"
|
|
2600
|
-
},
|
|
2601
|
-
{
|
|
2602
|
-
"internalType": "uint256",
|
|
2603
|
-
"name": "nativeTokenAmount",
|
|
2604
|
-
"type": "uint256"
|
|
2605
|
-
},
|
|
2606
|
-
{
|
|
2607
|
-
"internalType": "address",
|
|
2608
|
-
"name": "erc20TokenAddress",
|
|
2609
|
-
"type": "address"
|
|
2610
|
-
},
|
|
2611
|
-
{
|
|
2612
|
-
"internalType": "uint256",
|
|
2613
|
-
"name": "erc20TokenAmount",
|
|
2614
|
-
"type": "uint256"
|
|
2615
|
-
}
|
|
2616
|
-
],
|
|
2617
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2618
|
-
"name": "payment",
|
|
2619
|
-
"type": "tuple"
|
|
2620
|
-
}
|
|
2621
|
-
],
|
|
2622
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2623
|
-
"name": "",
|
|
2624
|
-
"type": "tuple"
|
|
2625
|
-
}
|
|
2626
|
-
],
|
|
2627
|
-
"stateMutability": "nonpayable",
|
|
2628
|
-
"type": "function"
|
|
2629
|
-
},
|
|
2630
|
-
{
|
|
2631
|
-
"inputs": [],
|
|
2632
|
-
"name": "transferOwnershipRequest",
|
|
2633
|
-
"outputs": [
|
|
2634
|
-
{
|
|
2635
|
-
"components": [
|
|
2636
|
-
{
|
|
2637
|
-
"internalType": "uint256",
|
|
2638
|
-
"name": "txId",
|
|
2639
|
-
"type": "uint256"
|
|
2640
|
-
},
|
|
2641
|
-
{
|
|
2642
|
-
"internalType": "uint256",
|
|
2643
|
-
"name": "releaseTime",
|
|
2644
|
-
"type": "uint256"
|
|
2645
|
-
},
|
|
2646
|
-
{
|
|
2647
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2648
|
-
"name": "status",
|
|
2649
|
-
"type": "uint8"
|
|
2650
|
-
},
|
|
2651
|
-
{
|
|
2652
|
-
"components": [
|
|
2653
|
-
{
|
|
2654
|
-
"internalType": "address",
|
|
2655
|
-
"name": "requester",
|
|
2656
|
-
"type": "address"
|
|
2657
|
-
},
|
|
2658
|
-
{
|
|
2659
|
-
"internalType": "address",
|
|
2660
|
-
"name": "target",
|
|
2661
|
-
"type": "address"
|
|
2662
|
-
},
|
|
2663
|
-
{
|
|
2664
|
-
"internalType": "uint256",
|
|
2665
|
-
"name": "value",
|
|
2666
|
-
"type": "uint256"
|
|
2667
|
-
},
|
|
2668
|
-
{
|
|
2669
|
-
"internalType": "uint256",
|
|
2670
|
-
"name": "gasLimit",
|
|
2671
|
-
"type": "uint256"
|
|
2672
|
-
},
|
|
2673
|
-
{
|
|
2674
|
-
"internalType": "bytes32",
|
|
2675
|
-
"name": "operationType",
|
|
2676
|
-
"type": "bytes32"
|
|
2677
|
-
},
|
|
2678
|
-
{
|
|
2679
|
-
"internalType": "bytes4",
|
|
2680
|
-
"name": "executionSelector",
|
|
2681
|
-
"type": "bytes4"
|
|
2682
|
-
},
|
|
2683
|
-
{
|
|
2684
|
-
"internalType": "bytes",
|
|
2685
|
-
"name": "executionParams",
|
|
2686
|
-
"type": "bytes"
|
|
2687
|
-
}
|
|
2688
|
-
],
|
|
2689
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2690
|
-
"name": "params",
|
|
2691
|
-
"type": "tuple"
|
|
2692
|
-
},
|
|
2693
|
-
{
|
|
2694
|
-
"internalType": "bytes32",
|
|
2695
|
-
"name": "message",
|
|
2696
|
-
"type": "bytes32"
|
|
2697
|
-
},
|
|
2698
|
-
{
|
|
2699
|
-
"internalType": "bytes",
|
|
2700
|
-
"name": "result",
|
|
2701
|
-
"type": "bytes"
|
|
2702
|
-
},
|
|
2703
|
-
{
|
|
2704
|
-
"components": [
|
|
2705
|
-
{
|
|
2706
|
-
"internalType": "address",
|
|
2707
|
-
"name": "recipient",
|
|
2708
|
-
"type": "address"
|
|
2709
|
-
},
|
|
2710
|
-
{
|
|
2711
|
-
"internalType": "uint256",
|
|
2712
|
-
"name": "nativeTokenAmount",
|
|
2713
|
-
"type": "uint256"
|
|
2714
|
-
},
|
|
2715
|
-
{
|
|
2716
|
-
"internalType": "address",
|
|
2717
|
-
"name": "erc20TokenAddress",
|
|
2718
|
-
"type": "address"
|
|
2719
|
-
},
|
|
2720
|
-
{
|
|
2721
|
-
"internalType": "uint256",
|
|
2722
|
-
"name": "erc20TokenAmount",
|
|
2723
|
-
"type": "uint256"
|
|
2724
|
-
}
|
|
2725
|
-
],
|
|
2726
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2727
|
-
"name": "payment",
|
|
2728
|
-
"type": "tuple"
|
|
2729
|
-
}
|
|
2730
|
-
],
|
|
2731
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2732
|
-
"name": "",
|
|
2733
|
-
"type": "tuple"
|
|
2734
|
-
}
|
|
2735
|
-
],
|
|
2736
|
-
"stateMutability": "nonpayable",
|
|
2737
|
-
"type": "function"
|
|
2738
|
-
},
|
|
2739
|
-
{
|
|
2740
|
-
"inputs": [
|
|
2741
|
-
{
|
|
2742
|
-
"components": [
|
|
2743
|
-
{
|
|
2744
|
-
"components": [
|
|
2745
|
-
{
|
|
2746
|
-
"internalType": "uint256",
|
|
2747
|
-
"name": "txId",
|
|
2748
|
-
"type": "uint256"
|
|
2749
|
-
},
|
|
2750
|
-
{
|
|
2751
|
-
"internalType": "uint256",
|
|
2752
|
-
"name": "releaseTime",
|
|
2753
|
-
"type": "uint256"
|
|
2754
|
-
},
|
|
2755
|
-
{
|
|
2756
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2757
|
-
"name": "status",
|
|
2758
|
-
"type": "uint8"
|
|
2759
|
-
},
|
|
2760
|
-
{
|
|
2761
|
-
"components": [
|
|
2762
|
-
{
|
|
2763
|
-
"internalType": "address",
|
|
2764
|
-
"name": "requester",
|
|
2765
|
-
"type": "address"
|
|
2766
|
-
},
|
|
2767
|
-
{
|
|
2768
|
-
"internalType": "address",
|
|
2769
|
-
"name": "target",
|
|
2770
|
-
"type": "address"
|
|
2771
|
-
},
|
|
2772
|
-
{
|
|
2773
|
-
"internalType": "uint256",
|
|
2774
|
-
"name": "value",
|
|
2775
|
-
"type": "uint256"
|
|
2776
|
-
},
|
|
2777
|
-
{
|
|
2778
|
-
"internalType": "uint256",
|
|
2779
|
-
"name": "gasLimit",
|
|
2780
|
-
"type": "uint256"
|
|
2781
|
-
},
|
|
2782
|
-
{
|
|
2783
|
-
"internalType": "bytes32",
|
|
2784
|
-
"name": "operationType",
|
|
2785
|
-
"type": "bytes32"
|
|
2786
|
-
},
|
|
2787
|
-
{
|
|
2788
|
-
"internalType": "bytes4",
|
|
2789
|
-
"name": "executionSelector",
|
|
2790
|
-
"type": "bytes4"
|
|
2791
|
-
},
|
|
2792
|
-
{
|
|
2793
|
-
"internalType": "bytes",
|
|
2794
|
-
"name": "executionParams",
|
|
2795
|
-
"type": "bytes"
|
|
2796
|
-
}
|
|
2797
|
-
],
|
|
2798
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2799
|
-
"name": "params",
|
|
2800
|
-
"type": "tuple"
|
|
2801
|
-
},
|
|
2802
|
-
{
|
|
2803
|
-
"internalType": "bytes32",
|
|
2804
|
-
"name": "message",
|
|
2805
|
-
"type": "bytes32"
|
|
2806
|
-
},
|
|
2807
|
-
{
|
|
2808
|
-
"internalType": "bytes",
|
|
2809
|
-
"name": "result",
|
|
2810
|
-
"type": "bytes"
|
|
2811
|
-
},
|
|
2812
|
-
{
|
|
2813
|
-
"components": [
|
|
2814
|
-
{
|
|
2815
|
-
"internalType": "address",
|
|
2816
|
-
"name": "recipient",
|
|
2817
|
-
"type": "address"
|
|
2818
|
-
},
|
|
2819
|
-
{
|
|
2820
|
-
"internalType": "uint256",
|
|
2821
|
-
"name": "nativeTokenAmount",
|
|
2822
|
-
"type": "uint256"
|
|
2823
|
-
},
|
|
2824
|
-
{
|
|
2825
|
-
"internalType": "address",
|
|
2826
|
-
"name": "erc20TokenAddress",
|
|
2827
|
-
"type": "address"
|
|
2828
|
-
},
|
|
2829
|
-
{
|
|
2830
|
-
"internalType": "uint256",
|
|
2831
|
-
"name": "erc20TokenAmount",
|
|
2832
|
-
"type": "uint256"
|
|
2833
|
-
}
|
|
2834
|
-
],
|
|
2835
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2836
|
-
"name": "payment",
|
|
2837
|
-
"type": "tuple"
|
|
2838
|
-
}
|
|
2839
|
-
],
|
|
2840
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2841
|
-
"name": "txRecord",
|
|
2842
|
-
"type": "tuple"
|
|
2843
|
-
},
|
|
2844
|
-
{
|
|
2845
|
-
"components": [
|
|
2846
|
-
{
|
|
2847
|
-
"internalType": "uint256",
|
|
2848
|
-
"name": "chainId",
|
|
2849
|
-
"type": "uint256"
|
|
2850
|
-
},
|
|
2851
|
-
{
|
|
2852
|
-
"internalType": "uint256",
|
|
2853
|
-
"name": "nonce",
|
|
2854
|
-
"type": "uint256"
|
|
2855
|
-
},
|
|
2856
|
-
{
|
|
2857
|
-
"internalType": "address",
|
|
2858
|
-
"name": "handlerContract",
|
|
2859
|
-
"type": "address"
|
|
2860
|
-
},
|
|
2861
|
-
{
|
|
2862
|
-
"internalType": "bytes4",
|
|
2863
|
-
"name": "handlerSelector",
|
|
2864
|
-
"type": "bytes4"
|
|
2865
|
-
},
|
|
2866
|
-
{
|
|
2867
|
-
"internalType": "enum EngineBlox.TxAction",
|
|
2868
|
-
"name": "action",
|
|
2869
|
-
"type": "uint8"
|
|
2870
|
-
},
|
|
2871
|
-
{
|
|
2872
|
-
"internalType": "uint256",
|
|
2873
|
-
"name": "deadline",
|
|
2874
|
-
"type": "uint256"
|
|
2875
|
-
},
|
|
2876
|
-
{
|
|
2877
|
-
"internalType": "uint256",
|
|
2878
|
-
"name": "maxGasPrice",
|
|
2879
|
-
"type": "uint256"
|
|
2880
|
-
},
|
|
2881
|
-
{
|
|
2882
|
-
"internalType": "address",
|
|
2883
|
-
"name": "signer",
|
|
2884
|
-
"type": "address"
|
|
2885
|
-
}
|
|
2886
|
-
],
|
|
2887
|
-
"internalType": "struct EngineBlox.MetaTxParams",
|
|
2888
|
-
"name": "params",
|
|
2889
|
-
"type": "tuple"
|
|
2890
|
-
},
|
|
2891
|
-
{
|
|
2892
|
-
"internalType": "bytes32",
|
|
2893
|
-
"name": "message",
|
|
2894
|
-
"type": "bytes32"
|
|
2895
|
-
},
|
|
2896
|
-
{
|
|
2897
|
-
"internalType": "bytes",
|
|
2898
|
-
"name": "signature",
|
|
2899
|
-
"type": "bytes"
|
|
2900
|
-
},
|
|
2901
|
-
{
|
|
2902
|
-
"internalType": "bytes",
|
|
2903
|
-
"name": "data",
|
|
2904
|
-
"type": "bytes"
|
|
2905
|
-
}
|
|
2906
|
-
],
|
|
2907
|
-
"internalType": "struct EngineBlox.MetaTransaction",
|
|
2908
|
-
"name": "metaTx",
|
|
2909
|
-
"type": "tuple"
|
|
2910
|
-
}
|
|
2911
|
-
],
|
|
2912
|
-
"name": "updateBroadcasterApprovalWithMetaTx",
|
|
2913
|
-
"outputs": [
|
|
2914
|
-
{
|
|
2915
|
-
"components": [
|
|
2916
|
-
{
|
|
2917
|
-
"internalType": "uint256",
|
|
2918
|
-
"name": "txId",
|
|
2919
|
-
"type": "uint256"
|
|
2920
|
-
},
|
|
2921
|
-
{
|
|
2922
|
-
"internalType": "uint256",
|
|
2923
|
-
"name": "releaseTime",
|
|
2924
|
-
"type": "uint256"
|
|
2925
|
-
},
|
|
2926
|
-
{
|
|
2927
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2928
|
-
"name": "status",
|
|
2929
|
-
"type": "uint8"
|
|
2930
|
-
},
|
|
2931
|
-
{
|
|
2932
|
-
"components": [
|
|
2933
|
-
{
|
|
2934
|
-
"internalType": "address",
|
|
2935
|
-
"name": "requester",
|
|
2936
|
-
"type": "address"
|
|
2937
|
-
},
|
|
2938
|
-
{
|
|
2939
|
-
"internalType": "address",
|
|
2940
|
-
"name": "target",
|
|
2941
|
-
"type": "address"
|
|
2942
|
-
},
|
|
2943
|
-
{
|
|
2944
|
-
"internalType": "uint256",
|
|
2945
|
-
"name": "value",
|
|
2946
|
-
"type": "uint256"
|
|
2947
|
-
},
|
|
2948
|
-
{
|
|
2949
|
-
"internalType": "uint256",
|
|
2950
|
-
"name": "gasLimit",
|
|
2951
|
-
"type": "uint256"
|
|
2952
|
-
},
|
|
2953
|
-
{
|
|
2954
|
-
"internalType": "bytes32",
|
|
2955
|
-
"name": "operationType",
|
|
2956
|
-
"type": "bytes32"
|
|
2957
|
-
},
|
|
2958
|
-
{
|
|
2959
|
-
"internalType": "bytes4",
|
|
2960
|
-
"name": "executionSelector",
|
|
2961
|
-
"type": "bytes4"
|
|
2962
|
-
},
|
|
2963
|
-
{
|
|
2964
|
-
"internalType": "bytes",
|
|
2965
|
-
"name": "executionParams",
|
|
2966
|
-
"type": "bytes"
|
|
2967
|
-
}
|
|
2968
|
-
],
|
|
2969
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2970
|
-
"name": "params",
|
|
2971
|
-
"type": "tuple"
|
|
2972
|
-
},
|
|
2973
|
-
{
|
|
2974
|
-
"internalType": "bytes32",
|
|
2975
|
-
"name": "message",
|
|
2976
|
-
"type": "bytes32"
|
|
2977
|
-
},
|
|
2978
|
-
{
|
|
2979
|
-
"internalType": "bytes",
|
|
2980
|
-
"name": "result",
|
|
2981
|
-
"type": "bytes"
|
|
2982
|
-
},
|
|
2983
|
-
{
|
|
2984
|
-
"components": [
|
|
2985
|
-
{
|
|
2986
|
-
"internalType": "address",
|
|
2987
|
-
"name": "recipient",
|
|
2988
|
-
"type": "address"
|
|
2989
|
-
},
|
|
2990
|
-
{
|
|
2991
|
-
"internalType": "uint256",
|
|
2992
|
-
"name": "nativeTokenAmount",
|
|
2993
|
-
"type": "uint256"
|
|
2994
|
-
},
|
|
2995
|
-
{
|
|
2996
|
-
"internalType": "address",
|
|
2997
|
-
"name": "erc20TokenAddress",
|
|
2998
|
-
"type": "address"
|
|
2999
|
-
},
|
|
3000
|
-
{
|
|
3001
|
-
"internalType": "uint256",
|
|
3002
|
-
"name": "erc20TokenAmount",
|
|
3003
|
-
"type": "uint256"
|
|
3004
|
-
}
|
|
3005
|
-
],
|
|
3006
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3007
|
-
"name": "payment",
|
|
3008
|
-
"type": "tuple"
|
|
3009
|
-
}
|
|
3010
|
-
],
|
|
3011
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3012
|
-
"name": "",
|
|
3013
|
-
"type": "tuple"
|
|
3014
|
-
}
|
|
3015
|
-
],
|
|
3016
|
-
"stateMutability": "nonpayable",
|
|
3017
|
-
"type": "function"
|
|
3018
|
-
},
|
|
3019
|
-
{
|
|
3020
|
-
"inputs": [
|
|
3021
|
-
{
|
|
3022
|
-
"internalType": "uint256",
|
|
3023
|
-
"name": "txId",
|
|
3024
|
-
"type": "uint256"
|
|
3025
|
-
}
|
|
3026
|
-
],
|
|
3027
|
-
"name": "updateBroadcasterCancellation",
|
|
3028
|
-
"outputs": [
|
|
3029
|
-
{
|
|
3030
|
-
"components": [
|
|
3031
|
-
{
|
|
3032
|
-
"internalType": "uint256",
|
|
3033
|
-
"name": "txId",
|
|
3034
|
-
"type": "uint256"
|
|
3035
|
-
},
|
|
3036
|
-
{
|
|
3037
|
-
"internalType": "uint256",
|
|
3038
|
-
"name": "releaseTime",
|
|
3039
|
-
"type": "uint256"
|
|
3040
|
-
},
|
|
3041
|
-
{
|
|
3042
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3043
|
-
"name": "status",
|
|
3044
|
-
"type": "uint8"
|
|
3045
|
-
},
|
|
3046
|
-
{
|
|
3047
|
-
"components": [
|
|
3048
|
-
{
|
|
3049
|
-
"internalType": "address",
|
|
3050
|
-
"name": "requester",
|
|
3051
|
-
"type": "address"
|
|
3052
|
-
},
|
|
3053
|
-
{
|
|
3054
|
-
"internalType": "address",
|
|
3055
|
-
"name": "target",
|
|
3056
|
-
"type": "address"
|
|
3057
|
-
},
|
|
3058
|
-
{
|
|
3059
|
-
"internalType": "uint256",
|
|
3060
|
-
"name": "value",
|
|
3061
|
-
"type": "uint256"
|
|
3062
|
-
},
|
|
3063
|
-
{
|
|
3064
|
-
"internalType": "uint256",
|
|
3065
|
-
"name": "gasLimit",
|
|
3066
|
-
"type": "uint256"
|
|
3067
|
-
},
|
|
3068
|
-
{
|
|
3069
|
-
"internalType": "bytes32",
|
|
3070
|
-
"name": "operationType",
|
|
3071
|
-
"type": "bytes32"
|
|
3072
|
-
},
|
|
3073
|
-
{
|
|
3074
|
-
"internalType": "bytes4",
|
|
3075
|
-
"name": "executionSelector",
|
|
3076
|
-
"type": "bytes4"
|
|
3077
|
-
},
|
|
3078
|
-
{
|
|
3079
|
-
"internalType": "bytes",
|
|
3080
|
-
"name": "executionParams",
|
|
3081
|
-
"type": "bytes"
|
|
3082
|
-
}
|
|
3083
|
-
],
|
|
3084
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3085
|
-
"name": "params",
|
|
3086
|
-
"type": "tuple"
|
|
3087
|
-
},
|
|
3088
|
-
{
|
|
3089
|
-
"internalType": "bytes32",
|
|
3090
|
-
"name": "message",
|
|
3091
|
-
"type": "bytes32"
|
|
3092
|
-
},
|
|
3093
|
-
{
|
|
3094
|
-
"internalType": "bytes",
|
|
3095
|
-
"name": "result",
|
|
3096
|
-
"type": "bytes"
|
|
3097
|
-
},
|
|
3098
|
-
{
|
|
3099
|
-
"components": [
|
|
3100
|
-
{
|
|
3101
|
-
"internalType": "address",
|
|
3102
|
-
"name": "recipient",
|
|
3103
|
-
"type": "address"
|
|
3104
|
-
},
|
|
3105
|
-
{
|
|
3106
|
-
"internalType": "uint256",
|
|
3107
|
-
"name": "nativeTokenAmount",
|
|
3108
|
-
"type": "uint256"
|
|
3109
|
-
},
|
|
3110
|
-
{
|
|
3111
|
-
"internalType": "address",
|
|
3112
|
-
"name": "erc20TokenAddress",
|
|
3113
|
-
"type": "address"
|
|
3114
|
-
},
|
|
3115
|
-
{
|
|
3116
|
-
"internalType": "uint256",
|
|
3117
|
-
"name": "erc20TokenAmount",
|
|
3118
|
-
"type": "uint256"
|
|
3119
|
-
}
|
|
3120
|
-
],
|
|
3121
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3122
|
-
"name": "payment",
|
|
3123
|
-
"type": "tuple"
|
|
3124
|
-
}
|
|
3125
|
-
],
|
|
3126
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3127
|
-
"name": "",
|
|
3128
|
-
"type": "tuple"
|
|
3129
|
-
}
|
|
3130
|
-
],
|
|
3131
|
-
"stateMutability": "nonpayable",
|
|
3132
|
-
"type": "function"
|
|
3133
|
-
},
|
|
3134
|
-
{
|
|
3135
|
-
"inputs": [
|
|
3136
|
-
{
|
|
2280
|
+
"internalType": "uint256",
|
|
2281
|
+
"name": "",
|
|
2282
|
+
"type": "uint256"
|
|
2283
|
+
}
|
|
2284
|
+
],
|
|
2285
|
+
"stateMutability": "nonpayable",
|
|
2286
|
+
"type": "function"
|
|
2287
|
+
},
|
|
2288
|
+
{
|
|
2289
|
+
"inputs": [
|
|
2290
|
+
{
|
|
2291
|
+
"internalType": "uint256",
|
|
2292
|
+
"name": "txId",
|
|
2293
|
+
"type": "uint256"
|
|
2294
|
+
}
|
|
2295
|
+
],
|
|
2296
|
+
"name": "transferOwnershipDelayedApproval",
|
|
2297
|
+
"outputs": [
|
|
2298
|
+
{
|
|
2299
|
+
"internalType": "uint256",
|
|
2300
|
+
"name": "",
|
|
2301
|
+
"type": "uint256"
|
|
2302
|
+
}
|
|
2303
|
+
],
|
|
2304
|
+
"stateMutability": "nonpayable",
|
|
2305
|
+
"type": "function"
|
|
2306
|
+
},
|
|
2307
|
+
{
|
|
2308
|
+
"inputs": [],
|
|
2309
|
+
"name": "transferOwnershipRequest",
|
|
2310
|
+
"outputs": [
|
|
2311
|
+
{
|
|
2312
|
+
"internalType": "uint256",
|
|
2313
|
+
"name": "txId",
|
|
2314
|
+
"type": "uint256"
|
|
2315
|
+
}
|
|
2316
|
+
],
|
|
2317
|
+
"stateMutability": "nonpayable",
|
|
2318
|
+
"type": "function"
|
|
2319
|
+
},
|
|
2320
|
+
{
|
|
2321
|
+
"inputs": [
|
|
2322
|
+
{
|
|
3137
2323
|
"components": [
|
|
3138
2324
|
{
|
|
3139
2325
|
"components": [
|
|
@@ -3250,233 +2436,36 @@
|
|
|
3250
2436
|
},
|
|
3251
2437
|
{
|
|
3252
2438
|
"internalType": "address",
|
|
3253
|
-
"name": "handlerContract",
|
|
3254
|
-
"type": "address"
|
|
3255
|
-
},
|
|
3256
|
-
{
|
|
3257
|
-
"internalType": "bytes4",
|
|
3258
|
-
"name": "handlerSelector",
|
|
3259
|
-
"type": "bytes4"
|
|
3260
|
-
},
|
|
3261
|
-
{
|
|
3262
|
-
"internalType": "enum EngineBlox.TxAction",
|
|
3263
|
-
"name": "action",
|
|
3264
|
-
"type": "uint8"
|
|
3265
|
-
},
|
|
3266
|
-
{
|
|
3267
|
-
"internalType": "uint256",
|
|
3268
|
-
"name": "deadline",
|
|
3269
|
-
"type": "uint256"
|
|
3270
|
-
},
|
|
3271
|
-
{
|
|
3272
|
-
"internalType": "uint256",
|
|
3273
|
-
"name": "maxGasPrice",
|
|
3274
|
-
"type": "uint256"
|
|
3275
|
-
},
|
|
3276
|
-
{
|
|
3277
|
-
"internalType": "address",
|
|
3278
|
-
"name": "signer",
|
|
3279
|
-
"type": "address"
|
|
3280
|
-
}
|
|
3281
|
-
],
|
|
3282
|
-
"internalType": "struct EngineBlox.MetaTxParams",
|
|
3283
|
-
"name": "params",
|
|
3284
|
-
"type": "tuple"
|
|
3285
|
-
},
|
|
3286
|
-
{
|
|
3287
|
-
"internalType": "bytes32",
|
|
3288
|
-
"name": "message",
|
|
3289
|
-
"type": "bytes32"
|
|
3290
|
-
},
|
|
3291
|
-
{
|
|
3292
|
-
"internalType": "bytes",
|
|
3293
|
-
"name": "signature",
|
|
3294
|
-
"type": "bytes"
|
|
3295
|
-
},
|
|
3296
|
-
{
|
|
3297
|
-
"internalType": "bytes",
|
|
3298
|
-
"name": "data",
|
|
3299
|
-
"type": "bytes"
|
|
3300
|
-
}
|
|
3301
|
-
],
|
|
3302
|
-
"internalType": "struct EngineBlox.MetaTransaction",
|
|
3303
|
-
"name": "metaTx",
|
|
3304
|
-
"type": "tuple"
|
|
3305
|
-
}
|
|
3306
|
-
],
|
|
3307
|
-
"name": "updateBroadcasterCancellationWithMetaTx",
|
|
3308
|
-
"outputs": [
|
|
3309
|
-
{
|
|
3310
|
-
"components": [
|
|
3311
|
-
{
|
|
3312
|
-
"internalType": "uint256",
|
|
3313
|
-
"name": "txId",
|
|
3314
|
-
"type": "uint256"
|
|
3315
|
-
},
|
|
3316
|
-
{
|
|
3317
|
-
"internalType": "uint256",
|
|
3318
|
-
"name": "releaseTime",
|
|
3319
|
-
"type": "uint256"
|
|
3320
|
-
},
|
|
3321
|
-
{
|
|
3322
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3323
|
-
"name": "status",
|
|
3324
|
-
"type": "uint8"
|
|
3325
|
-
},
|
|
3326
|
-
{
|
|
3327
|
-
"components": [
|
|
3328
|
-
{
|
|
3329
|
-
"internalType": "address",
|
|
3330
|
-
"name": "requester",
|
|
3331
|
-
"type": "address"
|
|
3332
|
-
},
|
|
3333
|
-
{
|
|
3334
|
-
"internalType": "address",
|
|
3335
|
-
"name": "target",
|
|
3336
|
-
"type": "address"
|
|
3337
|
-
},
|
|
3338
|
-
{
|
|
3339
|
-
"internalType": "uint256",
|
|
3340
|
-
"name": "value",
|
|
3341
|
-
"type": "uint256"
|
|
3342
|
-
},
|
|
3343
|
-
{
|
|
3344
|
-
"internalType": "uint256",
|
|
3345
|
-
"name": "gasLimit",
|
|
3346
|
-
"type": "uint256"
|
|
3347
|
-
},
|
|
3348
|
-
{
|
|
3349
|
-
"internalType": "bytes32",
|
|
3350
|
-
"name": "operationType",
|
|
3351
|
-
"type": "bytes32"
|
|
3352
|
-
},
|
|
3353
|
-
{
|
|
3354
|
-
"internalType": "bytes4",
|
|
3355
|
-
"name": "executionSelector",
|
|
3356
|
-
"type": "bytes4"
|
|
3357
|
-
},
|
|
3358
|
-
{
|
|
3359
|
-
"internalType": "bytes",
|
|
3360
|
-
"name": "executionParams",
|
|
3361
|
-
"type": "bytes"
|
|
3362
|
-
}
|
|
3363
|
-
],
|
|
3364
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3365
|
-
"name": "params",
|
|
3366
|
-
"type": "tuple"
|
|
3367
|
-
},
|
|
3368
|
-
{
|
|
3369
|
-
"internalType": "bytes32",
|
|
3370
|
-
"name": "message",
|
|
3371
|
-
"type": "bytes32"
|
|
3372
|
-
},
|
|
3373
|
-
{
|
|
3374
|
-
"internalType": "bytes",
|
|
3375
|
-
"name": "result",
|
|
3376
|
-
"type": "bytes"
|
|
3377
|
-
},
|
|
3378
|
-
{
|
|
3379
|
-
"components": [
|
|
3380
|
-
{
|
|
3381
|
-
"internalType": "address",
|
|
3382
|
-
"name": "recipient",
|
|
3383
|
-
"type": "address"
|
|
3384
|
-
},
|
|
3385
|
-
{
|
|
3386
|
-
"internalType": "uint256",
|
|
3387
|
-
"name": "nativeTokenAmount",
|
|
3388
|
-
"type": "uint256"
|
|
3389
|
-
},
|
|
3390
|
-
{
|
|
3391
|
-
"internalType": "address",
|
|
3392
|
-
"name": "erc20TokenAddress",
|
|
3393
|
-
"type": "address"
|
|
3394
|
-
},
|
|
3395
|
-
{
|
|
3396
|
-
"internalType": "uint256",
|
|
3397
|
-
"name": "erc20TokenAmount",
|
|
3398
|
-
"type": "uint256"
|
|
3399
|
-
}
|
|
3400
|
-
],
|
|
3401
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3402
|
-
"name": "payment",
|
|
3403
|
-
"type": "tuple"
|
|
3404
|
-
}
|
|
3405
|
-
],
|
|
3406
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3407
|
-
"name": "",
|
|
3408
|
-
"type": "tuple"
|
|
3409
|
-
}
|
|
3410
|
-
],
|
|
3411
|
-
"stateMutability": "nonpayable",
|
|
3412
|
-
"type": "function"
|
|
3413
|
-
},
|
|
3414
|
-
{
|
|
3415
|
-
"inputs": [
|
|
3416
|
-
{
|
|
3417
|
-
"internalType": "uint256",
|
|
3418
|
-
"name": "txId",
|
|
3419
|
-
"type": "uint256"
|
|
3420
|
-
}
|
|
3421
|
-
],
|
|
3422
|
-
"name": "updateBroadcasterDelayedApproval",
|
|
3423
|
-
"outputs": [
|
|
3424
|
-
{
|
|
3425
|
-
"components": [
|
|
3426
|
-
{
|
|
3427
|
-
"internalType": "uint256",
|
|
3428
|
-
"name": "txId",
|
|
3429
|
-
"type": "uint256"
|
|
3430
|
-
},
|
|
3431
|
-
{
|
|
3432
|
-
"internalType": "uint256",
|
|
3433
|
-
"name": "releaseTime",
|
|
3434
|
-
"type": "uint256"
|
|
3435
|
-
},
|
|
3436
|
-
{
|
|
3437
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3438
|
-
"name": "status",
|
|
3439
|
-
"type": "uint8"
|
|
3440
|
-
},
|
|
3441
|
-
{
|
|
3442
|
-
"components": [
|
|
3443
|
-
{
|
|
3444
|
-
"internalType": "address",
|
|
3445
|
-
"name": "requester",
|
|
3446
|
-
"type": "address"
|
|
3447
|
-
},
|
|
3448
|
-
{
|
|
3449
|
-
"internalType": "address",
|
|
3450
|
-
"name": "target",
|
|
2439
|
+
"name": "handlerContract",
|
|
3451
2440
|
"type": "address"
|
|
3452
2441
|
},
|
|
3453
2442
|
{
|
|
3454
|
-
"internalType": "
|
|
3455
|
-
"name": "
|
|
3456
|
-
"type": "
|
|
2443
|
+
"internalType": "bytes4",
|
|
2444
|
+
"name": "handlerSelector",
|
|
2445
|
+
"type": "bytes4"
|
|
3457
2446
|
},
|
|
3458
2447
|
{
|
|
3459
|
-
"internalType": "
|
|
3460
|
-
"name": "
|
|
3461
|
-
"type": "
|
|
2448
|
+
"internalType": "enum EngineBlox.TxAction",
|
|
2449
|
+
"name": "action",
|
|
2450
|
+
"type": "uint8"
|
|
3462
2451
|
},
|
|
3463
2452
|
{
|
|
3464
|
-
"internalType": "
|
|
3465
|
-
"name": "
|
|
3466
|
-
"type": "
|
|
2453
|
+
"internalType": "uint256",
|
|
2454
|
+
"name": "deadline",
|
|
2455
|
+
"type": "uint256"
|
|
3467
2456
|
},
|
|
3468
2457
|
{
|
|
3469
|
-
"internalType": "
|
|
3470
|
-
"name": "
|
|
3471
|
-
"type": "
|
|
2458
|
+
"internalType": "uint256",
|
|
2459
|
+
"name": "maxGasPrice",
|
|
2460
|
+
"type": "uint256"
|
|
3472
2461
|
},
|
|
3473
2462
|
{
|
|
3474
|
-
"internalType": "
|
|
3475
|
-
"name": "
|
|
3476
|
-
"type": "
|
|
2463
|
+
"internalType": "address",
|
|
2464
|
+
"name": "signer",
|
|
2465
|
+
"type": "address"
|
|
3477
2466
|
}
|
|
3478
2467
|
],
|
|
3479
|
-
"internalType": "struct EngineBlox.
|
|
2468
|
+
"internalType": "struct EngineBlox.MetaTxParams",
|
|
3480
2469
|
"name": "params",
|
|
3481
2470
|
"type": "tuple"
|
|
3482
2471
|
},
|
|
@@ -3487,157 +2476,274 @@
|
|
|
3487
2476
|
},
|
|
3488
2477
|
{
|
|
3489
2478
|
"internalType": "bytes",
|
|
3490
|
-
"name": "
|
|
2479
|
+
"name": "signature",
|
|
3491
2480
|
"type": "bytes"
|
|
3492
2481
|
},
|
|
3493
2482
|
{
|
|
3494
|
-
"
|
|
3495
|
-
|
|
3496
|
-
|
|
3497
|
-
"name": "recipient",
|
|
3498
|
-
"type": "address"
|
|
3499
|
-
},
|
|
3500
|
-
{
|
|
3501
|
-
"internalType": "uint256",
|
|
3502
|
-
"name": "nativeTokenAmount",
|
|
3503
|
-
"type": "uint256"
|
|
3504
|
-
},
|
|
3505
|
-
{
|
|
3506
|
-
"internalType": "address",
|
|
3507
|
-
"name": "erc20TokenAddress",
|
|
3508
|
-
"type": "address"
|
|
3509
|
-
},
|
|
3510
|
-
{
|
|
3511
|
-
"internalType": "uint256",
|
|
3512
|
-
"name": "erc20TokenAmount",
|
|
3513
|
-
"type": "uint256"
|
|
3514
|
-
}
|
|
3515
|
-
],
|
|
3516
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3517
|
-
"name": "payment",
|
|
3518
|
-
"type": "tuple"
|
|
2483
|
+
"internalType": "bytes",
|
|
2484
|
+
"name": "data",
|
|
2485
|
+
"type": "bytes"
|
|
3519
2486
|
}
|
|
3520
2487
|
],
|
|
3521
|
-
"internalType": "struct EngineBlox.
|
|
3522
|
-
"name": "",
|
|
2488
|
+
"internalType": "struct EngineBlox.MetaTransaction",
|
|
2489
|
+
"name": "metaTx",
|
|
3523
2490
|
"type": "tuple"
|
|
3524
2491
|
}
|
|
3525
2492
|
],
|
|
2493
|
+
"name": "updateBroadcasterApprovalWithMetaTx",
|
|
2494
|
+
"outputs": [
|
|
2495
|
+
{
|
|
2496
|
+
"internalType": "uint256",
|
|
2497
|
+
"name": "",
|
|
2498
|
+
"type": "uint256"
|
|
2499
|
+
}
|
|
2500
|
+
],
|
|
3526
2501
|
"stateMutability": "nonpayable",
|
|
3527
2502
|
"type": "function"
|
|
3528
2503
|
},
|
|
3529
2504
|
{
|
|
3530
2505
|
"inputs": [
|
|
3531
2506
|
{
|
|
3532
|
-
"internalType": "
|
|
3533
|
-
"name": "
|
|
3534
|
-
"type": "
|
|
2507
|
+
"internalType": "uint256",
|
|
2508
|
+
"name": "txId",
|
|
2509
|
+
"type": "uint256"
|
|
3535
2510
|
}
|
|
3536
2511
|
],
|
|
3537
|
-
"name": "
|
|
2512
|
+
"name": "updateBroadcasterCancellation",
|
|
3538
2513
|
"outputs": [
|
|
2514
|
+
{
|
|
2515
|
+
"internalType": "uint256",
|
|
2516
|
+
"name": "",
|
|
2517
|
+
"type": "uint256"
|
|
2518
|
+
}
|
|
2519
|
+
],
|
|
2520
|
+
"stateMutability": "nonpayable",
|
|
2521
|
+
"type": "function"
|
|
2522
|
+
},
|
|
2523
|
+
{
|
|
2524
|
+
"inputs": [
|
|
3539
2525
|
{
|
|
3540
2526
|
"components": [
|
|
3541
|
-
{
|
|
3542
|
-
"internalType": "uint256",
|
|
3543
|
-
"name": "txId",
|
|
3544
|
-
"type": "uint256"
|
|
3545
|
-
},
|
|
3546
|
-
{
|
|
3547
|
-
"internalType": "uint256",
|
|
3548
|
-
"name": "releaseTime",
|
|
3549
|
-
"type": "uint256"
|
|
3550
|
-
},
|
|
3551
|
-
{
|
|
3552
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3553
|
-
"name": "status",
|
|
3554
|
-
"type": "uint8"
|
|
3555
|
-
},
|
|
3556
2527
|
{
|
|
3557
2528
|
"components": [
|
|
3558
|
-
{
|
|
3559
|
-
"internalType": "address",
|
|
3560
|
-
"name": "requester",
|
|
3561
|
-
"type": "address"
|
|
3562
|
-
},
|
|
3563
|
-
{
|
|
3564
|
-
"internalType": "address",
|
|
3565
|
-
"name": "target",
|
|
3566
|
-
"type": "address"
|
|
3567
|
-
},
|
|
3568
2529
|
{
|
|
3569
2530
|
"internalType": "uint256",
|
|
3570
|
-
"name": "
|
|
2531
|
+
"name": "txId",
|
|
3571
2532
|
"type": "uint256"
|
|
3572
2533
|
},
|
|
3573
2534
|
{
|
|
3574
2535
|
"internalType": "uint256",
|
|
3575
|
-
"name": "
|
|
2536
|
+
"name": "releaseTime",
|
|
3576
2537
|
"type": "uint256"
|
|
3577
2538
|
},
|
|
3578
2539
|
{
|
|
3579
|
-
"internalType": "
|
|
3580
|
-
"name": "
|
|
3581
|
-
"type": "
|
|
2540
|
+
"internalType": "enum EngineBlox.TxStatus",
|
|
2541
|
+
"name": "status",
|
|
2542
|
+
"type": "uint8"
|
|
3582
2543
|
},
|
|
3583
2544
|
{
|
|
3584
|
-
"
|
|
3585
|
-
|
|
3586
|
-
|
|
2545
|
+
"components": [
|
|
2546
|
+
{
|
|
2547
|
+
"internalType": "address",
|
|
2548
|
+
"name": "requester",
|
|
2549
|
+
"type": "address"
|
|
2550
|
+
},
|
|
2551
|
+
{
|
|
2552
|
+
"internalType": "address",
|
|
2553
|
+
"name": "target",
|
|
2554
|
+
"type": "address"
|
|
2555
|
+
},
|
|
2556
|
+
{
|
|
2557
|
+
"internalType": "uint256",
|
|
2558
|
+
"name": "value",
|
|
2559
|
+
"type": "uint256"
|
|
2560
|
+
},
|
|
2561
|
+
{
|
|
2562
|
+
"internalType": "uint256",
|
|
2563
|
+
"name": "gasLimit",
|
|
2564
|
+
"type": "uint256"
|
|
2565
|
+
},
|
|
2566
|
+
{
|
|
2567
|
+
"internalType": "bytes32",
|
|
2568
|
+
"name": "operationType",
|
|
2569
|
+
"type": "bytes32"
|
|
2570
|
+
},
|
|
2571
|
+
{
|
|
2572
|
+
"internalType": "bytes4",
|
|
2573
|
+
"name": "executionSelector",
|
|
2574
|
+
"type": "bytes4"
|
|
2575
|
+
},
|
|
2576
|
+
{
|
|
2577
|
+
"internalType": "bytes",
|
|
2578
|
+
"name": "executionParams",
|
|
2579
|
+
"type": "bytes"
|
|
2580
|
+
}
|
|
2581
|
+
],
|
|
2582
|
+
"internalType": "struct EngineBlox.TxParams",
|
|
2583
|
+
"name": "params",
|
|
2584
|
+
"type": "tuple"
|
|
2585
|
+
},
|
|
2586
|
+
{
|
|
2587
|
+
"internalType": "bytes32",
|
|
2588
|
+
"name": "message",
|
|
2589
|
+
"type": "bytes32"
|
|
3587
2590
|
},
|
|
3588
2591
|
{
|
|
3589
2592
|
"internalType": "bytes",
|
|
3590
|
-
"name": "
|
|
2593
|
+
"name": "result",
|
|
3591
2594
|
"type": "bytes"
|
|
2595
|
+
},
|
|
2596
|
+
{
|
|
2597
|
+
"components": [
|
|
2598
|
+
{
|
|
2599
|
+
"internalType": "address",
|
|
2600
|
+
"name": "recipient",
|
|
2601
|
+
"type": "address"
|
|
2602
|
+
},
|
|
2603
|
+
{
|
|
2604
|
+
"internalType": "uint256",
|
|
2605
|
+
"name": "nativeTokenAmount",
|
|
2606
|
+
"type": "uint256"
|
|
2607
|
+
},
|
|
2608
|
+
{
|
|
2609
|
+
"internalType": "address",
|
|
2610
|
+
"name": "erc20TokenAddress",
|
|
2611
|
+
"type": "address"
|
|
2612
|
+
},
|
|
2613
|
+
{
|
|
2614
|
+
"internalType": "uint256",
|
|
2615
|
+
"name": "erc20TokenAmount",
|
|
2616
|
+
"type": "uint256"
|
|
2617
|
+
}
|
|
2618
|
+
],
|
|
2619
|
+
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2620
|
+
"name": "payment",
|
|
2621
|
+
"type": "tuple"
|
|
3592
2622
|
}
|
|
3593
2623
|
],
|
|
3594
|
-
"internalType": "struct EngineBlox.
|
|
3595
|
-
"name": "
|
|
2624
|
+
"internalType": "struct EngineBlox.TxRecord",
|
|
2625
|
+
"name": "txRecord",
|
|
3596
2626
|
"type": "tuple"
|
|
3597
2627
|
},
|
|
3598
|
-
{
|
|
3599
|
-
"internalType": "bytes32",
|
|
3600
|
-
"name": "message",
|
|
3601
|
-
"type": "bytes32"
|
|
3602
|
-
},
|
|
3603
|
-
{
|
|
3604
|
-
"internalType": "bytes",
|
|
3605
|
-
"name": "result",
|
|
3606
|
-
"type": "bytes"
|
|
3607
|
-
},
|
|
3608
2628
|
{
|
|
3609
2629
|
"components": [
|
|
3610
2630
|
{
|
|
3611
|
-
"internalType": "
|
|
3612
|
-
"name": "
|
|
3613
|
-
"type": "
|
|
2631
|
+
"internalType": "uint256",
|
|
2632
|
+
"name": "chainId",
|
|
2633
|
+
"type": "uint256"
|
|
3614
2634
|
},
|
|
3615
2635
|
{
|
|
3616
2636
|
"internalType": "uint256",
|
|
3617
|
-
"name": "
|
|
2637
|
+
"name": "nonce",
|
|
3618
2638
|
"type": "uint256"
|
|
3619
2639
|
},
|
|
3620
2640
|
{
|
|
3621
2641
|
"internalType": "address",
|
|
3622
|
-
"name": "
|
|
2642
|
+
"name": "handlerContract",
|
|
3623
2643
|
"type": "address"
|
|
3624
2644
|
},
|
|
2645
|
+
{
|
|
2646
|
+
"internalType": "bytes4",
|
|
2647
|
+
"name": "handlerSelector",
|
|
2648
|
+
"type": "bytes4"
|
|
2649
|
+
},
|
|
2650
|
+
{
|
|
2651
|
+
"internalType": "enum EngineBlox.TxAction",
|
|
2652
|
+
"name": "action",
|
|
2653
|
+
"type": "uint8"
|
|
2654
|
+
},
|
|
3625
2655
|
{
|
|
3626
2656
|
"internalType": "uint256",
|
|
3627
|
-
"name": "
|
|
2657
|
+
"name": "deadline",
|
|
2658
|
+
"type": "uint256"
|
|
2659
|
+
},
|
|
2660
|
+
{
|
|
2661
|
+
"internalType": "uint256",
|
|
2662
|
+
"name": "maxGasPrice",
|
|
3628
2663
|
"type": "uint256"
|
|
2664
|
+
},
|
|
2665
|
+
{
|
|
2666
|
+
"internalType": "address",
|
|
2667
|
+
"name": "signer",
|
|
2668
|
+
"type": "address"
|
|
3629
2669
|
}
|
|
3630
|
-
],
|
|
3631
|
-
"internalType": "struct EngineBlox.
|
|
3632
|
-
"name": "
|
|
2670
|
+
],
|
|
2671
|
+
"internalType": "struct EngineBlox.MetaTxParams",
|
|
2672
|
+
"name": "params",
|
|
3633
2673
|
"type": "tuple"
|
|
2674
|
+
},
|
|
2675
|
+
{
|
|
2676
|
+
"internalType": "bytes32",
|
|
2677
|
+
"name": "message",
|
|
2678
|
+
"type": "bytes32"
|
|
2679
|
+
},
|
|
2680
|
+
{
|
|
2681
|
+
"internalType": "bytes",
|
|
2682
|
+
"name": "signature",
|
|
2683
|
+
"type": "bytes"
|
|
2684
|
+
},
|
|
2685
|
+
{
|
|
2686
|
+
"internalType": "bytes",
|
|
2687
|
+
"name": "data",
|
|
2688
|
+
"type": "bytes"
|
|
3634
2689
|
}
|
|
3635
2690
|
],
|
|
3636
|
-
"internalType": "struct EngineBlox.
|
|
3637
|
-
"name": "",
|
|
2691
|
+
"internalType": "struct EngineBlox.MetaTransaction",
|
|
2692
|
+
"name": "metaTx",
|
|
3638
2693
|
"type": "tuple"
|
|
3639
2694
|
}
|
|
3640
2695
|
],
|
|
2696
|
+
"name": "updateBroadcasterCancellationWithMetaTx",
|
|
2697
|
+
"outputs": [
|
|
2698
|
+
{
|
|
2699
|
+
"internalType": "uint256",
|
|
2700
|
+
"name": "",
|
|
2701
|
+
"type": "uint256"
|
|
2702
|
+
}
|
|
2703
|
+
],
|
|
2704
|
+
"stateMutability": "nonpayable",
|
|
2705
|
+
"type": "function"
|
|
2706
|
+
},
|
|
2707
|
+
{
|
|
2708
|
+
"inputs": [
|
|
2709
|
+
{
|
|
2710
|
+
"internalType": "uint256",
|
|
2711
|
+
"name": "txId",
|
|
2712
|
+
"type": "uint256"
|
|
2713
|
+
}
|
|
2714
|
+
],
|
|
2715
|
+
"name": "updateBroadcasterDelayedApproval",
|
|
2716
|
+
"outputs": [
|
|
2717
|
+
{
|
|
2718
|
+
"internalType": "uint256",
|
|
2719
|
+
"name": "",
|
|
2720
|
+
"type": "uint256"
|
|
2721
|
+
}
|
|
2722
|
+
],
|
|
2723
|
+
"stateMutability": "nonpayable",
|
|
2724
|
+
"type": "function"
|
|
2725
|
+
},
|
|
2726
|
+
{
|
|
2727
|
+
"inputs": [
|
|
2728
|
+
{
|
|
2729
|
+
"internalType": "address",
|
|
2730
|
+
"name": "newBroadcaster",
|
|
2731
|
+
"type": "address"
|
|
2732
|
+
},
|
|
2733
|
+
{
|
|
2734
|
+
"internalType": "uint256",
|
|
2735
|
+
"name": "location",
|
|
2736
|
+
"type": "uint256"
|
|
2737
|
+
}
|
|
2738
|
+
],
|
|
2739
|
+
"name": "updateBroadcasterRequest",
|
|
2740
|
+
"outputs": [
|
|
2741
|
+
{
|
|
2742
|
+
"internalType": "uint256",
|
|
2743
|
+
"name": "txId",
|
|
2744
|
+
"type": "uint256"
|
|
2745
|
+
}
|
|
2746
|
+
],
|
|
3641
2747
|
"stateMutability": "nonpayable",
|
|
3642
2748
|
"type": "function"
|
|
3643
2749
|
},
|
|
@@ -3817,105 +2923,9 @@
|
|
|
3817
2923
|
"name": "updateRecoveryRequestAndApprove",
|
|
3818
2924
|
"outputs": [
|
|
3819
2925
|
{
|
|
3820
|
-
"
|
|
3821
|
-
{
|
|
3822
|
-
"internalType": "uint256",
|
|
3823
|
-
"name": "txId",
|
|
3824
|
-
"type": "uint256"
|
|
3825
|
-
},
|
|
3826
|
-
{
|
|
3827
|
-
"internalType": "uint256",
|
|
3828
|
-
"name": "releaseTime",
|
|
3829
|
-
"type": "uint256"
|
|
3830
|
-
},
|
|
3831
|
-
{
|
|
3832
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3833
|
-
"name": "status",
|
|
3834
|
-
"type": "uint8"
|
|
3835
|
-
},
|
|
3836
|
-
{
|
|
3837
|
-
"components": [
|
|
3838
|
-
{
|
|
3839
|
-
"internalType": "address",
|
|
3840
|
-
"name": "requester",
|
|
3841
|
-
"type": "address"
|
|
3842
|
-
},
|
|
3843
|
-
{
|
|
3844
|
-
"internalType": "address",
|
|
3845
|
-
"name": "target",
|
|
3846
|
-
"type": "address"
|
|
3847
|
-
},
|
|
3848
|
-
{
|
|
3849
|
-
"internalType": "uint256",
|
|
3850
|
-
"name": "value",
|
|
3851
|
-
"type": "uint256"
|
|
3852
|
-
},
|
|
3853
|
-
{
|
|
3854
|
-
"internalType": "uint256",
|
|
3855
|
-
"name": "gasLimit",
|
|
3856
|
-
"type": "uint256"
|
|
3857
|
-
},
|
|
3858
|
-
{
|
|
3859
|
-
"internalType": "bytes32",
|
|
3860
|
-
"name": "operationType",
|
|
3861
|
-
"type": "bytes32"
|
|
3862
|
-
},
|
|
3863
|
-
{
|
|
3864
|
-
"internalType": "bytes4",
|
|
3865
|
-
"name": "executionSelector",
|
|
3866
|
-
"type": "bytes4"
|
|
3867
|
-
},
|
|
3868
|
-
{
|
|
3869
|
-
"internalType": "bytes",
|
|
3870
|
-
"name": "executionParams",
|
|
3871
|
-
"type": "bytes"
|
|
3872
|
-
}
|
|
3873
|
-
],
|
|
3874
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3875
|
-
"name": "params",
|
|
3876
|
-
"type": "tuple"
|
|
3877
|
-
},
|
|
3878
|
-
{
|
|
3879
|
-
"internalType": "bytes32",
|
|
3880
|
-
"name": "message",
|
|
3881
|
-
"type": "bytes32"
|
|
3882
|
-
},
|
|
3883
|
-
{
|
|
3884
|
-
"internalType": "bytes",
|
|
3885
|
-
"name": "result",
|
|
3886
|
-
"type": "bytes"
|
|
3887
|
-
},
|
|
3888
|
-
{
|
|
3889
|
-
"components": [
|
|
3890
|
-
{
|
|
3891
|
-
"internalType": "address",
|
|
3892
|
-
"name": "recipient",
|
|
3893
|
-
"type": "address"
|
|
3894
|
-
},
|
|
3895
|
-
{
|
|
3896
|
-
"internalType": "uint256",
|
|
3897
|
-
"name": "nativeTokenAmount",
|
|
3898
|
-
"type": "uint256"
|
|
3899
|
-
},
|
|
3900
|
-
{
|
|
3901
|
-
"internalType": "address",
|
|
3902
|
-
"name": "erc20TokenAddress",
|
|
3903
|
-
"type": "address"
|
|
3904
|
-
},
|
|
3905
|
-
{
|
|
3906
|
-
"internalType": "uint256",
|
|
3907
|
-
"name": "erc20TokenAmount",
|
|
3908
|
-
"type": "uint256"
|
|
3909
|
-
}
|
|
3910
|
-
],
|
|
3911
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3912
|
-
"name": "payment",
|
|
3913
|
-
"type": "tuple"
|
|
3914
|
-
}
|
|
3915
|
-
],
|
|
3916
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2926
|
+
"internalType": "uint256",
|
|
3917
2927
|
"name": "",
|
|
3918
|
-
"type": "
|
|
2928
|
+
"type": "uint256"
|
|
3919
2929
|
}
|
|
3920
2930
|
],
|
|
3921
2931
|
"stateMutability": "nonpayable",
|
|
@@ -4060,98 +3070,16 @@
|
|
|
4060
3070
|
},
|
|
4061
3071
|
{
|
|
4062
3072
|
"internalType": "uint256",
|
|
4063
|
-
"name": "maxGasPrice",
|
|
4064
|
-
"type": "uint256"
|
|
4065
|
-
},
|
|
4066
|
-
{
|
|
4067
|
-
"internalType": "address",
|
|
4068
|
-
"name": "signer",
|
|
4069
|
-
"type": "address"
|
|
4070
|
-
}
|
|
4071
|
-
],
|
|
4072
|
-
"internalType": "struct EngineBlox.MetaTxParams",
|
|
4073
|
-
"name": "params",
|
|
4074
|
-
"type": "tuple"
|
|
4075
|
-
},
|
|
4076
|
-
{
|
|
4077
|
-
"internalType": "bytes32",
|
|
4078
|
-
"name": "message",
|
|
4079
|
-
"type": "bytes32"
|
|
4080
|
-
},
|
|
4081
|
-
{
|
|
4082
|
-
"internalType": "bytes",
|
|
4083
|
-
"name": "signature",
|
|
4084
|
-
"type": "bytes"
|
|
4085
|
-
},
|
|
4086
|
-
{
|
|
4087
|
-
"internalType": "bytes",
|
|
4088
|
-
"name": "data",
|
|
4089
|
-
"type": "bytes"
|
|
4090
|
-
}
|
|
4091
|
-
],
|
|
4092
|
-
"internalType": "struct EngineBlox.MetaTransaction",
|
|
4093
|
-
"name": "metaTx",
|
|
4094
|
-
"type": "tuple"
|
|
4095
|
-
}
|
|
4096
|
-
],
|
|
4097
|
-
"name": "updateTimeLockRequestAndApprove",
|
|
4098
|
-
"outputs": [
|
|
4099
|
-
{
|
|
4100
|
-
"components": [
|
|
4101
|
-
{
|
|
4102
|
-
"internalType": "uint256",
|
|
4103
|
-
"name": "txId",
|
|
4104
|
-
"type": "uint256"
|
|
4105
|
-
},
|
|
4106
|
-
{
|
|
4107
|
-
"internalType": "uint256",
|
|
4108
|
-
"name": "releaseTime",
|
|
4109
|
-
"type": "uint256"
|
|
4110
|
-
},
|
|
4111
|
-
{
|
|
4112
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4113
|
-
"name": "status",
|
|
4114
|
-
"type": "uint8"
|
|
4115
|
-
},
|
|
4116
|
-
{
|
|
4117
|
-
"components": [
|
|
4118
|
-
{
|
|
4119
|
-
"internalType": "address",
|
|
4120
|
-
"name": "requester",
|
|
4121
|
-
"type": "address"
|
|
4122
|
-
},
|
|
4123
|
-
{
|
|
4124
|
-
"internalType": "address",
|
|
4125
|
-
"name": "target",
|
|
4126
|
-
"type": "address"
|
|
4127
|
-
},
|
|
4128
|
-
{
|
|
4129
|
-
"internalType": "uint256",
|
|
4130
|
-
"name": "value",
|
|
4131
|
-
"type": "uint256"
|
|
4132
|
-
},
|
|
4133
|
-
{
|
|
4134
|
-
"internalType": "uint256",
|
|
4135
|
-
"name": "gasLimit",
|
|
4136
|
-
"type": "uint256"
|
|
4137
|
-
},
|
|
4138
|
-
{
|
|
4139
|
-
"internalType": "bytes32",
|
|
4140
|
-
"name": "operationType",
|
|
4141
|
-
"type": "bytes32"
|
|
4142
|
-
},
|
|
4143
|
-
{
|
|
4144
|
-
"internalType": "bytes4",
|
|
4145
|
-
"name": "executionSelector",
|
|
4146
|
-
"type": "bytes4"
|
|
3073
|
+
"name": "maxGasPrice",
|
|
3074
|
+
"type": "uint256"
|
|
4147
3075
|
},
|
|
4148
3076
|
{
|
|
4149
|
-
"internalType": "
|
|
4150
|
-
"name": "
|
|
4151
|
-
"type": "
|
|
3077
|
+
"internalType": "address",
|
|
3078
|
+
"name": "signer",
|
|
3079
|
+
"type": "address"
|
|
4152
3080
|
}
|
|
4153
3081
|
],
|
|
4154
|
-
"internalType": "struct EngineBlox.
|
|
3082
|
+
"internalType": "struct EngineBlox.MetaTxParams",
|
|
4155
3083
|
"name": "params",
|
|
4156
3084
|
"type": "tuple"
|
|
4157
3085
|
},
|
|
@@ -4162,42 +3090,28 @@
|
|
|
4162
3090
|
},
|
|
4163
3091
|
{
|
|
4164
3092
|
"internalType": "bytes",
|
|
4165
|
-
"name": "
|
|
3093
|
+
"name": "signature",
|
|
4166
3094
|
"type": "bytes"
|
|
4167
3095
|
},
|
|
4168
3096
|
{
|
|
4169
|
-
"
|
|
4170
|
-
|
|
4171
|
-
|
|
4172
|
-
"name": "recipient",
|
|
4173
|
-
"type": "address"
|
|
4174
|
-
},
|
|
4175
|
-
{
|
|
4176
|
-
"internalType": "uint256",
|
|
4177
|
-
"name": "nativeTokenAmount",
|
|
4178
|
-
"type": "uint256"
|
|
4179
|
-
},
|
|
4180
|
-
{
|
|
4181
|
-
"internalType": "address",
|
|
4182
|
-
"name": "erc20TokenAddress",
|
|
4183
|
-
"type": "address"
|
|
4184
|
-
},
|
|
4185
|
-
{
|
|
4186
|
-
"internalType": "uint256",
|
|
4187
|
-
"name": "erc20TokenAmount",
|
|
4188
|
-
"type": "uint256"
|
|
4189
|
-
}
|
|
4190
|
-
],
|
|
4191
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4192
|
-
"name": "payment",
|
|
4193
|
-
"type": "tuple"
|
|
3097
|
+
"internalType": "bytes",
|
|
3098
|
+
"name": "data",
|
|
3099
|
+
"type": "bytes"
|
|
4194
3100
|
}
|
|
4195
3101
|
],
|
|
4196
|
-
"internalType": "struct EngineBlox.
|
|
4197
|
-
"name": "",
|
|
3102
|
+
"internalType": "struct EngineBlox.MetaTransaction",
|
|
3103
|
+
"name": "metaTx",
|
|
4198
3104
|
"type": "tuple"
|
|
4199
3105
|
}
|
|
4200
3106
|
],
|
|
3107
|
+
"name": "updateTimeLockRequestAndApprove",
|
|
3108
|
+
"outputs": [
|
|
3109
|
+
{
|
|
3110
|
+
"internalType": "uint256",
|
|
3111
|
+
"name": "",
|
|
3112
|
+
"type": "uint256"
|
|
3113
|
+
}
|
|
3114
|
+
],
|
|
4201
3115
|
"stateMutability": "nonpayable",
|
|
4202
3116
|
"type": "function"
|
|
4203
3117
|
},
|
|
@@ -4453,105 +3367,9 @@
|
|
|
4453
3367
|
"name": "mintWithMetaTx",
|
|
4454
3368
|
"outputs": [
|
|
4455
3369
|
{
|
|
4456
|
-
"
|
|
4457
|
-
|
|
4458
|
-
|
|
4459
|
-
"name": "txId",
|
|
4460
|
-
"type": "uint256"
|
|
4461
|
-
},
|
|
4462
|
-
{
|
|
4463
|
-
"internalType": "uint256",
|
|
4464
|
-
"name": "releaseTime",
|
|
4465
|
-
"type": "uint256"
|
|
4466
|
-
},
|
|
4467
|
-
{
|
|
4468
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4469
|
-
"name": "status",
|
|
4470
|
-
"type": "uint8"
|
|
4471
|
-
},
|
|
4472
|
-
{
|
|
4473
|
-
"components": [
|
|
4474
|
-
{
|
|
4475
|
-
"internalType": "address",
|
|
4476
|
-
"name": "requester",
|
|
4477
|
-
"type": "address"
|
|
4478
|
-
},
|
|
4479
|
-
{
|
|
4480
|
-
"internalType": "address",
|
|
4481
|
-
"name": "target",
|
|
4482
|
-
"type": "address"
|
|
4483
|
-
},
|
|
4484
|
-
{
|
|
4485
|
-
"internalType": "uint256",
|
|
4486
|
-
"name": "value",
|
|
4487
|
-
"type": "uint256"
|
|
4488
|
-
},
|
|
4489
|
-
{
|
|
4490
|
-
"internalType": "uint256",
|
|
4491
|
-
"name": "gasLimit",
|
|
4492
|
-
"type": "uint256"
|
|
4493
|
-
},
|
|
4494
|
-
{
|
|
4495
|
-
"internalType": "bytes32",
|
|
4496
|
-
"name": "operationType",
|
|
4497
|
-
"type": "bytes32"
|
|
4498
|
-
},
|
|
4499
|
-
{
|
|
4500
|
-
"internalType": "bytes4",
|
|
4501
|
-
"name": "executionSelector",
|
|
4502
|
-
"type": "bytes4"
|
|
4503
|
-
},
|
|
4504
|
-
{
|
|
4505
|
-
"internalType": "bytes",
|
|
4506
|
-
"name": "executionParams",
|
|
4507
|
-
"type": "bytes"
|
|
4508
|
-
}
|
|
4509
|
-
],
|
|
4510
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
4511
|
-
"name": "params",
|
|
4512
|
-
"type": "tuple"
|
|
4513
|
-
},
|
|
4514
|
-
{
|
|
4515
|
-
"internalType": "bytes32",
|
|
4516
|
-
"name": "message",
|
|
4517
|
-
"type": "bytes32"
|
|
4518
|
-
},
|
|
4519
|
-
{
|
|
4520
|
-
"internalType": "bytes",
|
|
4521
|
-
"name": "result",
|
|
4522
|
-
"type": "bytes"
|
|
4523
|
-
},
|
|
4524
|
-
{
|
|
4525
|
-
"components": [
|
|
4526
|
-
{
|
|
4527
|
-
"internalType": "address",
|
|
4528
|
-
"name": "recipient",
|
|
4529
|
-
"type": "address"
|
|
4530
|
-
},
|
|
4531
|
-
{
|
|
4532
|
-
"internalType": "uint256",
|
|
4533
|
-
"name": "nativeTokenAmount",
|
|
4534
|
-
"type": "uint256"
|
|
4535
|
-
},
|
|
4536
|
-
{
|
|
4537
|
-
"internalType": "address",
|
|
4538
|
-
"name": "erc20TokenAddress",
|
|
4539
|
-
"type": "address"
|
|
4540
|
-
},
|
|
4541
|
-
{
|
|
4542
|
-
"internalType": "uint256",
|
|
4543
|
-
"name": "erc20TokenAmount",
|
|
4544
|
-
"type": "uint256"
|
|
4545
|
-
}
|
|
4546
|
-
],
|
|
4547
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4548
|
-
"name": "payment",
|
|
4549
|
-
"type": "tuple"
|
|
4550
|
-
}
|
|
4551
|
-
],
|
|
4552
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
4553
|
-
"name": "",
|
|
4554
|
-
"type": "tuple"
|
|
3370
|
+
"internalType": "uint256",
|
|
3371
|
+
"name": "txId",
|
|
3372
|
+
"type": "uint256"
|
|
4555
3373
|
}
|
|
4556
3374
|
],
|
|
4557
3375
|
"stateMutability": "nonpayable",
|
|
@@ -4733,105 +3551,9 @@
|
|
|
4733
3551
|
"name": "burnWithMetaTx",
|
|
4734
3552
|
"outputs": [
|
|
4735
3553
|
{
|
|
4736
|
-
"
|
|
4737
|
-
|
|
4738
|
-
|
|
4739
|
-
"name": "txId",
|
|
4740
|
-
"type": "uint256"
|
|
4741
|
-
},
|
|
4742
|
-
{
|
|
4743
|
-
"internalType": "uint256",
|
|
4744
|
-
"name": "releaseTime",
|
|
4745
|
-
"type": "uint256"
|
|
4746
|
-
},
|
|
4747
|
-
{
|
|
4748
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4749
|
-
"name": "status",
|
|
4750
|
-
"type": "uint8"
|
|
4751
|
-
},
|
|
4752
|
-
{
|
|
4753
|
-
"components": [
|
|
4754
|
-
{
|
|
4755
|
-
"internalType": "address",
|
|
4756
|
-
"name": "requester",
|
|
4757
|
-
"type": "address"
|
|
4758
|
-
},
|
|
4759
|
-
{
|
|
4760
|
-
"internalType": "address",
|
|
4761
|
-
"name": "target",
|
|
4762
|
-
"type": "address"
|
|
4763
|
-
},
|
|
4764
|
-
{
|
|
4765
|
-
"internalType": "uint256",
|
|
4766
|
-
"name": "value",
|
|
4767
|
-
"type": "uint256"
|
|
4768
|
-
},
|
|
4769
|
-
{
|
|
4770
|
-
"internalType": "uint256",
|
|
4771
|
-
"name": "gasLimit",
|
|
4772
|
-
"type": "uint256"
|
|
4773
|
-
},
|
|
4774
|
-
{
|
|
4775
|
-
"internalType": "bytes32",
|
|
4776
|
-
"name": "operationType",
|
|
4777
|
-
"type": "bytes32"
|
|
4778
|
-
},
|
|
4779
|
-
{
|
|
4780
|
-
"internalType": "bytes4",
|
|
4781
|
-
"name": "executionSelector",
|
|
4782
|
-
"type": "bytes4"
|
|
4783
|
-
},
|
|
4784
|
-
{
|
|
4785
|
-
"internalType": "bytes",
|
|
4786
|
-
"name": "executionParams",
|
|
4787
|
-
"type": "bytes"
|
|
4788
|
-
}
|
|
4789
|
-
],
|
|
4790
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
4791
|
-
"name": "params",
|
|
4792
|
-
"type": "tuple"
|
|
4793
|
-
},
|
|
4794
|
-
{
|
|
4795
|
-
"internalType": "bytes32",
|
|
4796
|
-
"name": "message",
|
|
4797
|
-
"type": "bytes32"
|
|
4798
|
-
},
|
|
4799
|
-
{
|
|
4800
|
-
"internalType": "bytes",
|
|
4801
|
-
"name": "result",
|
|
4802
|
-
"type": "bytes"
|
|
4803
|
-
},
|
|
4804
|
-
{
|
|
4805
|
-
"components": [
|
|
4806
|
-
{
|
|
4807
|
-
"internalType": "address",
|
|
4808
|
-
"name": "recipient",
|
|
4809
|
-
"type": "address"
|
|
4810
|
-
},
|
|
4811
|
-
{
|
|
4812
|
-
"internalType": "uint256",
|
|
4813
|
-
"name": "nativeTokenAmount",
|
|
4814
|
-
"type": "uint256"
|
|
4815
|
-
},
|
|
4816
|
-
{
|
|
4817
|
-
"internalType": "address",
|
|
4818
|
-
"name": "erc20TokenAddress",
|
|
4819
|
-
"type": "address"
|
|
4820
|
-
},
|
|
4821
|
-
{
|
|
4822
|
-
"internalType": "uint256",
|
|
4823
|
-
"name": "erc20TokenAmount",
|
|
4824
|
-
"type": "uint256"
|
|
4825
|
-
}
|
|
4826
|
-
],
|
|
4827
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4828
|
-
"name": "payment",
|
|
4829
|
-
"type": "tuple"
|
|
4830
|
-
}
|
|
4831
|
-
],
|
|
4832
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
4833
|
-
"name": "",
|
|
4834
|
-
"type": "tuple"
|
|
3554
|
+
"internalType": "uint256",
|
|
3555
|
+
"name": "txId",
|
|
3556
|
+
"type": "uint256"
|
|
4835
3557
|
}
|
|
4836
3558
|
],
|
|
4837
3559
|
"stateMutability": "nonpayable",
|