captain 🧑‍✈️

Crates.io License Build Status Contributors

Version control and key management for Solana programs.

Setup

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

Usage

A Captain workflow works like so:

  1. Build your latest programs via captain build
  2. Deploy any new programs with captain deploy
  3. Upgrade any new programs with captain upgrade

Build

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.

Deploy

Once your new program is ready to be deployed to the blockchain, run:

captain deploy --program <program> --network <network>

where:

This does several things for you:

Upgrading

If you need to make changes to your program, you can run:

captain upgrade --program <program> --network <network>

This performs the following actions:

Support

For support, join the Saber Discord at chat.saber.so!

License

Apache-2.0