10 lines
374 B
JavaScript
10 lines
374 B
JavaScript
|
|
// 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");
|
||
|
|
},
|
||
|
|
};
|