Skip to content

Latest commit

 

History

History
54 lines (41 loc) · 1.44 KB

README.md

File metadata and controls

54 lines (41 loc) · 1.44 KB

@coinhall/wallet-adapter-wc

Web Component wrapper around @jup-ag/wallet-adapter, allowing it to be imported into any web framework (ie. not just React).

Usage

SolidJS Example

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;

Contributing

Further Improvements

  • Add more attributes that the underlying package accepts
  • Handle for more events and actions
  • Add examples for other frameworks