Skip to content

Commit

Permalink
cmt
Browse files Browse the repository at this point in the history
  • Loading branch information
wertikalk committed May 13, 2024
1 parent b83fbaf commit 70baf0a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 16 deletions.
30 changes: 15 additions & 15 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -155,35 +155,35 @@ test_hh_calibnet:

security_account_api:
myth analyze contracts/v0.8/AccountAPI.sol --execution-timeout 300 --solv 0.8.18 --solc-json mythril.solc.json
myth analyze contracts/v0.8/tests/account.test.sol --execution-timeout 300 --solv 0.8.18
myth analyze contracts/v0.8/tests/account.test.sol --execution-timeout 300 --solv 0.8.18 --solc-json mythril.solc.json

security_market_api:
myth analyze contracts/v0.8/MarketAPI.sol --execution-timeout 300
myth analyze contracts/v0.8/tests/market.test.sol --execution-timeout 300
myth analyze contracts/v0.8/MarketAPI.sol --execution-timeout 300 --solv 0.8.18 --solc-json mythril.solc.json
myth analyze contracts/v0.8/tests/market.test.sol --execution-timeout 300 --solv 0.8.18 --solc-json mythril.solc.json

security_miner_api:
myth analyze contracts/v0.8/MinerAPI.sol --execution-timeout 300
myth analyze contracts/v0.8/tests/miner.test.sol --execution-timeout 300
myth analyze contracts/v0.8/MinerAPI.sol --execution-timeout 300 --solv 0.8.18 --solc-json mythril.solc.json
myth analyze contracts/v0.8/tests/miner.test.sol --execution-timeout 300 --solv 0.8.18 --solc-json mythril.solc.json

security_verifreg_api:
myth analyze contracts/v0.8/VerifRegAPI.sol --execution-timeout 300
myth analyze contracts/v0.8/tests/verifreg.test.sol --execution-timeout 300
myth analyze contracts/v0.8/VerifRegAPI.sol --execution-timeout 300 --solv 0.8.18 --solc-json mythril.solc.json
myth analyze contracts/v0.8/tests/verifreg.test.sol --execution-timeout 300 --solv 0.8.18 --solc-json mythril.solc.json

security_power_api:
myth analyze contracts/v0.8/PowerAPI.sol --execution-timeout 300
myth analyze contracts/v0.8/tests/power.test.sol --execution-timeout 300
myth analyze contracts/v0.8/PowerAPI.sol --execution-timeout 300 --solv 0.8.18 --solc-json mythril.solc.json
myth analyze contracts/v0.8/tests/power.test.sol --execution-timeout 300 --solv 0.8.18 --solc-json mythril.solc.json

security_datacap_api:
myth analyze contracts/v0.8/DataCapAPI.sol --execution-timeout 300
myth analyze contracts/v0.8/tests/datacap.test.sol --execution-timeout 300
myth analyze contracts/v0.8/DataCapAPI.sol --execution-timeout 300 --solv 0.8.18 --solc-json mythril.solc.json
myth analyze contracts/v0.8/tests/datacap.test.sol --execution-timeout 300 --solv 0.8.18 --solc-json mythril.solc.json

security_send_api:
myth analyze contracts/v0.8/SendAPI.sol --execution-timeout 300
myth analyze contracts/v0.8/tests/send.test.sol --execution-timeout 300
myth analyze contracts/v0.8/SendAPI.sol --execution-timeout 300 --solv 0.8.18 --solc-json mythril.solc.json
myth analyze contracts/v0.8/tests/send.test.sol --execution-timeout 300 --solv 0.8.18 --solc-json mythril.solc.json

security_precompiles_api:
myth analyze contracts/v0.8/PrecompilesAPI.sol --execution-timeout 300
myth analyze contracts/v0.8/tests/precompiles.test.sol --execution-timeout 300
myth analyze contracts/v0.8/PrecompilesAPI.sol --execution-timeout 300 --solv 0.8.18 --solc-json mythril.solc.json
myth analyze contracts/v0.8/tests/precompiles.test.sol --execution-timeout 300 --solv 0.8.18 --solc-json mythril.solc.json

################ DEPS ################

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,5 +168,6 @@ _**Information for `filecoin-solidity` lib developers is contained in [./lib-dev






6 changes: 5 additions & 1 deletion mythril.solc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
{
"remappings": [ "solidity-cborutils/contracts/=node_modules/solidity-cborutils/contracts/"]
"remappings": [
"solidity-cborutils/contracts/=node_modules/solidity-cborutils/contracts/",
"@ensdomains/buffer/contracts/=node_modules/@ensdomains/buffer/contracts"
]

}

0 comments on commit 70baf0a

Please sign in to comment.