Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Assets/Thirdweb/Core/Scripts/Utils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public static string ShortenAddress(this string address)
{
if (address.Length != 42)
throw new ArgumentException("Invalid Address Length.");
return $"{address.Substring(0, 5)}...{address.Substring(39)}";
return $"{address.Substring(0, 6)}...{address.Substring(38)}";
}

public static bool IsWebGLBuild()
Expand Down
1 change: 1 addition & 0 deletions Assets/Thirdweb/Core/Scripts/Wallet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,7 @@ public WalletConnection(WalletProvider provider, BigInteger chainId, string pass
/// <summary>
/// Represents the available wallet providers.
/// </summary>
[System.Serializable]
public enum WalletProvider
{
Metamask,
Expand Down
8 changes: 8 additions & 0 deletions Assets/Thirdweb/Examples/Fonts.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading