| 19 | } from '@unicitylabs/sphere-sdk'; |
| 20 | |
| 21 | export interface BrowserProvidersConfig { |
| 22 | network?: NetworkType; |
| 23 | storage?: Record<string, unknown>; |
| 24 | transport?: Record<string, unknown>; |
| 25 | oracle?: Record<string, unknown>; |
| 26 | l1?: Record<string, unknown>; |
| 27 | tokenSync?: Record<string, unknown>; |
| 28 | price?: Record<string, unknown>; |
| 29 | groupChat?: Record<string, unknown> | boolean; |
| 30 | market?: Record<string, unknown> | boolean; |
| 31 | } |
| 32 | |
| 33 | export interface BrowserProviders { |
| 34 | storage: StorageProvider; |
nothing calls this directly
no outgoing calls
no test coverage detected