UNPKG

caravan-x

Version:

A terminal-based utility for managing Caravan multisig wallets in regtest mode. This tool simplifies development and testing with Caravan by providing an easy-to-use interface

20 lines (19 loc) 572 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DEFAULT_CONFIG = void 0; /** * Default application configuration */ exports.DEFAULT_CONFIG = { bitcoin: { protocol: "http", host: "127.0.0.1", port: 18443, // Default regtest port user: "user", pass: "pass", dataDir: process.env.HOME + "/.bitcoin", }, appDir: process.env.HOME + "/.caravan-regtest", caravanDir: process.env.HOME + "/.caravan-regtest/wallets", keysDir: process.env.HOME + "/.caravan-regtest/keys", };