@@ -15,6 +15,7 @@ public class ThirdwebManagerEditor : UnityEditor.Editor
1515 private SerializedProperty optOutUsageAnalyticsProp ;
1616 private SerializedProperty supportedChainsProp ;
1717 private SerializedProperty redirectPageHtmlOverrideProp ;
18+ private SerializedProperty rpcOverridesProp ;
1819
1920 private int selectedTab = 0 ;
2021 private readonly string [ ] tabTitles = { "Client" , "Preferences" , "Misc" , "Debug" } ;
@@ -33,6 +34,7 @@ private void OnEnable()
3334 optOutUsageAnalyticsProp = FindProperty ( "OptOutUsageAnalytics" ) ;
3435 supportedChainsProp = FindProperty ( "SupportedChains" ) ;
3536 redirectPageHtmlOverrideProp = FindProperty ( "RedirectPageHtmlOverride" ) ;
37+ rpcOverridesProp = FindProperty ( "RpcOverrides" ) ;
3638
3739 bannerImage = Resources . Load < Texture2D > ( "EditorBanner" ) ;
3840 }
@@ -161,15 +163,18 @@ private void DrawMiscTab()
161163 EditorGUILayout . HelpBox ( "Configure other settings here." , MessageType . Info ) ;
162164
163165 // Wallet Connect Settings
164- GUILayout . Label ( "Wallet Connect Settings" , EditorStyles . boldLabel ) ;
165- DrawProperty ( supportedChainsProp , "Supported Chains" ) ;
166+ DrawProperty ( supportedChainsProp , "WalletConnect Supported Chains" ) ;
166167
167168 GUILayout . Space ( 10 ) ;
168169
169170 // Desktop OAuth Settings
170- GUILayout . Label ( "Desktop OAuth Settings" , EditorStyles . boldLabel ) ;
171- EditorGUILayout . LabelField ( "Redirect Page HTML Override" , EditorStyles . boldLabel ) ;
171+ EditorGUILayout . LabelField ( "OAuth Redirect Page HTML Override" , EditorStyles . boldLabel ) ;
172172 redirectPageHtmlOverrideProp . stringValue = EditorGUILayout . TextArea ( redirectPageHtmlOverrideProp . stringValue , GUILayout . MinHeight ( 75 ) ) ;
173+
174+ GUILayout . Space ( 10 ) ;
175+
176+ // RPC Overrides
177+ DrawProperty ( rpcOverridesProp , "RPC Overrides" ) ;
173178 }
174179
175180 private void DrawDebugTab ( )
0 commit comments