HOST=127.0.0.1 PORT=8080 # Bitcoin network configuration from WDK docs: # - bitcoin # - testnet # - regtest # This is the initial active network. It can also be changed later via HTTP. WDK_BTC_NETWORK=bitcoin # Address derivation standard: # - 84 for Native SegWit (default in current WDK BTC docs) # - 44 for legacy compatibility WDK_BTC_BIP=84 # Per-network Electrum profiles. # Docs recommend your own Fulcrum/Electrum server for production. WDK_BTC_BITCOIN_ELECTRUM_PROTOCOL=tcp WDK_BTC_BITCOIN_ELECTRUM_HOST=electrum.blockstream.info WDK_BTC_BITCOIN_ELECTRUM_PORT=50001 WDK_BTC_TESTNET_ELECTRUM_PROTOCOL=tcp WDK_BTC_TESTNET_ELECTRUM_HOST=blockstream.info WDK_BTC_TESTNET_ELECTRUM_PORT=143 WDK_BTC_REGTEST_ELECTRUM_PROTOCOL=tcp WDK_BTC_REGTEST_ELECTRUM_HOST=127.0.0.1 WDK_BTC_REGTEST_ELECTRUM_PORT=60401 # Local encrypted vault directory for wallet registry + encrypted seed files. WDK_BTC_DATA_DIR= # Optional local auth token override. # If unset, the service creates and reuses a token file under: # ~/.openclaw/wdk-btc-wallet/local-auth-token WDK_BTC_LOCAL_TOKEN= WDK_BTC_LOCAL_TOKEN_PATH= # How long unlocked wallets stay in memory. # 0 means "stay unlocked until explicit lock or process restart". WDK_BTC_UNLOCK_TIMEOUT_SECONDS=0