mirror of https://github.com/crytic/slither
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
237 B
10 lines
237 B
6 years ago
|
#!/usr/bin/env bash
|
||
|
pip install -r requirements.txt
|
||
|
|
||
|
function install_solc {
|
||
|
sudo wget -O /usr/bin/solc https://github.com/ethereum/solidity/releases/download/v0.4.23/solc-static-linux
|
||
|
sudo chmod +x /usr/bin/solc
|
||
|
}
|
||
|
|
||
|
install_solc
|