bitmask-core
Version:
Core functionality for the BitMask wallet
32 lines (28 loc) • 774 B
text/typescript
import * as BMC from "./bitmask_core";
export * from "./bitmask_core"; // kludge :c
import * as bitcoin from "./bitcoin";
import * as carbonado from "./carbonado";
import * as constants from "./constants";
import * as lightning from "./lightning";
import * as nostr from "./nostr";
import * as rgb from "./rgb";
import * as wallet from "./wallet";
import * as bp from "./bp";
export * as bitcoin from "./bitcoin";
export * as carbonado from "./carbonado";
export * as constants from "./constants";
export * as lightning from "./lightning";
export * as nostr from "./nostr";
export * as rgb from "./rgb";
export * as wallet from "./wallet";
export * as bp from "./bp";
export default {
BMC,
bitcoin,
carbonado,
constants,
lightning,
nostr,
rgb,
wallet,
};