Bob Wallet Logo

Bob LearnHNS

Move from original Bob to Bob LearnHNS

Bob LearnHNS uses its own app data folder, so it will look like a fresh app the first time it opens. You can copy your existing Bob profile into Bob LearnHNS without removing or changing original Bob.

Before You Start

  • Quit Bob LearnHNS completely.
  • Quit original Bob if it is running.
  • Keep your seed phrase or wallet backup available before moving app data.
  • This command copies original Bob data. It does not delete original Bob data.

macOS Copy Command

Open Terminal, paste the command below, press Enter, then reopen Bob LearnHNS.

SRC="$HOME/Library/Application Support/Bob"
DST="$HOME/Library/Application Support/Bob LearnHNS"
[ -d "$SRC" ] || { echo "Original Bob data not found: $SRC"; exit 1; }
[ -d "$DST" ] && ditto "$DST" "$DST backup $(date +%Y%m%d-%H%M%S)"
ditto "$SRC" "$DST"
echo "Copied Bob wallet data to Bob LearnHNS. Reopen Bob LearnHNS."

What It Copies

The copy includes wallets, local chain or SPV data, settings, and local marketplace listing state. That local listing state matters if you are testing Shakedex selling, because Bob needs its saved listing data to finalize, upload proofs, and back up listings.

If Bob LearnHNS Already Has Data

The command first makes a timestamped backup of the current Bob LearnHNS app data folder before copying original Bob into place. That gives you a rollback point if you already created a temporary test wallet in Bob LearnHNS.