theseus/bundled-addons/bchwallet/index.js

10 lines
374 B
JavaScript
Raw Normal View History

// Bitcoin Cash Wallet — bundled Theseus add-on. activate() runs in the main
// process; all key material lives here, in memory, and is re-derived from the
// password vault on every launch.
module.exports = {
activate(api) {
api.registerSidebarPanel({ id: "main", title: "Wallet", icon: "₿", page: "panel.html" });
api.log("wallet panel registered");
},
};