Crates.io | squads-multisig-cli |
lib.rs | squads-multisig-cli |
version | 0.1.3 |
source | src |
created_at | 2024-01-27 14:41:17.434569 |
updated_at | 2024-02-27 22:23:56.580285 |
description | Command line interface to interact with the Squads v4 program. |
homepage | |
repository | |
max_upload_size | |
id | 1116749 |
size | 204,907 |
The following is an overview of commands available to interact with the Squads V4 program via CLI.
Overview
You can install the CLI with Cargo. For this an installation of Rust will be needed. You can find installation steps here.
Now, install the Squads CLI.
cargo install squads-multisig-cli
The Squads CLI has exactly the same wallet support as the Solana CLI, meaning it supports file system wallets as well as Ledger hardware wallets.
You can easily use your local filesystem wallet by using it as the "keypair" argument in commands.
squads-multisig-cli example-command --keypair /path/to/keypair.json
This specifies the path of the Keypair that you want to use to sign a CLI transaction.
To use a Ledger with the Squads CLI, just specify the Ledger device URL in the "keypair" argument.
squads-multisig-cli example-command --keypair usb://ledger
This will use the default derivation path of your Ledger.
squads-multisig-cli example-command --keypair usb://ledger/BsNsvfXqQTtJnagwFWdBS7FBXgnsK8VZ5CmuznN85swK?key=0/0
This specifies a custom derivation path. You can read more about it here.
Creates a new configuration proposal transaction for a specific action.
config_transaction_create --rpc_url <RPC_URL> --program_id <PROGRAM_ID> --keypair <KEYPAIR_PATH> --multisig_pubkey <MULTISIG_PUBLIC_KEY> --action <ACTION> [--memo <MEMO>]
--rpc_url <RPC_URL>
: (Optional) The URL of the Solana RPC endpoint. Defaults to mainnet if not specified.--program_id <PROGRAM_ID>
: (Optional) The ID of the multisig program. Defaults to a standard ID if not specified.--keypair <KEYPAIR_PATH>
: Path to your keypair file.--multisig_pubkey <MULTISIG_PUBLIC_KEY>
: The public key of the multisig account.--action <ACTION>
: The action to execute. Format depends on the action type.--memo <MEMO>
: (Optional) A memo for the transaction.Add a New Member:
config_transaction_create --keypair /path/to/keypair.json --multisig_pubkey <MULTISIG_PUBLIC_KEY> --action "AddMember <NEW_MEMBER_PUBLIC_KEY> <PERMISSIONS>"
Adds a new member to the multisig configuration with specified permissions. Permissions: 1: Initiate only 7: All permissions (Initiate, Approve, Execute)
Remove a Member:
config_transaction_create --keypair /path/to/keypair.json --multisig_pubkey <MULTISIG_PUBLIC_KEY> --action "RemoveMember <MEMBER_PUBLIC_KEY>"
Removes an existing member from the multisig configuration.
Change Threshold:
config_transaction_create --keypair /path/to/keypair.json --multisig_pubkey <MULTISIG_PUBLIC_KEY> --action "ChangeThreshold <NEW_THRESHOLD>"
Changes the threshold number of signatures required for executing multisig transactions.
Set Time Lock:
config_transaction_create --keypair /path/to/keypair.json --multisig_pubkey <MULTISIG_PUBLIC_KEY> --action "SetTimeLock <TIME_LOCK_VALUE>"
Sets a time lock for the multisig account.
Add Spending Limit:
config_transaction_create --keypair /path/to/keypair.json --multisig_pubkey <MULTISIG_PUBLIC_KEY> --action "AddSpendingLimit <CREATE_KEY> <VAULT_INDEX> <MINT> <AMOUNT> <PERIOD> <MEMBERS> <DESTINATIONS>"
Adds a spending limit to the multisig account.
Remove Spending Limit:
config_transaction_create --keypair /path/to/keypair.json --multisig_pubkey <MULTISIG_PUBLIC_KEY> --action "RemoveSpendingLimit <SPENDING_LIMIT_PUBKEY>"
Removes an existing spending limit from the multisig account.
Set Rent Collector:
config_transaction_create --keypair /path/to/keypair.json --multisig_pubkey <MULTISIG_PUBLIC_KEY> --action "SetRentCollector <NEW_RENT_COLLECTOR_PUBKEY>"
Sets a new rent collector for the multisig account.
Executes a proposed transaction for a multisig configuration change. This command is used to execute configuration transactions once they have reached threshold.
config_transaction_execute --rpc_url <RPC_URL> --program_id <PROGRAM_ID> --keypair <KEYPAIR_PATH> --multisig_pubkey <MULTISIG_PUBLIC_KEY> --transaction_index <TRANSACTION_INDEX>
--rpc_url <RPC_URL>
: (Optional) The URL of the Solana RPC endpoint. Defaults to mainnet if not specified.--program_id <PROGRAM_ID>
: (Optional) The ID of the multisig program. Defaults to a standard ID if not specified.--keypair <KEYPAIR_PATH>
: Path to your keypair file.--multisig_pubkey <MULTISIG_PUBLIC_KEY>
: The public key of the multisig account.--transaction_index <TRANSACTION_INDEX>
: The index of the transaction to be executed.config_transaction_execute --keypair /path/to/keypair.json --multisig_pubkey <MULTISIG_PUBLIC_KEY> --transaction_index 1
Creates a new multisig with initial members and threshold configuration.
multisig_create --rpc_url <RPC_URL> --program_id <PROGRAM_ID> --keypair <KEYPAIR_PATH> --config_authority <CONFIG_AUTHORITY> --members <MEMBER_1> <MEMBER_2> ... --threshold <THRESHOLD>
--rpc_url <RPC_URL>
: (Optional) The URL of the Solana RPC endpoint. Defaults to mainnet if not specified.--program_id <PROGRAM_ID>
: (Optional) The ID of the multisig program. Defaults to a standard ID if not specified.--keypair <KEYPAIR_PATH>
: Path to your keypair file.--config_authority <CONFIG_AUTHORITY>
: (Optional) Address of the Program Config Authority.--members <MEMBER_...>
: List of members' public keys, separated by spaces.--threshold <THRESHOLD>
: The threshold number of signatures required for executing multisig transactions.--rent_collector <RENT_COLLECTOR>
: The Public key that will be able to reclaim rent from canceled and executed transactions.Creating a Multisig with Two Members:
multisig_create --keypair /path/to/keypair.json --members "Member1PubKey,Permission1" "Member2PubKey,Permission2" --threshold 2
Creates a new multisig account with two members and a threshold of 2.
Creating a Multisig with Config Authority:
multisig_create --keypair /path/to/keypair.json --config_authority <CONFIG_AUTHORITY_PUBKEY> --members "Member1PubKey,Permission1" "Member2PubKey,Permission2" --threshold 1
Initializes a multisig account with a specified config authority and a threshold of 1.
Creating a Multisig with Rent Collector:
multisig_create --keypair /path/to/keypair.json --config_authority <RENT_COLLECTOR_PUBKEY> --members "Member1PubKey,Permission1" "Member2PubKey,Permission2" --threshold 1
Initializes a multisig account with a specified rent collector and a threshold of 1.
Casts a vote on a proposed transaction proposal. This command allows a member of a multisig to approve, reject, or cancel a transaction proposal.
proposal_vote --rpc_url <RPC_URL> --program_id <PROGRAM_ID> --keypair <KEYPAIR_PATH> --multisig_pubkey <MULTISIG_PUBLIC_KEY> --transaction_index <TRANSACTION_INDEX> --action <ACTION> [--memo <MEMO>]
--rpc_url <RPC_URL>
: (Optional) The URL of the Solana RPC endpoint. Defaults to mainnet if not specified.--program_id <PROGRAM_ID>
: (Optional) The ID of the multisig program. Defaults to a standard ID if not specified.--keypair <KEYPAIR_PATH>
: Path to your keypair file.--multisig_pubkey <MULTISIG_PUBLIC_KEY>
: The public key of the multisig account.--transaction_index <TRANSACTION_INDEX>
: The index of the transaction to vote on.--action <ACTION>
: The vote action to cast (Approve, Reject, Cancel).--memo <MEMO>
: (Optional) A memo for the vote.Approving a Transaction:
proposal_vote --keypair /path/to/keypair.json --multisig_pubkey <MULTISIG_PUBLIC_KEY> --transaction_index 1 --action Approve
Casts an approval vote for the transaction at index 1 in the specified multisig account.
Rejecting a Transaction:
proposal_vote --keypair /path/to/keypair.json --multisig_pubkey <MULTISIG_PUBLIC_KEY> --transaction_index 1 --action Reject
Casts a rejection vote for the transaction at index 1.
Cancelling a Transaction:
proposal_vote --keypair /path/to/keypair.json --multisig_pubkey <MULTISIG_PUBLIC_KEY> --transaction_index 1 --action Cancel
Cancels the transaction at index 1 in the multisig account.
Closes the proposal and transaction accounts associated with a specific Vault Transaction. The rent will be returned to the multisigs "rent_collector".
vault_transaction_accounts_close --rpc_url <RPC_URL> --program_id <PROGRAM_ID> --keypair <KEYPAIR_PATH> --multisig_pubkey <MULTISIG_PUBLIC_KEY> --transaction_index <TRANSACTION_INDEX> --rent_collector <RENT_COLLECTOR_PUBKEY>
--rpc_url <RPC_URL>
: (Optional) The URL of the Solana RPC endpoint. Defaults to mainnet if not specified.--program_id <PROGRAM_ID>
: (Optional) The ID of the multisig program. Defaults to a standard ID if not specified.--keypair <KEYPAIR_PATH>
: Path to your keypair file.--multisig_pubkey <MULTISIG_PUBLIC_KEY>
: The public key of the multisig account.--transaction_index <TRANSACTION_INDEX>
: The index of the transaction whose accounts are to be closed.--rent_collector <RENT_COLLECTOR_PUBKEY>
: The public key of the account responsible for collecting rent.vault_transaction_accounts_close --keypair /path/to/keypair.json --multisig_pubkey <MULTISIG_PUBLIC_KEY> --transaction_index 1 --rent_collector <RENT_COLLECTOR_PUBKEY>
In this example, the command closes the transaction accounts for the transaction at index 1 in the specified multisig account and collects rent using the provided rent collector public key.
Creates a new vault transaction with a custom transaction message.
vault_transaction_create --rpc_url <RPC_URL> --program_id <PROGRAM_ID> --keypair <KEYPAIR_PATH> --multisig_pubkey <MULTISIG_PUBLIC_KEY> --vault_index <VAULT_INDEX> --transaction_message <TRANSACTION_MESSAGE> [--memo <MEMO>]
--rpc_url <RPC_URL>
: (Optional) The URL of the Solana RPC endpoint. Defaults to mainnet if not specified.--program_id <PROGRAM_ID>
: (Optional) The ID of the multisig program. Defaults to a standard ID if not specified.--keypair <KEYPAIR_PATH>
: Path to your keypair file.--multisig_pubkey <MULTISIG_PUBLIC_KEY>
: The public key of the multisig account.--vault_index <VAULT_INDEX>
: The index of the vault where the transaction is being created.--transaction_message <TRANSACTION_MESSAGE>
: The message or payload of the transaction.--memo <MEMO>
: (Optional) A memo for the transaction.vault_transaction_create --keypair /path/to/keypair.json --multisig_pubkey <MULTISIG_PUBLIC_KEY> --vault_index 1 --transaction_message [1, 2, 3, 5, 5, 6, 7, 8]
In this example, a new transaction with the specified message is proposed in the multisig vault at vault index 1.
Executes a transaction once its proposal has reachen threshold.
vault_transaction_execute --rpc_url <RPC_URL> --program_id <PROGRAM_ID> --keypair <KEYPAIR_PATH> --multisig_pubkey <MULTISIG_PUBLIC_KEY> --transaction_index <TRANSACTION_INDEX>
--rpc_url <RPC_URL>
: (Optional) The URL of the Solana RPC endpoint. Defaults to mainnet if not specified.--program_id <PROGRAM_ID>
: (Optional) The ID of the multisig program. Defaults to a standard ID if not specified.--keypair <KEYPAIR_PATH>
: Path to your keypair file.--multisig_pubkey <MULTISIG_PUBLIC_KEY>
: The public key of the multisig account.--transaction_index <TRANSACTION_INDEX>
: The index of the transaction to be executed.vault_transaction_execute --keypair /path/to/keypair.json --multisig_pubkey <MULTISIG_PUBLIC_KEY> --transaction_index 1
This example executes the transaction at index 1 in the specified multisig.