diff --git a/Thirdweb/Thirdweb.Wallets/InAppWallet/EcosystemWallet/EcosystemWallet.cs b/Thirdweb/Thirdweb.Wallets/InAppWallet/EcosystemWallet/EcosystemWallet.cs index 2af51ebd..79f42f3a 100644 --- a/Thirdweb/Thirdweb.Wallets/InAppWallet/EcosystemWallet/EcosystemWallet.cs +++ b/Thirdweb/Thirdweb.Wallets/InAppWallet/EcosystemWallet/EcosystemWallet.cs @@ -135,6 +135,7 @@ public static async Task Create( Thirdweb.AuthProvider.Guest => "Guest", Thirdweb.AuthProvider.X => "X", Thirdweb.AuthProvider.TikTok => "TikTok", + Thirdweb.AuthProvider.Epic => "Epic", Thirdweb.AuthProvider.Coinbase => "Coinbase", Thirdweb.AuthProvider.Github => "Github", Thirdweb.AuthProvider.Twitch => "Twitch", @@ -715,6 +716,7 @@ public async Task> LinkAccount( case "Line": case "X": case "TikTok": + case "Epic": case "Coinbase": case "Github": case "Twitch": diff --git a/Thirdweb/Thirdweb.Wallets/InAppWallet/InAppWallet.Types.cs b/Thirdweb/Thirdweb.Wallets/InAppWallet/InAppWallet.Types.cs index d9dade24..dfe71e52 100644 --- a/Thirdweb/Thirdweb.Wallets/InAppWallet/InAppWallet.Types.cs +++ b/Thirdweb/Thirdweb.Wallets/InAppWallet/InAppWallet.Types.cs @@ -21,6 +21,7 @@ public enum AuthProvider Guest, X, TikTok, + Epic, Coinbase, Github, Twitch,