Browse Source

created harness and script

Michael George 3 years ago
parent
commit
70cbfffc74

+ 6 - 0
certora/harnesses/ERC1155/ERC1155PausableHarness.sol

@@ -0,0 +1,6 @@
+import "../../munged/token/ERC1155/extensions/ERC1155Pausable.sol"
+
+contract ERC1155PausableHarness is ERC1155Pausable {
+
+}
+

+ 8 - 0
certora/scripts/verifyERC1155Pausable.sh

@@ -0,0 +1,8 @@
+certoraRun \
+    certora/harness/ERC1155/ERC1155PausableHarness.sol \
+    --verify ERC1155PausableHarness:certora/specs/ERC1155Pausable.spec \
+    --solc solc8.2 \
+    --optimistic_loop \
+    --loop_iter 3 \
+    --cloud \
+    --msg "ERC1155 Pausable verification"