Skip to main content

Documentation Index

Fetch the complete documentation index at: https://umbra.0xcreator.dev/llms.txt

Use this file to discover all available pages before exploring further.

umbra config get [key]
Prints the current value of a config key. When called without a key, prints all keys and their current values, plus the path to the config file.

Arguments

ArgumentRequiredDescription
[key]NoConfig key to read. Omit to print all values.

Config keys

KeyDefaultDescription
networkdevnetSolana network: mainnet, devnet, or localnet
rpcUrlhttps://api.devnet.solana.comHTTP RPC endpoint
rpcSubscriptionsUrlwss://api.devnet.solana.comWebSocket RPC endpoint
indexerApiEndpoint(unset)Umbra indexer API base URL (required for UTXO commands)
deferMasterSeedSignaturefalseDelay the master seed signing prompt until first use
activeUser(unset)Name of the currently active user

Examples

# Print all config values
umbra config get

# Print a single value
umbra config get network
umbra config get rpcUrl
umbra config get activeUser

Output

# umbra config get (all values)
Config file: /home/user/.umbra-cli/config.json
network: devnet
rpcUrl: https://api.devnet.solana.com
rpcSubscriptionsUrl: wss://api.devnet.solana.com
indexerApiEndpoint: (unset)
deferMasterSeedSignature: false
activeUser: alice

# umbra config get network
devnet

See also