Max Cote

Results 2 issues of Max Cote

Fixes #427 Adds the following functions: - `encodeParam(Param param) internal pure returns (uint256)` - `encodeParams(Param[] params) internal pure returns (uint256[])` I didn't add the `encodeParam(uint8 id, uint8 op, uint240 value)`...

Currently, ACL parameters are created with the `Param` struct: ```solidity struct Param { uint8 id; uint8 op; uint240 value; } ``` but the ACL `grantPermissionP` function takes a `uint256[]` for...

enhancement