@bloxchain/contracts 1.0.0-alpha.15 → 1.0.0-alpha.16
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/abi/BaseStateMachine.abi.json +5 -0
- package/abi/GuardController.abi.json +5 -0
- package/abi/GuardControllerDefinitions.abi.json +5 -0
- package/abi/IDefinition.abi.json +5 -0
- package/abi/RuntimeRBAC.abi.json +5 -0
- package/abi/RuntimeRBACDefinitions.abi.json +5 -0
- package/abi/SecureOwnable.abi.json +5 -0
- package/abi/SecureOwnableDefinitions.abi.json +5 -0
- package/core/access/lib/definitions/RuntimeRBACDefinitions.sol +290 -288
- package/core/base/BaseStateMachine.sol +947 -943
- package/core/execution/GuardController.sol +1 -0
- package/core/execution/lib/definitions/GuardControllerDefinitions.sol +514 -506
- package/core/lib/EngineBlox.sol +32 -7
- package/core/security/lib/definitions/SecureOwnableDefinitions.sol +802 -786
- package/package.json +1 -1
|
@@ -439,6 +439,7 @@ abstract contract GuardController is BaseStateMachine {
|
|
|
439
439
|
functionSelector,
|
|
440
440
|
operationName,
|
|
441
441
|
supportedActionsBitmap,
|
|
442
|
+
true, // enforceHandlerRelations for dynamically registered execution selectors
|
|
442
443
|
false, // isProtected = false for dynamically registered functions
|
|
443
444
|
executionHandlers // handlerForSelectors with self-reference for execution selectors
|
|
444
445
|
);
|