Browse Source

Added modified scripts to run previous ERC1155 spec

Thomas Adams 3 years ago
parent
commit
69d9ebfcdf
2 changed files with 24 additions and 0 deletions
  1. 11 0
      certora/scripts/verifyERC1155All.sh
  2. 13 0
      certora/scripts/verifyERC1155Specific.sh

+ 11 - 0
certora/scripts/verifyERC1155All.sh

@@ -0,0 +1,11 @@
+make -C certora munged
+
+certoraRun \
+    certora/munged/token/ERC1155/ERC1155.sol \
+    --verify ERC1155:certora/specs/ERC1155.spec \
+    --solc solc8.2 \
+    --optimistic_loop \
+    --loop_iter 3 \
+    --cloud \
+    --send_only \
+    --msg "ERC1155 Burnable verification all rules"

+ 13 - 0
certora/scripts/verifyERC1155Specific.sh

@@ -0,0 +1,13 @@
+make -C certora munged
+
+certoraRun \
+    certora/munged/token/ERC1155/ERC1155.sol \
+    --verify ERC1155:certora/specs/ERC1155.spec \
+    --solc solc8.2 \
+    --optimistic_loop \
+    --loop_iter 3 \
+    --cloud \
+    --send_only \
+    --rule $1 \
+    --msg "ERC1155 Burnable verification specific rule $1"
+