@bloxchain/contracts 1.0.0-alpha.13 → 1.0.0-alpha.15
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 +1 -1
- package/abi/BaseStateMachine.abi.json +2 -45
- package/abi/GuardController.abi.json +20 -63
- package/abi/RuntimeRBAC.abi.json +20 -63
- package/abi/SecureOwnable.abi.json +20 -63
- package/core/base/BaseStateMachine.sol +943 -967
- package/core/base/interface/IBaseStateMachine.sol +0 -8
- package/core/execution/GuardController.sol +447 -458
- package/core/execution/interface/IGuardController.sol +5 -19
- package/core/execution/lib/definitions/GuardControllerDefinitions.sol +22 -9
- package/core/lib/EngineBlox.sol +92 -89
- package/core/security/SecureOwnable.sol +394 -394
- package/package.json +1 -1
- package/abi/AccountBlox.abi.json +0 -3946
- package/abi/BareBlox.abi.json +0 -1378
- package/abi/RoleBlox.abi.json +0 -2994
- package/abi/SecureBlox.abi.json +0 -2753
- package/abi/SimpleRWA20.abi.json +0 -4032
- package/abi/SimpleRWA20Definitions.abi.json +0 -191
- package/abi/SimpleVault.abi.json +0 -3407
- package/abi/SimpleVaultDefinitions.abi.json +0 -269
|
@@ -97,14 +97,6 @@ interface IBaseStateMachine {
|
|
|
97
97
|
*/
|
|
98
98
|
function hasRole(bytes32 roleHash, address wallet) external view returns (bool);
|
|
99
99
|
|
|
100
|
-
/**
|
|
101
|
-
* @dev Returns if an action is supported by a function
|
|
102
|
-
* @param functionSelector The function selector to check
|
|
103
|
-
* @param action The action to check
|
|
104
|
-
* @return True if the action is supported by the function, false otherwise
|
|
105
|
-
*/
|
|
106
|
-
function isActionSupportedByFunction(bytes4 functionSelector, EngineBlox.TxAction action) external view returns (bool);
|
|
107
|
-
|
|
108
100
|
/**
|
|
109
101
|
* @dev Gets function schema information
|
|
110
102
|
* @param functionSelector The function selector to get information for
|