charms-wallet-js
Version:
Professional Bitcoin wallet library for Charms ecosystem using @scure stack
41 lines • 4.39 kB
JavaScript
;
// Charms Wallet JS - Professional Bitcoin wallet library
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = exports.CHARMS_WALLET_CONSTANTS = exports.UTILS_CONSTANTS = exports.VERSION_INFO = exports.ERROR_CODES = exports.MONITORING_CONSTANTS = exports.API_ENDPOINTS = exports.STORAGE_CONSTANTS = exports.BIP39_CONSTANTS = exports.TRANSACTION_CONSTANTS = exports.ADDRESS_PATTERNS = exports.DEFAULT_NETWORK = exports.NETWORKS = exports.DEFAULT_DERIVATION_PATH = exports.DERIVATION_PATHS = exports.CryptographyError = exports.NetworkError = exports.TransactionError = exports.ValidationError = exports.CharmsWalletError = exports.TransactionSigner = exports.TransactionBuilder = exports.AddressWallet = exports.CharmsWallet = void 0;
// Core wallet functionality
var wallet_1 = require("./core/wallet");
Object.defineProperty(exports, "CharmsWallet", { enumerable: true, get: function () { return wallet_1.CharmsWallet; } });
var address_wallet_1 = require("./core/address-wallet");
Object.defineProperty(exports, "AddressWallet", { enumerable: true, get: function () { return address_wallet_1.AddressWallet; } });
// Transaction functionality
var builder_1 = require("./transaction/builder");
Object.defineProperty(exports, "TransactionBuilder", { enumerable: true, get: function () { return builder_1.TransactionBuilder; } });
var signer_1 = require("./transaction/signer");
Object.defineProperty(exports, "TransactionSigner", { enumerable: true, get: function () { return signer_1.TransactionSigner; } });
// Error classes
var types_1 = require("./types");
Object.defineProperty(exports, "CharmsWalletError", { enumerable: true, get: function () { return types_1.CharmsWalletError; } });
Object.defineProperty(exports, "ValidationError", { enumerable: true, get: function () { return types_1.ValidationError; } });
Object.defineProperty(exports, "TransactionError", { enumerable: true, get: function () { return types_1.TransactionError; } });
Object.defineProperty(exports, "NetworkError", { enumerable: true, get: function () { return types_1.NetworkError; } });
Object.defineProperty(exports, "CryptographyError", { enumerable: true, get: function () { return types_1.CryptographyError; } });
// Constants
var constants_1 = require("./constants");
Object.defineProperty(exports, "DERIVATION_PATHS", { enumerable: true, get: function () { return constants_1.DERIVATION_PATHS; } });
Object.defineProperty(exports, "DEFAULT_DERIVATION_PATH", { enumerable: true, get: function () { return constants_1.DEFAULT_DERIVATION_PATH; } });
Object.defineProperty(exports, "NETWORKS", { enumerable: true, get: function () { return constants_1.NETWORKS; } });
Object.defineProperty(exports, "DEFAULT_NETWORK", { enumerable: true, get: function () { return constants_1.DEFAULT_NETWORK; } });
Object.defineProperty(exports, "ADDRESS_PATTERNS", { enumerable: true, get: function () { return constants_1.ADDRESS_PATTERNS; } });
Object.defineProperty(exports, "TRANSACTION_CONSTANTS", { enumerable: true, get: function () { return constants_1.TRANSACTION_CONSTANTS; } });
Object.defineProperty(exports, "BIP39_CONSTANTS", { enumerable: true, get: function () { return constants_1.BIP39_CONSTANTS; } });
Object.defineProperty(exports, "STORAGE_CONSTANTS", { enumerable: true, get: function () { return constants_1.STORAGE_CONSTANTS; } });
Object.defineProperty(exports, "API_ENDPOINTS", { enumerable: true, get: function () { return constants_1.API_ENDPOINTS; } });
Object.defineProperty(exports, "MONITORING_CONSTANTS", { enumerable: true, get: function () { return constants_1.MONITORING_CONSTANTS; } });
Object.defineProperty(exports, "ERROR_CODES", { enumerable: true, get: function () { return constants_1.ERROR_CODES; } });
Object.defineProperty(exports, "VERSION_INFO", { enumerable: true, get: function () { return constants_1.VERSION_INFO; } });
Object.defineProperty(exports, "UTILS_CONSTANTS", { enumerable: true, get: function () { return constants_1.UTILS_CONSTANTS; } });
Object.defineProperty(exports, "CHARMS_WALLET_CONSTANTS", { enumerable: true, get: function () { return constants_1.CHARMS_WALLET_CONSTANTS; } });
// Re-export CharmsWallet as default
var wallet_2 = require("./core/wallet");
Object.defineProperty(exports, "default", { enumerable: true, get: function () { return wallet_2.CharmsWallet; } });
//# sourceMappingURL=index.js.map