CLI for the Goki Smart Wallet system.
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
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.
To upgrade any existing program on Solana, run goki upload-program-buffer
.
``` Uploads a Solana program buffer.
USAGE:
goki upload-program-buffer [OPTIONS] --location
OPTIONS:
-c, --cluster
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.
There are three formats of location
that you may specify:
.so
artifact of a GitHub release, for example gh:smart_wallet:GokiProtocol/goki@0.5.2
https://github.com/GokiProtocol/goki/releases/download/v0.5.2/smart_wallet.so
./target/deploy/smart_wallet.so
.AGPL-3.0