-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fix-get-modules-paginated
- Loading branch information
Showing
12 changed files
with
816 additions
and
227 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"trailingComma": "es5", | ||
"semi": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@gnosis.pm/zodiac", | ||
"version": "3.3.2", | ||
"version": "3.3.4", | ||
"description": "Zodiac is a composable design philosophy and collection of standards for building DAO ecosystem tooling.", | ||
"author": "Auryn Macmillan <[email protected]>", | ||
"license": "LGPL-3.0+", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
[ | ||
{ | ||
"inputs": [], | ||
"name": "NotBFS", | ||
"type": "error" | ||
}, | ||
{ | ||
"inputs": [ | ||
{ | ||
"internalType": "uint256", | ||
"name": "index", | ||
"type": "uint256" | ||
} | ||
], | ||
"name": "UnsuitableChildCount", | ||
"type": "error" | ||
}, | ||
{ | ||
"inputs": [ | ||
{ | ||
"internalType": "uint256", | ||
"name": "index", | ||
"type": "uint256" | ||
} | ||
], | ||
"name": "UnsuitableChildTypeTree", | ||
"type": "error" | ||
}, | ||
{ | ||
"inputs": [ | ||
{ | ||
"internalType": "uint256", | ||
"name": "index", | ||
"type": "uint256" | ||
} | ||
], | ||
"name": "UnsuitableCompValue", | ||
"type": "error" | ||
}, | ||
{ | ||
"inputs": [ | ||
{ | ||
"internalType": "uint256", | ||
"name": "index", | ||
"type": "uint256" | ||
} | ||
], | ||
"name": "UnsuitableParameterType", | ||
"type": "error" | ||
}, | ||
{ | ||
"inputs": [ | ||
{ | ||
"internalType": "uint256", | ||
"name": "index", | ||
"type": "uint256" | ||
} | ||
], | ||
"name": "UnsuitableParent", | ||
"type": "error" | ||
}, | ||
{ | ||
"inputs": [], | ||
"name": "UnsuitableRootNode", | ||
"type": "error" | ||
}, | ||
{ | ||
"inputs": [ | ||
{ | ||
"internalType": "uint256", | ||
"name": "index", | ||
"type": "uint256" | ||
} | ||
], | ||
"name": "UnsupportedOperator", | ||
"type": "error" | ||
}, | ||
{ | ||
"inputs": [ | ||
{ | ||
"components": [ | ||
{ | ||
"internalType": "uint8", | ||
"name": "parent", | ||
"type": "uint8" | ||
}, | ||
{ | ||
"internalType": "enum ParameterType", | ||
"name": "paramType", | ||
"type": "ParameterType" | ||
}, | ||
{ | ||
"internalType": "enum Operator", | ||
"name": "operator", | ||
"type": "Operator" | ||
}, | ||
{ | ||
"internalType": "bytes", | ||
"name": "compValue", | ||
"type": "bytes" | ||
} | ||
], | ||
"internalType": "struct ConditionFlat[]", | ||
"name": "conditions", | ||
"type": "tuple[]" | ||
} | ||
], | ||
"name": "enforce", | ||
"outputs": [], | ||
"stateMutability": "pure", | ||
"type": "function" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[ | ||
{ | ||
"inputs": [ | ||
{ | ||
"components": [ | ||
{ | ||
"internalType": "uint8", | ||
"name": "parent", | ||
"type": "uint8" | ||
}, | ||
{ | ||
"internalType": "enum ParameterType", | ||
"name": "paramType", | ||
"type": "ParameterType" | ||
}, | ||
{ | ||
"internalType": "enum Operator", | ||
"name": "operator", | ||
"type": "Operator" | ||
}, | ||
{ | ||
"internalType": "bytes", | ||
"name": "compValue", | ||
"type": "bytes" | ||
} | ||
], | ||
"internalType": "struct ConditionFlat[]", | ||
"name": "conditionsFlat", | ||
"type": "tuple[]" | ||
} | ||
], | ||
"name": "pack", | ||
"outputs": [ | ||
{ | ||
"internalType": "bytes", | ||
"name": "buffer", | ||
"type": "bytes" | ||
} | ||
], | ||
"stateMutability": "pure", | ||
"type": "function" | ||
} | ||
] |
Oops, something went wrong.