Base Directory
The base directory on Namada is the directory where all chain-specific data is stored. It is a directory that is created immediately once the network is joined (with namadac utils join-network, for example).
As of the latest version of Namada, the base directory is located in the following locations:
π€
Technically, the correct directory will be the one assigned to $XDG_DATA_HOME,
but if you haven't set that variable, it will default to one of the below.
The quick way
You can find the base directory by running the following command:
namadac utils default-base-dirWhich should correspond to one of the following directories:
Linux
$HOME/.local/share/namadaMacOS
$HOME/Library/Application\ Support/NamadaWhat to expect
Within these folders, you should see the following files and folders:
.
βββ $BASE_DIR/
    βββ global-config.toml
    βββ $CHAIN_ID/
        βββ balances.toml
        βββ chain.toml
        βββ cometbft/
        βββ config.toml
        βββ db/
        βββ parameters.toml
        βββ tokens.toml
        βββ transactions.toml
        βββ tx_wasm_cache/
        βββ validity_predicates.toml
        βββ vp_wasm_cache/
        βββ wallet.toml
        βββ wasm/