goki-cli

CLI for the Goki Smart Wallet system.

Installation

First, make sure you have Solana installed. Follow the instructions here.

Next, install Goki via Cargo like so:

cargo install --git https://github.com/GokiProtocol/goki-cli --locked

Usage

Setup

Go to any directory and run the following command:

goki init

This will create a .goki directory, which you should add to your .gitignore.

The .goki directory contains keypairs that will contain the SOL you use for program deployment. You may want to back up this folder via an encrypted filestore such as Keybase. You should not be storing any sensitive funds in this wallet-- only use this for program deploys.

Upgrading a Program

To upgrade any existing program on Solana, run goki upload-program-buffer.

``` Uploads a Solana program buffer.

USAGE: goki upload-program-buffer [OPTIONS] --location --program-id

OPTIONS: -c, --cluster Cluster to deploy to. Defaults to devnet. [default: devnet] -h, --help Print help information -l, --location The path to the Solana program buffer. -p, --program-id The program being upgraded. The buffer authority will be the ```

For example, let's say you wanted to upgrade the Goki Smart Wallet program on mainnet. You would run the following command:

goki upload-program-buffer --cluster mainnet --location gh:smart_wallet:GokiProtocol/goki@0.5.2 --program-id GokivDYuQXPZCWRkwMhdH2h91KpDQXBEmpgBgs55bnpH

If the command is successful, you should now have a buffer of the Goki Smart Wallet program at release v0.5.2 deployed somewhere on mainnet.

If you don't have enough SOL in your wallet, the command will fail and tell you what key you should be sending SOL to.

Location

There are three formats of location that you may specify:

License

AGPL-3.0