Andromeda
ADO LibraryBuild AppsDevelop ADOsCLIWeb Application Docs
Andromeda Beta ADOs
Andromeda Beta ADOs
  • Platform and Framework
    • Introduction to AndromedaOS
    • ADO Classes
    • Andromeda Messaging Protocol
      • Kernel
      • ADO Database
      • Economics Engine
      • Virtual File System
    • ADO Base
      • AndromedaMsg
      • AndromedaQuery
    • Common Types
    • Deployed Contracts
  • Andromeda Digital Objects
    • Introduction to ADOs
    • Address List
    • Auction
    • App
    • Conditional Splitter
    • Crowdfund
    • Curve
    • CW20
    • CW20 Staking
    • CW721
    • CW20 Exchange
    • Graph
    • Lockdrop
    • Marketplace
    • Merkle-Airdrop
    • Point
    • Primitive
    • Rates
    • Rate Limiting Withdrawals
    • Fixed Amount Splitter
    • Splitter
    • Timelock
    • Validator Staking
    • Vesting
    • Weighted Distribution Splitter
  • Andromeda Apps
    • Introduction to Apps
    • Crowdfunding App
    • Auctioning App
    • Cw20 Staking App
    • Marketplace App
  • Developing an ADO
    • Getting Started
      • Instantiation
      • Execution
      • Queries
      • Testing
    • ADO Example
    • ADO Submissions
  • Andromeda CLI
    • Introduction
    • Help and Shortcuts
    • ADO
    • Bank
    • Chain
    • Gql
    • Tx
    • OS
    • Wallet
    • Wasm
    • Clearing CLI Data
    • Clear and Exit
  • Chain
    • Running a Node
    • Staking and Rewards
  • Andromeda Dashboard
    • Tokenomics Dashboard
    • Dashboard API
  • Andromeda Changelog
    • Newest Releases
  • Additional Resources
    • GitHub
    • Website
    • White Paper
Powered by GitBook

Additional Resources

  • Github
  • Website

Community

  • Discord
  • Telegram

Socials

  • Twitter
  • Medium
  • Youtube
On this page
  • Available Commands
  • Config
  • Copy
  • Get
  • List
  • New
  • Remove
  • Use
  • CLI Configs

Was this helpful?

  1. Andromeda CLI

Chain

Manage chains and configs

Available Commands

Command
Description

Displays current chain config.

Creates a copy of a current config.

Displays current value for a given key.

Lists all the currently saved configs.

Creates a new config.

Removes a config by name or chain Id.

Swap to a saved config.

Config

Displays the config of the chain.

Key
Description

addressPrefix

The prefix for all addresses on chain

blockExplorerTxPages

URLs to block explorers for the given chain. Must include '${txHash}'

blockExplorerAddressPages

URLs to block explorers for the given chain. Must include '${txHash}'

chainId

The Id of the chain to use

chainUrl

The URL of the chain to use

chainName

The name of the chain.

chainType

The type of chain (Testnet or Mainnet).

defualtFee

The default fee amount

iconUrls

The icon for the chain.

kernelAddress

The contract address of the Kernel of the chain.

name

The name of the config being used.

enabled

Whether the config is enabled in the CLI.

Usage

chain config

Example

? $main@elgafar-1> chain config

The above command will generate an output similar to:

Current chain config
Key                       Value                                                            Description                                                          
addressPrefix             stars                                                            The prefix for all addresses on chain                                
blockExplorerTxPages      https://testnet-explorer.publicawesome.dev/stargaze/tx/${txHash} URLs to block explorers for the given chain. Must include '${txHash}'
blockExplorerAddressPages https://testnet-explorer.publicawesome.dev/stargaze/account/${a… URLs to block explorers for the given chain. Must include '${txHash}'
chainId                   elgafar-1                                                        The ID of the chain to use                                           
chainUrl                  https://rpc.elgafar-1.stargaze-apis.com/                         The URL of the chain to use                                          
chainName                 Stargaze                                                         The name of the chain                                                
chainType                 testnet                                                          The chain type                                                       
defaultFee                0.025ustars                                                      The default fee amount                                               
iconUrls                  [object Object]                                                                                                                       
kernelAddress             stars1hjm0vy35m9jhy8wjpldmaxv3yq3ctmzmpdfm9z0fscpv9zegpgqq5umjt0 The contract address of the Andromeda Kernel                         
name                      stargaze-testnet                                                 The name of the chain config used                                                                         

Copy

Creates a copy of a current config.

Usage

chain copy <current config name/chainId> <new config name>

Example

? keplr-g3@galileo-3> chain copy galileo3 test
- Loading config...
Config loaded!
- Connecting client...
? keplr-g3@galileo-3> chain list
Name        Chain ID     
elgafar1    elgafar-1    
pisco1      pisco-1      
sei-network atlantic-1   
injective   injective-888
galileo3    galileo-3            
test        galileo-3    
? keplr-g3@galileo-3> () 

When you copy a config, the wallets from the copied config are also copied to the new one.

Get

Gets the value for the specified key. The keys are the ones found above when we call chain config (chainId, chainUrl, ect...)

Usage

chain get <key>

If the <key> is not specified, then the entire config will be fetched.

Example

//Get the chainName of the chain

? $main@elgafar-1> chain get chainName
Current chain config

Key       Value    Description          
chainName Stargaze The name of the chain

List

Lists all the saved configs.

Usage

chain list

Example

? keplr-g3@galileo-3> chain list
Name        Chain ID     
elgafar1    elgafar-1    
pisco1      pisco-1      
sei-network atlantic-1   
injective   injective-888
galileo3    galileo-3           

The chain currently is use is highlighted in green.

New

Creates a new config.

Usage

chain new <name>

Example

? keplr-g3@galileo-3> chain new tutorial

You will be prompted to enter the required config fields. We can then query the configs:

? keplr-g3@galileo-3> chain list
Name        Chain ID     
elgafar1    elgafar-1    
pisco1      pisco-1      
sei-network atlantic-1   
injective   injective-888
galileo3    galileo-3     
tutorial elgafar-1

Remove

Removes a config by name or chain ID.

You can only remove configs that have been added and not default configs.

Usage

chain rm <config name>

Example

? keplr-g3@galileo-3> chain rm tutorial

Use

Swaps to one of the saved configs.

Usage

chain use <chainId/name>

Example

// Get a list of chains saved. elgafar-1 is currently used. 

? guide@elgafar-1> chain list
Name        Chain ID     
elgafar1    elgafar-1    
pisco1      pisco-1      
sei-network atlantic-1   
injective   injective-888
galileo3    galileo-3           
example     galileo-3      

// Set galileo-3 as the config to use using the ID.

? guide@elgafar-1> chain use galileo-3
⠂ Loading configs...
– Loading config...
Config loaded!
⠂ Connecting client...
? user@galileo-3> ()  

//Set elgafar-1 as the config to use using the name.

? user@galileo-3> chain use elgafar1
- Loading configs...
– Loading config...
Config loaded!
- Connecting client...
? guide@elgafar-1> () 

CLI Configs

PreviousBankNextGql

Was this helpful?

You can get all the configs from the CLI by running .

chain config
config
copy
get
list
new
rm
use