Soldeer is a package manager for Solidity built in Rust.
Solidity development started to become more and more complex. The need for a package manager was evident. This project was started to solve the following issues:
- git submodules in foundry are not a good solution for managing dependencies
- npmjs was built for the js ecosystem not for solidity
- github versioning of the releases is a pain and not all the projects are using it correctly
Save the dependency key as the dependency name to respect the Cargo.toml format. For multiple versions for the same dependency an issue has been created to be added as a feature #34. For now the dependency name is the key in the toml file.
In 0.2.6 the sdependencies
has been renamed to dependencies
. Furthermore a dependency now stored in the toml respects Cargo toml format with version
and url
included.
Soldeer has 3 parts:
- soldeer cli - standalone tool that can be used for managing dependencies on project, it is independent and not tied to foundry
- soldeer repository - a central repository used to store various packages. Anyone can push their own packages as public. The repository works like npmjs or crates.io
- soldeer foundry (in progress) - a foundry plugin that will allow you to use soldeer in your foundry projects directly from forge
The Soldeer cli is a standalone tool that can be used to manage dependencies in your project. It is not tied to foundry and can be used in any project.
The cli can also be used alongside foundry as well by installing dependencies in a new directory called dependencies
and also it can be used to update the remappings in the remappings.txt
file.
In order to use the cli you have to install it via cargo:
cargo install soldeer
The above command will install soldeer
in your ~/.cargo/bin
folder. Ensure it's added to your PATH if it isn't already (usually it is).
Then you have to create a soldeer.toml
file in the root of your project. The file should look like this:
[remappings]
enabled = true
[dependencies]
The remappings
option let's you enable or disable the remappings autocompletion. If you set it to true
then the remappings will be automatically updated when you install a new dependency.
The dependencies
option is used to store the dependencies that you install via the soldeer install <dependency>~<version>
command.
If you want to use it with the foundry you can skip the creation of the soldeer.toml
file and use the foundry.toml
file instead. You just have to add the dependencies
option in the foundry.toml
file and the remappings will be updated automatically.
Example of foundry configuration:
[profile.default]
auto_detect_solc = false
bytecode_hash = "none"
cbor_metadata = false
.... other foundry config
[dependencies]
Even if the [dependencies]
is empty, this will tell to soldeer to use the foundry.toml
file for the dependencies management.
If you do not define a soldeer.toml
with the enabled
field or a foundry.toml
with the dependencies
field, the remappings will not be updated and you will receive a warning.
cargo install soldeer
soldeer help
cargo build --release
and use the soldeer
binary from target/release/
.
Soldeer
is straightforward. It can work with foundry.toml
file or you can create a soldeer.toml
. From version 0.1.5
you can skip the creation of the soldeer.toml
if you want to use just the foundry.toml
file.
Add the dependencies by using
soldeer install <dependency_name>~<version>
To search if the dependency is available, visit https://soldeer.xyz.
Additionally, you can install a dependency from any zip file located at any URL:
soldeer install <dependency_name>~<version> <url>
This command will download the zip file of the dependency, unzip it, install it in the dependencies
directory.
In order to push a new dependency to the repository you have create an account on https://soldeer.xyz, create a project that it will match the dependency name.
Example:
Create a project called my-project
and then use the soldeer push my-project~v1.0
. This will push the project to the repository and it will be available for everyone to use.
Before using the push command you have to use soldeer login
to login to the repository.
For more commands use soldeer help
.
Once the foundry integration is finished, you will be able to use soldeer directly from foundry by using forge soldeer ...
.
You will have the same commands as in the standalone version.
The "add to remappings" feature only appends to the remappings.txt file and does not delete old dependencies. If you want to remove a dependency from remappings, you must do it manually.
If you use other dependency managers, such as git submodules or npm, ensure you don't duplicate dependencies between soldeer and the other manager.
The goal of Soldeer is to be integrated into the pipelines of every open-source project, such as OpenZeppelin, Solady, Uniswap, etc. The maintainers of these projects can push their own dependencies to the repository, and the community can use them. Until that happens, the Soldeer maintenance team (currently m4rio.eth) will push the most used dependencies to the repository by relying on the npmjs versions or GitHub. We are using this software to crawl and push the dependencies under the soldeer
organization.
For those who want an extra layer of security, a SHA is generated in the soldeer.lock
file for the dependencies that are installed. Some of the projects are truncated, e.g., for OpenZeppelin, only the contracts
directory is pushed to the repository, so you will have to check the SHA against the original version's contracts directory.
For Project Maintainers
If you want to move your project from the Soldeer organization and take care of pushing the versions to Soldeer yourself, please open an issue or contact me on X (formerly Twitter).