@bigmi/client
Version:
Reactive primitives for Bitcoin apps.
13 lines (12 loc) • 459 B
JavaScript
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
let _bigmi_core = require("@bigmi/core");
//#region src/errors/config.ts
var ChainNotConfiguredError = class extends _bigmi_core.BaseError {
constructor(chainId) {
super(`Chain ${chainId ? `: ${chainId}` : ""} not configured.`);
this.name = "ChainNotConfiguredError";
}
};
//#endregion
exports.ChainNotConfiguredError = ChainNotConfiguredError;
//# sourceMappingURL=config.js.map