Web Component wrapper around @jup-ag/wallet-adapter, allowing it to be imported into any web framework (ie. not just React).
import { Component, onCleanup, onMount } from "solid-js";
import { subscribeToWalletEvents } from "@coinhall/wallet-adapter-wc";
const Wallet: Component = () => {
onMount(() => {
// 1) Subscribe to wallet events
const unsubscribe = subscribeToWalletEvents((event) => {
switch (event.type) {
case "onConnecting":
console.log("connecting status changed", event.isConnecting);
return;
case "onWalletChanged":
console.log("wallet changed", event.wallet);
return;
default:
return;
}
});
// 2) Unsubscribe from wallet events on cleanup
onCleanup(() => unsubscribe());
// 3) Import the web component after subscribing to wallet events
import("@coinhall/wallet-adapter-wc/webcomponent");
});
return <unified-wallet-web-component />;
};
export default Wallet;
- Add more attributes that the underlying package accepts
- Handle for more events and actions
- Add examples for other frameworks