Skip to content

v6.1.0

Latest

Choose a tag to compare

@0xFirekeeper 0xFirekeeper released this 07 Nov 11:05
2fe3e01

What's Changed

  • Additions from Thirdweb's .NET SDK Release 3.1.0
  • Added AuthProvider.Epic - you can now login with Epic Games when using In-App or Ecosystem Wallets.
// Using .NET SDK
var iaw = await InAppWallet.Create(client: twClient, authProvider: AuthProvider.Epic);
var iawAddy = await steamWallet.LoginWithOauth(...);

// Using Unity SDK
var walletOptions= new WalletOptions(
    provider: WalletProvider.InAppWallet, 
    chainId: 421614, 
    inAppWalletOptions: new InAppWalletOptions(authprovider: AuthProvider.Epic);
);
var iaw = await ThirdwebManager.Instance.ConnectWallet(options);
var iawAddy = await iaw .GetAddress();