Version control and key management for Solana programs.
Install via Cargo like so:
cargo install --git https://github.com/saber-hq/captain --force
Then, in your directory containing your root Cargo.toml
, run the following command:
captain init
A Captain workflow works like so:
captain build
captain deploy
captain upgrade
First, build your programs using the command:
bash
captain build
This runs anchor build -v
if you have Anchor installed, and cargo build-bpf
if you don't have Anchor installed.
Once your new program is ready to be deployed to the blockchain, run:
captain deploy --program <program> --network <network>
where:
<network>
is one of mainnet
, devnet
, testnet
, localnet
, or debug
<program>
is the name of your program in the target/deploy/
directory. For example, if your program is at target/deploy/my_flash_loan_program.so
, your <program>
is my_flash_loan_program
.This does several things for you:
upgrade_authority
of <network>
in your Captain.toml
fileupgrade_authority
If you need to make changes to your program, you can run:
captain upgrade --program <program> --network <network>
This performs the following actions:
For support, join the Saber Discord at chat.saber.so!
Apache-2.0