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

23 lines (22 loc) 645 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Network = exports.AddressType = void 0; /** * Address types supported by Caravan */ var AddressType; (function (AddressType) { AddressType["P2SH"] = "P2SH"; AddressType["P2WSH"] = "P2WSH"; AddressType["P2SH_P2WSH"] = "P2SH-P2WSH"; })(AddressType || (exports.AddressType = AddressType = {})); /** * Bitcoin networks */ var Network; (function (Network) { Network["MAINNET"] = "mainnet"; Network["TESTNET"] = "testnet"; Network["REGTEST"] = "regtest"; Network["SIGNET"] = "signet"; })(Network || (exports.Network = Network = {}));