Solcix is a Solidity version manager written in Python that allows for seamless switching between versions, easy compilation, and simple management of artifacts.
To install Solcix, you can use pip, the Python package manager:
pip install solcixpip3 install solcixpipx installs packages in their own virtual environment, so there's less chance of conflicting dependencies. You can run the following command in your terminal to install:
pipx install solcixUses the poetry package manager to install solcix in a project-specific virtual environment. poetry manages dependencies for you and allows you to isolate your project from the global environment. You can run the following command in your terminal to add solcix to your poetry project, and use our wrapped solc api in your code:
poetry add solcixUses the pipenv package manager to install solcix in a project-specific virtual environment. pipenv also manages dependencies and isolates your project from the global environment, and use our wrapped solc api in your code. You can run the following command in your terminal to install:
pipenv install solcixYou can also install solcix from github main branch:
pip install git+https://github.com/Solratic/solcix.git@mainEnable auto-completion for solcix by running the following command:
_SOLCIX_COMPLETE=bash_source solcix > ~/.solcix-complete.bash
source ~/.solcix-complete.bash_SOLCIX_COMPLETE=zsh_source solcix > ~/.solcix-complete.zsh
source ~/.solcix-complete.zsh_SOLCIX_COMPLETE=fish_source solcix > ~/.config/fish/completions/solcix.fishSolcix can be used as a library or as a command line tool. Here are the available commands:
The ls command can be used to list all available versions of the Solidity compiler:
Example usage:
solcix lsThe install command can be used to install one or more versions of the Solidity compiler:
Example usage:
solcix install 0.8.4 0.7.6 latestThe installed command can be used to list all available versions of the Solidity compiler:
Example usage:
solcix installedIf global / local version is set, it will be displayed as below:
0.5.0
0.8.0
0.8.16
0.8.17
0.8.18 <- current
0.8.19The use command can be used to switch between installed versions of the Solidity compiler, either globally or locally.
-
If the specified version is not installed, it will be installed automatically.
-
If you use the
localoption, it will create a.solcixfile in the current directory.
Example usage:
# Setting global version to 0.8.16
solcix use global 0.8.16# Setting local version to 0.8.16, it will create a .solcix file in the current directory
solcix use local 0.8.16# You can also use the alias `latest` to use the latest version
solcix use global latestSimply run the command will see the changes:
solc --versionThe current command can be used to show the current version of the Solidity compiler (local version takes precedence over global version):
Example usage:
solcix currentThe uninstall command can be used to uninstall one or more versions of the Solidity compiler:
solcix uninstall 0.8.4 0.7.6To uninstall all versions of Solidity compiler that have been installed using solcix, you can use the following command:
solcix purgeThis will remove all versions of the Solidity compilers that have been installed by solcix, all cached files, and the solcix configuration file (local config takes precedence over global config).
The verify command is used to verify the checksums of installed solc binaries and to reinstall any that are malformed.
Example usage:
solcix verify 0.8.0 0.8.1The clear command is used to remove all cached files. The cache is used to store the downloaded file list. The binary will not be deleted.
Example usage:
solcix clearThe compile command is used to compile Solidity files and print the result. If the output is a TTY, the result will be formatted. Otherwise, the result will be printed as a JSON string.
Example usage:
solcix compile <file.sol>The command also supports the -o or --output option to specify an output directory for the compilation result.
Example usage:
solcix compile <filename>.sol -o <output_dir>Additional optional arguments can be passed to the command using the kwargs argument, it will be taken by the solc command.
Example usage:
solcix compile <file.sol> --optimize=True --optimize-runs=200 --overwrite=TrueOr you can redirect the output to a single json file:
solcix compile <file.sol> > output.jsonThe resolve command is used to determine the recommended solc version for a Solidity file based on its pragma statement. It can also be used to list all versions that are compatible with the Solidity file.
Example usage:
solcix resolve <file.sol>By default, the command prints the recommended solc version for the Solidity file.
Solidity Example:
// SPDX-License-Identifier: MIT
// compiler version must be `0.8.5`, `0.8.6` or `0.8.7`
pragma solidity >=0.8.5 <=0.8.7;
contract HelloWorld {
string public greet = "Hello World!";
}Example output:
The recommended version is 0.8.5, use `solcix resolve --no-recommand` to see all compatible versions.If the --no-recommand option is used, the command will print all compatible versions for the Solidity file.
Example output:
These versions are compatible with the pragma.
0.8.5
0.8.6
0.8.7The upgrade command is used to upgrade the architecture of the installed solc binaries, it will remove all old binaries and download the new ones.
Example usage:
pip3 install -U
# Migrate to the new architecture and Reinstall all binaries
solcix upgradeWe would like to thank the original projects solc-select and py-solc-x for providing excellent code base, upon which we have optimized and improved to make the project more robust and user-friendly.
Our project is an improved and optimized version of solc-select and py-solc-x, with more features and excellent performance.
If you enjoyed the original projects, we strongly recommend trying out our project to enjoy a better user experience and more efficient code execution.