Twitch Authentication
thirdweb SDK v5.63.0
We've added Twitch as an authentication strategy for all in-app and ecosystem wallets with thirdweb SDK v5.63.0.
import { inAppWallet } from "thirdweb/wallets";
const wallet = inAppWallet();
const account = await wallet.connect({
client,
chain,
strategy: "twitch",
});
Include Twitch in the <ConnectButton />
like any other strategy.
<ConnectButton
client={client}
wallets={[
inAppWallet({
auth: {
options: ["twitch", "google", "telegram"]
}
})
]}
/>;
Other Improvements
- Treasure Topaz has been added to the support ZK chains
- Storage improvements for PWA reliability