Skip to content
Compare
Choose a tag to compare
@jnsdls jnsdls released this 07 Nov 18:36
· 354 commits to main since this release
2579525

Minor Changes

  • #5326 f5f5ae6 Thanks @gregfromstl! - Add SiteLink component for creating wallet-aware links between thirdweb-enabled sites. This component automatically adds wallet connection parameters to the target URL when a wallet is connected, enabling seamless wallet state sharing between sites.

    Example:

    import { SiteLink } from "thirdweb/react";
    
    function App() {
      return (
        <SiteLink
          href="https://thirdweb.com"
          client={thirdwebClient}
          ecosystem={{ id: "ecosystem.thirdweb" }}
        >
          Visit thirdweb.com with connected wallet
        </SiteLink>
      );
    }

Patch Changes