Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WalletConnect -> AppKit Migration #220

Draft
wants to merge 3 commits into
base: v5
Choose a base branch
from
Draft
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 3 additions & 3 deletions Assets/Thirdweb/Editor/ThirdwebManagerEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class ThirdwebManagerEditor : UnityEditor.Editor
private SerializedProperty initializeOnAwakeProp;
private SerializedProperty showDebugLogsProp;
private SerializedProperty optOutUsageAnalyticsProp;
private SerializedProperty supportedChainsProp;
private SerializedProperty appKitConfigProp;
private SerializedProperty redirectPageHtmlOverrideProp;

private int selectedTab = 0;
Expand All @@ -31,7 +31,7 @@ private void OnEnable()
initializeOnAwakeProp = FindProperty("InitializeOnAwake");
showDebugLogsProp = FindProperty("ShowDebugLogs");
optOutUsageAnalyticsProp = FindProperty("OptOutUsageAnalytics");
supportedChainsProp = FindProperty("SupportedChains");
appKitConfigProp = FindProperty("AppKitConfig");
redirectPageHtmlOverrideProp = FindProperty("RedirectPageHtmlOverride");

bannerImage = Resources.Load<Texture2D>("EditorBanner");
Expand Down Expand Up @@ -162,7 +162,7 @@ private void DrawMiscTab()

// Wallet Connect Settings
GUILayout.Label("Wallet Connect Settings", EditorStyles.boldLabel);
DrawProperty(supportedChainsProp, "Supported Chains");
DrawProperty(appKitConfigProp, "AppKit Config");

GUILayout.Space(10);

Expand Down
Loading
Loading