You can install Pop CLI from crates.io:
cargo install --force --locked pop-cliℹ️ Pop CLI requires Rust 1.81 or later.
You can also install Pop CLI using the Pop CLI GitHub repo:
cargo install --locked --git https://github.com/r0gue-io/pop-cliℹ️ For detailed instructions on how to install Pop CLI, please refer to our documentation: https://learn.onpop.io/v/cli/installing-pop-cli
Pop CLI collects anonymous usage metrics to help us understand how the tool is being used and how we can improve it. We do not collect any personal information. If you wish to disable telemetry or read more about our telemetry practices please see our telemetry documentation.
On the Pop Docs website you will find:
Build the tool locally with all the features:
cargo build --all-featuresBuild the tool only for Parachain functionality:
cargo build --no-default-features --features parachainBuild the tool only for Smart Contracts functionality:
cargo build --no-default-features --features contractTo test the tool locally. Due to the time it can take to build a Parachain or a Smart Contract, some tests have been separated from the normal testing flow into integration tests.
Run the unit tests only:
cargo test --libTo run the integration tests relating to Smart Contracts:
cargo test --test contractTo run the integration tests relating to Parachains:
cargo test --test parachainRun all tests (unit + integration):
cargo testPop CLI would not be possible without these awesome crates!
- Local network deployment powered by zombienet-sdk
- cargo contract a setup and deployment tool for developing Wasm based Smart Contracts via ink!
- Build deterministic runtimes powered by srtool-cli
The entire code within this repository is licensed under the GPLv3.
Please contact us if you have questions about the licensing of our products.