├── .env ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── ci.yml │ ├── deploy_pages.yml │ └── release.yml ├── .gitignore ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ └── xcschemes │ ├── Web3Modal.xcscheme │ ├── Web3ModalTests.xcscheme │ ├── Web3ModalUI.xcscheme │ └── Web3ModalUITests.xcscheme ├── Dangerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Makefile ├── Package.resolved ├── Package.swift ├── README.md ├── Sample ├── .gitignore ├── Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── Example.xcscheme ├── Example │ ├── AlertPresenter.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x-1.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x-1.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x-1.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── ItunesArtwork@2x.png │ │ └── Contents.json │ ├── ComponentLibraryView.swift │ ├── Configuration.xcconfig │ ├── ContentView.swift │ ├── DefaultCryptoProvider.swift │ ├── Example.entitlements │ ├── ExampleApp.swift │ ├── Info.plist │ ├── InputConfig.swift │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ └── WCSocketFactory.swift └── swift-web3modal-Package.xctestplan ├── Sources ├── Web3Modal │ ├── Analytics │ │ ├── AnalyticsEvent.swift │ │ ├── AnalyticsEventMapper.swift │ │ ├── AnalyticsProvider.swift │ │ ├── Convenience │ │ │ ├── AnalyticsEvent+ResultBuilders.swift │ │ │ ├── AnalyticsEventGroup.swift │ │ │ ├── AnalyticsEventTrackingModifier.swift │ │ │ ├── AnalyticsEventTrigger.swift │ │ │ └── View+Track.swift │ │ └── Private │ │ │ ├── AnalyticsService.swift │ │ │ ├── ClickstreamAnalyticsProvider.swift │ │ │ ├── DefaultAnalyticsEventMapper.swift │ │ │ └── LoggingAnalyticsProvider.swift │ ├── Components │ │ ├── AccountButton.swift │ │ ├── ConnectButton.swift │ │ ├── Web3ModalButton.swift │ │ └── Web3ModalNetworkButton.swift │ ├── Core │ │ ├── BlockchainAPIInteractor.swift │ │ ├── SignInteractor.swift │ │ ├── W3MAPIInteractor.swift │ │ ├── W3MJSONRPC+Coinbase.swift │ │ ├── W3MJSONRPC.swift │ │ ├── W3MResponse.swift │ │ ├── Web3Modal.swift │ │ └── Web3ModalClient.swift │ ├── Extensions │ │ ├── Collection.swift │ │ ├── Sequence.swift │ │ └── View+RoundedCorners.swift │ ├── Helpers │ │ └── EnvironmentInfo.swift │ ├── Models │ │ ├── Chain.swift │ │ ├── Helpers │ │ │ ├── AccountStorage.swift │ │ │ ├── AsyncSemaphore.swift │ │ │ ├── Bundle+extension.swift │ │ │ ├── RecentWalletStorage.swift │ │ │ └── Session+Stub.swift │ │ └── Wallet.swift │ ├── Networking │ │ ├── BlockchainAPI.swift │ │ ├── GetWalletsResponse.swift │ │ └── Web3ModalAPI.swift │ ├── PackageConfig.json │ ├── Resources │ │ └── Assets.xcassets │ │ │ ├── Contents.json │ │ │ ├── Mocks │ │ │ ├── Contents.json │ │ │ ├── MockChainImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Polygon.png │ │ │ └── MockWalletImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Rainbow.png │ │ │ └── imageLogo.imageset │ │ │ ├── Contents.json │ │ │ └── Square Image Editor.png │ ├── Router.swift │ ├── Screens │ │ ├── AccountView.swift │ │ ├── ChainSwitch │ │ │ ├── ChainSelectView.swift │ │ │ ├── NetworkDetail │ │ │ │ ├── NetworkDetailView.swift │ │ │ │ └── NetworkDetailViewModel.swift │ │ │ └── WhatIsNetworkView.swift │ │ └── ConnectWallet │ │ │ ├── AllWalletsView.swift │ │ │ ├── ConnectWalletView.swift │ │ │ ├── ConnectWithQRCode.swift │ │ │ ├── GetAWalletView.swift │ │ │ ├── QRCodeView.swift │ │ │ ├── WalletDetail │ │ │ ├── WalletDetailView.swift │ │ │ └── WalletDetailViewModel.swift │ │ │ └── WhatIsWalletView.swift │ ├── Sheets │ │ ├── ModalContainerView.swift │ │ ├── Web3ModalSheetController.swift │ │ ├── Web3ModalView.swift │ │ └── Web3ModalViewModel.swift │ ├── Store.swift │ ├── Web3ModalImports.swift │ └── Wrappers │ │ └── UIApplicationWrapper.swift ├── Web3ModalBackport │ ├── AsyncImage.swift │ ├── Background.swift │ ├── Backport.swift │ ├── ContentSizeCategory.swift │ ├── OnChange.swift │ ├── Overlay.swift │ ├── ScaledMetric.swift │ └── StateObject.swift └── Web3ModalUI │ ├── Components │ ├── W3MActionEntryStyle.swift │ ├── W3MAvatarGradient.swift │ ├── W3MButtonStyle.swift │ ├── W3MCardSelectButtonStyle.swift │ ├── W3MChipButtonStyle.swift │ ├── W3MListItemButtonStyle.swift │ ├── W3MListSelectButtonStyle.swift │ ├── W3MPicker.swift │ ├── W3MTag.swift │ └── W3MTextField.swift │ ├── Helpers │ ├── Bundle.swift │ ├── Extensions │ │ ├── Color+extension.swift │ │ ├── Font+extension.swift │ │ └── ImageResource_generated.swift │ ├── Radius.swift │ └── Spacing.swift │ ├── Miscellaneous │ ├── AdaptiveStack.swift │ ├── Binding+extension.swift │ ├── DrawingProgressView.swift │ ├── Polygon.swift │ ├── Shape+extension.swift │ └── Toast.swift │ ├── Modifiers │ ├── Conditional.swift │ └── Shimmer.swift │ ├── Resources │ └── Assets.xcassets │ │ ├── Colors │ │ ├── Background100.colorset │ │ │ └── Contents.json │ │ ├── Background125.colorset │ │ │ └── Contents.json │ │ ├── Background150.colorset │ │ │ └── Contents.json │ │ ├── Background175.colorset │ │ │ └── Contents.json │ │ ├── Background200.colorset │ │ │ └── Contents.json │ │ ├── Background225.colorset │ │ │ └── Contents.json │ │ ├── Background250.colorset │ │ │ └── Contents.json │ │ ├── Background275.colorset │ │ │ └── Contents.json │ │ ├── Background300.colorset │ │ │ └── Contents.json │ │ ├── BlackAndWhite100.colorset │ │ │ └── Contents.json │ │ ├── Blue080.colorset │ │ │ └── Contents.json │ │ ├── Blue090.colorset │ │ │ └── Contents.json │ │ ├── Blue100.colorset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Error100.colorset │ │ │ └── Contents.json │ │ ├── Foreground100.colorset │ │ │ └── Contents.json │ │ ├── Foreground125.colorset │ │ │ └── Contents.json │ │ ├── Foreground150.colorset │ │ │ └── Contents.json │ │ ├── Foreground175.colorset │ │ │ └── Contents.json │ │ ├── Foreground200.colorset │ │ │ └── Contents.json │ │ ├── Foreground225.colorset │ │ │ └── Contents.json │ │ ├── Foreground250.colorset │ │ │ └── Contents.json │ │ ├── Foreground275.colorset │ │ │ └── Contents.json │ │ ├── Foreground300.colorset │ │ │ └── Contents.json │ │ ├── Glass75.colorset │ │ │ └── Contents.json │ │ ├── Glass88.colorset │ │ │ └── Contents.json │ │ ├── GrayGlass002.colorset │ │ │ └── Contents.json │ │ ├── GrayGlass005.colorset │ │ │ └── Contents.json │ │ ├── GrayGlass010.colorset │ │ │ └── Contents.json │ │ ├── GrayGlass020.colorset │ │ │ └── Contents.json │ │ ├── Grey18.colorset │ │ │ └── Contents.json │ │ ├── Grey20.colorset │ │ │ └── Contents.json │ │ ├── Grey22.colorset │ │ │ └── Contents.json │ │ ├── Indigo100.colorset │ │ │ └── Contents.json │ │ ├── Inverse000.colorset │ │ │ └── Contents.json │ │ ├── Inverse100.colorset │ │ │ └── Contents.json │ │ ├── Magenta100.colorset │ │ │ └── Contents.json │ │ ├── Orange100.colorset │ │ │ └── Contents.json │ │ ├── Overblue002.colorset │ │ │ └── Contents.json │ │ ├── Overblue005.colorset │ │ │ └── Contents.json │ │ ├── Overblue010.colorset │ │ │ └── Contents.json │ │ ├── Overblue015.colorset │ │ │ └── Contents.json │ │ ├── Overblue020.colorset │ │ │ └── Contents.json │ │ ├── Overblue080.colorset │ │ │ └── Contents.json │ │ ├── Overblue090.colorset │ │ │ └── Contents.json │ │ ├── Overgray001.colorset │ │ │ └── Contents.json │ │ ├── Overgray002.colorset │ │ │ └── Contents.json │ │ ├── Overgray005.colorset │ │ │ └── Contents.json │ │ ├── Overgray010.colorset │ │ │ └── Contents.json │ │ ├── Overgray015.colorset │ │ │ └── Contents.json │ │ ├── Overgray020.colorset │ │ │ └── Contents.json │ │ ├── Overgray025.colorset │ │ │ └── Contents.json │ │ ├── Overgray030.colorset │ │ │ └── Contents.json │ │ ├── Purple100.colorset │ │ │ └── Contents.json │ │ ├── Success100.colorset │ │ │ └── Contents.json │ │ ├── Teal100.colorset │ │ │ └── Contents.json │ │ └── Yellow100.colorset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Icons │ │ ├── Bold │ │ │ ├── Arrow Bottom.imageset │ │ │ │ ├── Arrow Bottom.pdf │ │ │ │ └── Contents.json │ │ │ ├── Arrow Left.imageset │ │ │ │ ├── Arrow Left.pdf │ │ │ │ └── Contents.json │ │ │ ├── Arrow Right.imageset │ │ │ │ ├── Arrow Right.pdf │ │ │ │ └── Contents.json │ │ │ ├── Arrow Top.imageset │ │ │ │ ├── Arrow Top.pdf │ │ │ │ └── Contents.json │ │ │ ├── Bars.imageset │ │ │ │ ├── Bars.pdf │ │ │ │ └── Contents.json │ │ │ ├── Bin.imageset │ │ │ │ ├── Bin.pdf │ │ │ │ └── Contents.json │ │ │ ├── Browser.imageset │ │ │ │ ├── Browser.pdf │ │ │ │ └── Contents.json │ │ │ ├── Checkmark.imageset │ │ │ │ ├── Checkmark.pdf │ │ │ │ └── Contents.json │ │ │ ├── Chevron Bottom.imageset │ │ │ │ ├── Chevron Bottom.pdf │ │ │ │ └── Contents.json │ │ │ ├── Chevron Left.imageset │ │ │ │ ├── Chevron Left.pdf │ │ │ │ └── Contents.json │ │ │ ├── Chevron Right.imageset │ │ │ │ ├── Chevron Right.pdf │ │ │ │ └── Contents.json │ │ │ ├── Chevron Top.imageset │ │ │ │ ├── Chevron Top.pdf │ │ │ │ └── Contents.json │ │ │ ├── Clock.imageset │ │ │ │ ├── Clock.pdf │ │ │ │ └── Contents.json │ │ │ ├── Code.imageset │ │ │ │ ├── Code.pdf │ │ │ │ └── Contents.json │ │ │ ├── Compass.imageset │ │ │ │ ├── Compass.pdf │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Copy.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Copy.pdf │ │ │ ├── Desktop.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Desktop.pdf │ │ │ ├── Disconnect.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Disconnect.pdf │ │ │ ├── Doc.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Doc.pdf │ │ │ ├── Double Chevron Vertical.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Double Chevron Vertical.pdf │ │ │ ├── External Link.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── External Link.pdf │ │ │ ├── Eye Crossed.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Eye Crossed.pdf │ │ │ ├── Eye.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Eye.pdf │ │ │ ├── Filters.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Filters.pdf │ │ │ ├── Image.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Image.pdf │ │ │ ├── Info.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Info.pdf │ │ │ ├── Light Bulb.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Light Bulb.pdf │ │ │ ├── Link.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Link.pdf │ │ │ ├── Mail.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Mail.pdf │ │ │ ├── Mobile.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Mobile.pdf │ │ │ ├── Moon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Moon.pdf │ │ │ ├── Network.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Network.pdf │ │ │ ├── Nut.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Nut.pdf │ │ │ ├── Off.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Off.pdf │ │ │ ├── Pen.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Pen.pdf │ │ │ ├── Plus.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Plus.pdf │ │ │ ├── Question Mark Circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Question Mark Circle.pdf │ │ │ ├── Refresh.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Refresh.pdf │ │ │ ├── Sliders Horizontal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Sliders Horizontal.pdf │ │ │ ├── Sliders Vertical.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Sliders Vertical.pdf │ │ │ ├── Squares.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Squares.pdf │ │ │ ├── Sun.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Sun.pdf │ │ │ ├── Swap Horizontal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Swap Horizontal.pdf │ │ │ ├── Swap Vertical.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Swap Vertical.pdf │ │ │ ├── Users.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Users.pdf │ │ │ ├── Wallet.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Wallet.pdf │ │ │ ├── Warning Circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Warning Circle.pdf │ │ │ ├── Web.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Web.pdf │ │ │ └── X Mark.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── X Mark.pdf │ │ ├── Contents.json │ │ ├── Error.imageset │ │ │ ├── Contents.json │ │ │ ├── error.pdf │ │ │ └── error_light.pdf │ │ ├── Medium │ │ │ ├── Android.imageset │ │ │ │ ├── Android.pdf │ │ │ │ └── Contents.json │ │ │ ├── App.imageset │ │ │ │ ├── App.pdf │ │ │ │ └── Contents.json │ │ │ ├── Arrow Left.imageset │ │ │ │ ├── Arrow Left.pdf │ │ │ │ └── Contents.json │ │ │ ├── Arrow Right.imageset │ │ │ │ ├── Arrow Right.pdf │ │ │ │ └── Contents.json │ │ │ ├── Auth.imageset │ │ │ │ ├── Auth.pdf │ │ │ │ └── Contents.json │ │ │ ├── Bell.imageset │ │ │ │ ├── Bell.pdf │ │ │ │ └── Contents.json │ │ │ ├── Bin.imageset │ │ │ │ ├── Bin.pdf │ │ │ │ └── Contents.json │ │ │ ├── Checkmark.imageset │ │ │ │ ├── Checkmark.pdf │ │ │ │ └── Contents.json │ │ │ ├── Chevron Bottom.imageset │ │ │ │ ├── Chevron Bottom.pdf │ │ │ │ └── Contents.json │ │ │ ├── Chevron Left.imageset │ │ │ │ ├── Chevron Left.pdf │ │ │ │ └── Contents.json │ │ │ ├── Chevron Right.imageset │ │ │ │ ├── Chevron Right.pdf │ │ │ │ └── Contents.json │ │ │ ├── Chevron Top.imageset │ │ │ │ ├── Chevron Top.pdf │ │ │ │ └── Contents.json │ │ │ ├── Compass.imageset │ │ │ │ ├── Compass.pdf │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Copy.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Copy.pdf │ │ │ ├── Desktop.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Desktop.pdf │ │ │ ├── Disconnect.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Disconnect.pdf │ │ │ ├── Doc.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Doc.pdf │ │ │ ├── Dots Horizontal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Dots Horizontal.pdf │ │ │ ├── Dots Vertical.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Dots Vertical.pdf │ │ │ ├── Double Chevron Vertical.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Double Chevron Vertical.pdf │ │ │ ├── Etherscan.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Etherscan.pdf │ │ │ ├── External Link.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── External Link.pdf │ │ │ ├── Eye Crossed.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Eye Crossed.pdf │ │ │ ├── Eye.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Eye.pdf │ │ │ ├── File.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── File.pdf │ │ │ ├── Filters.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Filters.pdf │ │ │ ├── Info Circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Info Circle.pdf │ │ │ ├── Info.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Info.pdf │ │ │ ├── Light Bulb.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Light Bulb.pdf │ │ │ ├── Magnifier.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Magnifier.pdf │ │ │ ├── Mail.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Mail.pdf │ │ │ ├── Mobile.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Mobile.pdf │ │ │ ├── Moon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Moon.pdf │ │ │ ├── Nut.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Nut.pdf │ │ │ ├── Off.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Off.pdf │ │ │ ├── Paste.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Paste.pdf │ │ │ ├── Pen.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Pen.pdf │ │ │ ├── Plus.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Plus.pdf │ │ │ ├── QR code.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── QR code.pdf │ │ │ ├── Question Mark Circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Question Mark Circle-1.pdf │ │ │ ├── Refresh.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Refresh.pdf │ │ │ ├── Sliders.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Sliders.pdf │ │ │ ├── Squares.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Squares.pdf │ │ │ ├── Sun.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MediumSun.pdf │ │ │ ├── Swap Horizontal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Swap Horizontal.pdf │ │ │ ├── Swap Vertical.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Swap Vertical.pdf │ │ │ ├── Twitter.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Twitter.pdf │ │ │ ├── Wallet.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Wallet.pdf │ │ │ ├── Warning Circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Warning Circle.pdf │ │ │ ├── Web.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Web.pdf │ │ │ ├── X mark.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── X mark.pdf │ │ │ └── iOS.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iOS.pdf │ │ ├── Original │ │ │ ├── Add.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconAdd.pdf │ │ │ ├── Apple.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── socialIconApple.pdf │ │ │ ├── ArrowDown.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconArrowDown.pdf │ │ │ ├── ArrowExchange.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconArrowExchange.pdf │ │ │ ├── ArrowLeft.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconArrowLeft.pdf │ │ │ ├── ArrowRight.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconArrowRight.pdf │ │ │ ├── ArrowUp.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconArrowUp.pdf │ │ │ ├── BackwardChevron.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconBackwardChevron.pdf │ │ │ ├── Checkmark.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconCheckmark.pdf │ │ │ ├── Compass.imageset │ │ │ │ ├── Compass.pdf │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Desktop.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconDesktop.pdf │ │ │ ├── Disconnect.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconDisconnect.pdf │ │ │ ├── Discord.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── socialIconDiscord.pdf │ │ │ ├── DownwardChevron.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconDownwardChevron.pdf │ │ │ ├── Error.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── error.pdf │ │ │ │ └── error_light.pdf │ │ │ ├── Extension.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconExtension.pdf │ │ │ ├── ExternalLink.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconExternalLink.pdf │ │ │ ├── Facebook.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── socialIconFacebook.pdf │ │ │ ├── ForwardChevron.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconForwardChevron.pdf │ │ │ ├── Github.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── socialIconGithub.pdf │ │ │ ├── Google.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── socialIconGoogle.pdf │ │ │ ├── Help.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconHelp.pdf │ │ │ ├── HelpSmall.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconHelpSmall.pdf │ │ │ ├── History.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconHistory.pdf │ │ │ ├── LargeBackward.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconLargeBackward.pdf │ │ │ ├── LargeClose.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconLargeClose.pdf │ │ │ ├── LargeCopy.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconLargeCopy.pdf │ │ │ ├── LargeDesktop.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconLargeDesktop.pdf │ │ │ ├── LargeEmail.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconLargeEmail.pdf │ │ │ ├── LargeEmoji.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconLargeEmoji.pdf │ │ │ ├── LargeMoon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconLargeMoon.pdf │ │ │ ├── LargePhone.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconLargePhone.pdf │ │ │ ├── LargeQrcode.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconLargeQrcode.pdf │ │ │ ├── LargeSun.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconLargeSun.pdf │ │ │ ├── LargeTwitter.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconTwitter.pdf │ │ │ ├── Mail.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconMail.pdf │ │ │ ├── Off.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconOff.pdf │ │ │ ├── Pen.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconPen.pdf │ │ │ ├── Phone.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconPhone.pdf │ │ │ ├── Popular.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconPopular.pdf │ │ │ ├── Qrcode.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconQrcode.pdf │ │ │ ├── QuestionMarkCircle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Question Mark Circle.pdf │ │ │ ├── Recent.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconRecent.pdf │ │ │ ├── Retry.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconRetry.pdf │ │ │ ├── Scan.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconScan.pdf │ │ │ ├── Search.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconSearch.pdf │ │ │ ├── Telegram.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── socialIconTelegram.pdf │ │ │ ├── ToastError.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon Box-2.pdf │ │ │ │ └── Icon Boxlight-2.pdf │ │ │ ├── ToastInfo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon Box-1.pdf │ │ │ │ └── Icon Boxlight-1.pdf │ │ │ ├── ToastSuccess.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon Box.pdf │ │ │ │ └── Icon Boxlight.pdf │ │ │ ├── Twitch.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── socialIconTwitch.pdf │ │ │ ├── Twitter.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── socialIconTwitter.pdf │ │ │ ├── UpwardChevron.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconUpwardChevron.pdf │ │ │ ├── Wallet.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Wallet.pdf │ │ │ └── Website.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconWebsite.pdf │ │ ├── Regular │ │ │ ├── 4 dots.imageset │ │ │ │ ├── 4 dots.pdf │ │ │ │ └── Contents.json │ │ │ ├── App.imageset │ │ │ │ ├── App.pdf │ │ │ │ └── Contents.json │ │ │ ├── Arrow Bottom.imageset │ │ │ │ ├── Arrow Bottom.pdf │ │ │ │ └── Contents.json │ │ │ ├── Bars.imageset │ │ │ │ ├── Bars.pdf │ │ │ │ └── Contents.json │ │ │ ├── Bell.imageset │ │ │ │ ├── Bell.pdf │ │ │ │ └── Contents.json │ │ │ ├── Browser.imageset │ │ │ │ ├── Browser.pdf │ │ │ │ └── Contents.json │ │ │ ├── Chart.imageset │ │ │ │ ├── Chart.pdf │ │ │ │ └── Contents.json │ │ │ ├── Chat Bubble.imageset │ │ │ │ ├── Chat Bubble.pdf │ │ │ │ └── Contents.json │ │ │ ├── Check Circle.imageset │ │ │ │ ├── Check Circle.pdf │ │ │ │ └── Contents.json │ │ │ ├── Checkmark.imageset │ │ │ │ ├── Checkmark.pdf │ │ │ │ └── Contents.json │ │ │ ├── Chevron Left.imageset │ │ │ │ ├── Chevron Left.pdf │ │ │ │ └── Contents.json │ │ │ ├── Code.imageset │ │ │ │ ├── Code.pdf │ │ │ │ └── Contents.json │ │ │ ├── Coin.imageset │ │ │ │ ├── Coin.pdf │ │ │ │ └── Contents.json │ │ │ ├── Compass.imageset │ │ │ │ ├── Compass.pdf │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Copy.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Copy.pdf │ │ │ ├── Desktop.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Desktop.pdf │ │ │ ├── Double Chevron Right.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Double Chevron Right.pdf │ │ │ ├── Extension.imageset │ │ │ │ ├── Browser-1.pdf │ │ │ │ └── Contents.json │ │ │ ├── External Link.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── External Link.pdf │ │ │ ├── Eye Crossed.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Eye Crossed.pdf │ │ │ ├── Eye.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Eye.pdf │ │ │ ├── Filters.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Filters.pdf │ │ │ ├── Fingerprint.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Fingerprint.pdf │ │ │ ├── Image.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Image.pdf │ │ │ ├── Info.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Info.pdf │ │ │ ├── Link.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Link.pdf │ │ │ ├── Load.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Load.pdf │ │ │ ├── Locker.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Locker.pdf │ │ │ ├── Magnifier.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Magnifier-1.pdf │ │ │ ├── Mail.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Mail.pdf │ │ │ ├── Mobile.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Mobile.pdf │ │ │ ├── Moon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Moon.pdf │ │ │ ├── Network.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Network.pdf │ │ │ ├── QR code.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── QR code.pdf │ │ │ ├── Question Mark Circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Question Mark Circle.pdf │ │ │ ├── Question.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Question.pdf │ │ │ ├── Sliders.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Sliders.pdf │ │ │ ├── Squares.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Squares.pdf │ │ │ ├── Sun.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Sun.pdf │ │ │ ├── Swap Horizontal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Swap Horizontal.pdf │ │ │ ├── Verif.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Verif.pdf │ │ │ ├── Wallet.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Wallet-1.pdf │ │ │ ├── Warning Circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Warning Circle.pdf │ │ │ └── X mark.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── X mark.pdf │ │ ├── ToastError.imageset │ │ │ ├── Contents.json │ │ │ ├── Icon Box-2.pdf │ │ │ └── Icon Boxlight-2.pdf │ │ ├── ToastInfo.imageset │ │ │ ├── Contents.json │ │ │ ├── Icon Box-1.pdf │ │ │ └── Icon Boxlight-1.pdf │ │ └── ToastSuccess.imageset │ │ │ ├── Contents.json │ │ │ ├── Icon Box.pdf │ │ │ └── Icon Boxlight.pdf │ │ ├── Images │ │ ├── Contents.json │ │ ├── imageBrowser.imageset │ │ │ ├── Contents.json │ │ │ ├── imageBrowserL@1x.png │ │ │ ├── imageBrowserL@2x.png │ │ │ └── imageBrowserL@3x.png │ │ ├── imageDao.imageset │ │ │ ├── Contents.json │ │ │ ├── imageDaoL@1x.png │ │ │ ├── imageDaoL@2x.png │ │ │ └── imageDaoL@3x.png │ │ ├── imageDeFi.imageset │ │ │ ├── Contents.json │ │ │ ├── imageDeFiL@1x.png │ │ │ ├── imageDeFiL@2x.png │ │ │ └── imageDeFiL@3x.png │ │ ├── imageDefiAlt.imageset │ │ │ ├── Contents.json │ │ │ ├── imageDefiAltL@1x.png │ │ │ ├── imageDefiAltL@2x.png │ │ │ └── imageDefiAltL@3x.png │ │ ├── imageEth.imageset │ │ │ ├── Contents.json │ │ │ ├── imageEthL@1x.png │ │ │ ├── imageEthL@2x.png │ │ │ └── imageEthL@3x.png │ │ ├── imageLayers.imageset │ │ │ ├── Contents.json │ │ │ ├── imageLayersL@1x.png │ │ │ ├── imageLayersL@2x.png │ │ │ └── imageLayersL@3x.png │ │ ├── imageLock.imageset │ │ │ ├── Contents.json │ │ │ ├── imageLockL@1x.png │ │ │ ├── imageLockL@2x.png │ │ │ └── imageLockL@3x.png │ │ ├── imageLogin.imageset │ │ │ ├── Contents.json │ │ │ ├── imageLoginL@1x.png │ │ │ ├── imageLoginL@2x.png │ │ │ └── imageLoginL@3x.png │ │ ├── imageNetwork.imageset │ │ │ ├── Contents.json │ │ │ ├── imageNetworkL@1x.png │ │ │ ├── imageNetworkL@2x.png │ │ │ └── imageNetworkL@3x.png │ │ ├── imageNft.imageset │ │ │ ├── Contents.json │ │ │ ├── imageNftL@1x.png │ │ │ ├── imageNftL@2x.png │ │ │ └── imageNftL@3x.png │ │ ├── imageNoun.imageset │ │ │ ├── Contents.json │ │ │ ├── imageNounL@1x.png │ │ │ ├── imageNounL@2x.png │ │ │ └── imageNounL@3x.png │ │ ├── imageProfile.imageset │ │ │ ├── Contents.json │ │ │ ├── imageProfileL@1x.png │ │ │ ├── imageProfileL@2x.png │ │ │ └── imageProfileL@3x.png │ │ └── imageSystem.imageset │ │ │ ├── Contents.json │ │ │ ├── imageSystemL@1x.png │ │ │ ├── imageSystemL@2x.png │ │ │ └── imageSystemL@3x.png │ │ ├── Mocks │ │ ├── Contents.json │ │ ├── MockChainImage.imageset │ │ │ ├── Contents.json │ │ │ └── Polygon.png │ │ └── MockWalletImage.imageset │ │ │ ├── Contents.json │ │ │ └── Rainbow.png │ │ └── OptionIcon │ │ ├── Contents.json │ │ ├── optionAll.imageset │ │ ├── Contents.json │ │ ├── all@2x.png │ │ ├── all@3x.png │ │ ├── all_dark@2x.png │ │ └── all_dark@3x.png │ │ ├── optionBrowser.imageset │ │ ├── Contents.json │ │ ├── optionBrowserThemeDarkL@2x.png │ │ ├── optionBrowserThemeDarkL@3x.png │ │ ├── optionBrowserThemeLightL@2x.png │ │ └── optionBrowserThemeLightL@3x.png │ │ ├── optionExtension.imageset │ │ ├── Contents.json │ │ ├── optionExtensionThemeDarkL@2x.png │ │ ├── optionExtensionThemeDarkL@3x.png │ │ ├── optionExtensionThemeLightL@2x.png │ │ └── optionExtensionThemeLightL@3x.png │ │ └── optionQrCode.imageset │ │ ├── Contents.json │ │ ├── optionQrCodeThemeDarkL@2x.png │ │ ├── optionQrCodeThemeDarkL@3x.png │ │ ├── optionQrCodeThemeLightL@2x.png │ │ └── optionQrCodeThemeLightL@3x.png │ └── Web3ModalImports copy.swift ├── Tests ├── Web3ModalTests │ ├── AccountButtonSnapshotTests.swift │ ├── NetworkButtonSnapshotTests.swift │ ├── QRCodeViewSnapshotTests.swift │ └── __Snapshots__ │ │ ├── AccountButtonSnapshotTests │ │ ├── test_snapshots.1.png │ │ └── test_snapshots.2.png │ │ ├── NetworkButtonSnapshotTests │ │ ├── test_snapshots.1.png │ │ └── test_snapshots.2.png │ │ └── QRCodeViewSnapshotTests │ │ ├── test_snapshots.1.png │ │ └── test_snapshots.2.png └── Web3ModalUITests │ ├── W3MActionEntrySnapshotTests.swift │ ├── W3MButtonSnapshotTests.swift │ ├── W3MCardSelectSnapshotTests.swift │ ├── W3MChipButtonSnapshotTests.swift │ ├── W3MListItemSnapshotTests.swift │ ├── W3MListSelectSnapshotTests.swift │ ├── W3MTagSnapshotTests.swift │ ├── W3MToastSnapshotTests .swift │ └── __Snapshots__ │ ├── W3MActionEntrySnapshotTests │ ├── test_snapshots.1.png │ └── test_snapshots.2.png │ ├── W3MButtonSnapshotTests │ ├── test_snapshots.1.png │ └── test_snapshots.2.png │ ├── W3MCardSelectSnapshotTests │ ├── test_snapshots.1.png │ └── test_snapshots.2.png │ ├── W3MChipButtonSnapshotTests │ ├── test_snapshots.1.png │ └── test_snapshots.2.png │ ├── W3MListItemSnapshotTests │ ├── test_snapshots.1.png │ ├── test_snapshots.2.png │ └── test_snapshots.3.png │ ├── W3MListSelectSnapshotTests │ ├── test_snapshots.1.png │ ├── test_snapshots.2.png │ └── test_snapshots.3.png │ ├── W3MTagSnapshotTests │ ├── test_snapshots.1.png │ └── test_snapshots.2.png │ └── W3MToastSnapshotTests │ ├── test_snapshots.1.png │ └── test_snapshots.2.png ├── Web3Modal.podspec ├── Web3Modal.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ ├── swiftpm │ └── Package.resolved │ └── xcschemes │ └── swift-web3modal-Package.xcscheme ├── fastlane ├── Appfile ├── Fastfile └── README.md └── run_tests.sh /.env: -------------------------------------------------------------------------------- 1 | SCHEME="Example" 2 | APP_IDENTIFIER="com.walletconnect.web3modal.sample" 3 | MATCH_IDENTIFIERS="com.walletconnect.web3modal.sample" 4 | APPLE_ID="6469691466" 5 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: Ask a question 4 | url: https://github.com/WalletConnect/walletconnect-monorepo/discussions/new?category=swift-ios 5 | about: Ask questions and discuss with other community members. 6 | - name: View our FAQ 7 | url: https://walletconnect.com/faq 8 | about: See our frequently asked questions 9 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 | 8 | 9 | Resolves # (issue) 10 | 11 | ## How Has This Been Tested? 12 | 13 | 18 | 19 | 20 | 21 | ## Due Dilligence 22 | 23 | * [ ] Breaking change 24 | * [ ] Requires a documentation update 25 | -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- 1 | xcov.report( 2 | scheme: 'swift-web3modal-Package', 3 | minimum_coverage_percentage: 20.0, 4 | xccov_file_direct_path: 'test_results/swift-web3modal-Package.xcresult', 5 | include_targets: 'Web3Modal,Web3ModalUI', 6 | ) 7 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "xcov", "~> 1.8" 4 | gem "danger", "~> 9.4" 5 | gem "danger-xcov", git: 'https://github.com/getyourguide/danger-xcov.git' 6 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | unit_tests: 2 | ./run_tests.sh --scheme swift-web3modal-Package 3 | 4 | release: 5 | fastlane release_testflight token:$(TOKEN) project_id:$(PROJECT_ID) -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Deprecated - Web3Modal 2 | 3 | WalletConnect Inc is now Reown. As part of this transition, we are deprecating a number of repositories/packages across our supported platforms, and transitioning to their equivalents published under the Reown organization. 4 | 5 | This repository is now considered deprecated and will reach End-of-Life on February 17th 2025. For more details, including migration guides please see: https://docs.reown.com/advanced/walletconnect-deprecations 6 | -------------------------------------------------------------------------------- /Sample/.gitignore: -------------------------------------------------------------------------------- 1 | .sentryclirc -------------------------------------------------------------------------------- /Sample/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Sample/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Sample/Example/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x-1.png -------------------------------------------------------------------------------- /Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x-1.png -------------------------------------------------------------------------------- /Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x-1.png -------------------------------------------------------------------------------- /Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sample/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Sample/Example/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sample/Example/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /Sample/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Sample/Example/Configuration.xcconfig: -------------------------------------------------------------------------------- 1 | // Uncomment next line and paste your project id. Get this on: https://cloud.walletconnect.com/sign-in 2 | PROJECT_ID = 9bfe94c9cbf74aaa0597094ef561f703 3 | -------------------------------------------------------------------------------- /Sample/Example/DefaultCryptoProvider.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import Web3 3 | import CryptoSwift 4 | import WalletConnectSigner 5 | 6 | struct DefaultCryptoProvider: CryptoProvider { 7 | 8 | public func recoverPubKey(signature: EthereumSignature, message: Data) throws -> Data { 9 | let publicKey = try EthereumPublicKey( 10 | message: message.bytes, 11 | v: EthereumQuantity(quantity: BigUInt(signature.v)), 12 | r: EthereumQuantity(signature.r), 13 | s: EthereumQuantity(signature.s) 14 | ) 15 | return Data(publicKey.rawPublicKey) 16 | } 17 | 18 | public func keccak256(_ data: Data) -> Data { 19 | let digest = SHA3(variant: .keccak256) 20 | let hash = digest.calculate(for: [UInt8](data)) 21 | return Data(hash) 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /Sample/Example/Example.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.developer.associated-domains 6 | 7 | applinks:lab.web3modal.com 8 | 9 | com.apple.security.app-sandbox 10 | 11 | com.apple.security.application-groups 12 | 13 | group.com.walletconnect.web3modal 14 | 15 | com.apple.security.files.user-selected.read-only 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /Sample/Example/InputConfig.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | struct InputConfig { 4 | 5 | static var projectId: String { 6 | guard let projectId = config(for: "PROJECT_ID"), !projectId.isEmpty else { 7 | fatalError("PROJECT_ID is either not defined or empty in Configuration.xcconfig") 8 | } 9 | 10 | return projectId 11 | } 12 | 13 | private static func config(for key: String) -> String? { 14 | return Bundle.main.object(forInfoDictionaryKey: key) as? String 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Sample/Example/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Sample/Example/WCSocketFactory.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import WalletConnectRelay 3 | import Starscream 4 | 5 | extension WebSocket: WebSocketConnecting { } 6 | 7 | struct DefaultSocketFactory: WebSocketFactory { 8 | func create(with url: URL) -> WebSocketConnecting { 9 | let socket = WebSocket(url: url) 10 | let queue = DispatchQueue(label: "com.walletconnect.sdk.sockets", attributes: .concurrent) 11 | socket.callbackQueue = queue 12 | return socket 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Sources/Web3Modal/Analytics/AnalyticsEvent.swift: -------------------------------------------------------------------------------- 1 | enum AnalyticsEvent: Equatable { 2 | case MODAL_LOADED 3 | case MODAL_OPEN(connected: Bool) 4 | case MODAL_CLOSE(connected: Bool) 5 | case CLICK_ALL_WALLETS 6 | case SELECT_WALLET(name: String, platform: Method) 7 | case CLICK_NETWORKS 8 | // case OPEN_ACTIVITY_VIEW // 9 | case SWITCH_NETWORK(network: Chain) 10 | case CONNECT_SUCCESS(method: Method, name: String) 11 | case CONNECT_ERROR(message: String) 12 | case DISCONNECT_SUCCESS 13 | case DISCONNECT_ERROR 14 | case CLICK_WALLET_HELP 15 | case CLICK_NETWORK_HELP 16 | case CLICK_GET_WALLET 17 | 18 | 19 | enum Method: String { 20 | case qrcode = "qrcode" 21 | case mobile = "mobile" 22 | } 23 | 24 | // enum Platform: String { 25 | // case qrcode = "QR" 26 | // case mobile = "mobile" 27 | // } 28 | } 29 | -------------------------------------------------------------------------------- /Sources/Web3Modal/Analytics/AnalyticsEventMapper.swift: -------------------------------------------------------------------------------- 1 | protocol AnalyticsEventMapper { 2 | func eventName(for event: AnalyticsEvent) -> String 3 | func parameters(for event: AnalyticsEvent) -> [String: String] 4 | } 5 | -------------------------------------------------------------------------------- /Sources/Web3Modal/Analytics/AnalyticsProvider.swift: -------------------------------------------------------------------------------- 1 | protocol AnalyticsProvider { 2 | func track(_ event: AnalyticsEvent) 3 | } 4 | -------------------------------------------------------------------------------- /Sources/Web3Modal/Analytics/Convenience/AnalyticsEvent+ResultBuilders.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | /// A builder resulting in an array of analytics event groups 4 | @resultBuilder enum AnalyticsEventGroupBuilder { 5 | /// Return an array of analytics event groups given a closure containing statements of analytics event groups 6 | static func buildBlock(_ eventGroups: AnalyticsEventGroup...) -> [AnalyticsEventGroup] { 7 | eventGroups 8 | } 9 | } 10 | 11 | /// A builder resulting in an array of analytics events 12 | @resultBuilder enum AnalyticsEventBuilder { 13 | /// Return an array of analytics events given a closure containing statements of analytics events. 14 | static func buildBlock(_ events: AnalyticsEvent...) -> [AnalyticsEvent] { 15 | events 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sources/Web3Modal/Analytics/Convenience/AnalyticsEventGroup.swift: -------------------------------------------------------------------------------- 1 | /// A group of analytics events tracked together in response to a common trigger 2 | struct AnalyticsEventGroup { 3 | // MARK: Properties 4 | 5 | /// The trigger causing the analytics events to be tracked 6 | let trigger: AnalyticsEventTrigger 7 | 8 | /// The events being tracked 9 | let events: [AnalyticsEvent] 10 | 11 | // MARK: Initializers 12 | 13 | init(_ trigger: AnalyticsEventTrigger, events: [AnalyticsEvent]) { 14 | self.trigger = trigger 15 | self.events = events 16 | } 17 | } 18 | 19 | extension AnalyticsEventGroup { 20 | /// Initialize with a trigger and event builder 21 | init(_ trigger: AnalyticsEventTrigger, @AnalyticsEventBuilder events: () -> [AnalyticsEvent]) { 22 | self.init(trigger, events: events()) 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Sources/Web3Modal/Analytics/Convenience/AnalyticsEventTrigger.swift: -------------------------------------------------------------------------------- 1 | /// A trigger that causes analytics events to be tracked 2 | enum AnalyticsEventTrigger { 3 | case onAppear 4 | case onDisappear 5 | case onTapGesture 6 | } 7 | -------------------------------------------------------------------------------- /Sources/Web3Modal/Analytics/Private/LoggingAnalyticsProvider.swift: -------------------------------------------------------------------------------- 1 | class LoggingAnalyticsProvider: AnalyticsProvider { 2 | private let eventMapper = DefaultAnalyticsEventMapper() 3 | 4 | func track(_ event: AnalyticsEvent) { 5 | let name = eventMapper.eventName(for: event) 6 | let properties = eventMapper.parameters(for: event) 7 | print("📊 Event reported: \(name), properties: \(properties)") 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Sources/Web3Modal/Core/W3MResponse.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | public struct W3MResponse: Codable, Equatable { 4 | init(id: RPCID? = RPCID(), topic: String? = nil, chainId: String? = nil, result: RPCResult) { 5 | self.id = id 6 | self.topic = topic 7 | self.chainId = chainId 8 | self.result = result 9 | } 10 | 11 | public let id: RPCID? 12 | public let topic: String? 13 | public let chainId: String? 14 | public let result: RPCResult 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3Modal/Extensions/Collection.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | -------------------------------------------------------------------------------- /Sources/Web3Modal/Extensions/Sequence.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | extension Sequence { 4 | func asyncMap( 5 | _ transform: (Element) async throws -> T 6 | ) async rethrows -> [T] { 7 | var values = [T]() 8 | 9 | for element in self { 10 | try await values.append(transform(element)) 11 | } 12 | 13 | return values 14 | } 15 | 16 | func concurrentMap( 17 | _ transform: @escaping (Element) async throws -> T 18 | ) async throws -> [T] { 19 | let tasks = map { element in 20 | Task { 21 | try await transform(element) 22 | } 23 | } 24 | 25 | return try await tasks.asyncMap { task in 26 | try await task.value 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Sources/Web3Modal/Models/Helpers/Bundle+extension.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | #if CocoaPods 4 | public extension Foundation.Bundle { 5 | private class CocoapodsBundle {} 6 | 7 | static var coreModule: Bundle { 8 | let bundle = Bundle(for: CocoapodsBundle.self) 9 | let frameworkBundlePath = bundle.path(forResource: "Web3Modal", ofType: "bundle")! 10 | return Bundle(path: frameworkBundlePath) ?? bundle 11 | } 12 | } 13 | #else 14 | public extension Foundation.Bundle { 15 | static var coreModule: Bundle { Bundle.module } 16 | } 17 | #endif 18 | -------------------------------------------------------------------------------- /Sources/Web3Modal/Networking/GetWalletsResponse.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | struct GetWalletsResponse: Codable { 4 | let count: Int 5 | let data: [Wallet] 6 | } 7 | 8 | struct GetIosDataResponse: Codable { 9 | let count: Int 10 | let data: [WalletMetadata] 11 | 12 | struct WalletMetadata: Codable { 13 | let id: String 14 | let ios_schema: String 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Sources/Web3Modal/PackageConfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.1.0" 3 | } 4 | -------------------------------------------------------------------------------- /Sources/Web3Modal/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Sources/Web3Modal/Resources/Assets.xcassets/Mocks/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Sources/Web3Modal/Resources/Assets.xcassets/Mocks/MockChainImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "Polygon.png", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Sources/Web3Modal/Resources/Assets.xcassets/Mocks/MockChainImage.imageset/Polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3Modal/Resources/Assets.xcassets/Mocks/MockChainImage.imageset/Polygon.png -------------------------------------------------------------------------------- /Sources/Web3Modal/Resources/Assets.xcassets/Mocks/MockWalletImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "Rainbow.png", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Sources/Web3Modal/Resources/Assets.xcassets/Mocks/MockWalletImage.imageset/Rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3Modal/Resources/Assets.xcassets/Mocks/MockWalletImage.imageset/Rainbow.png -------------------------------------------------------------------------------- /Sources/Web3Modal/Resources/Assets.xcassets/imageLogo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Square Image Editor.png", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3Modal/Resources/Assets.xcassets/imageLogo.imageset/Square Image Editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3Modal/Resources/Assets.xcassets/imageLogo.imageset/Square Image Editor.png -------------------------------------------------------------------------------- /Sources/Web3Modal/Sheets/Web3ModalSheetController.swift: -------------------------------------------------------------------------------- 1 | import SwiftUI 2 | import UIKit 3 | 4 | class Web3ModalSheetController: UIHostingController { 5 | @available(*, unavailable) 6 | @MainActor dynamic required init?(coder aDecoder: NSCoder) { 7 | fatalError("init(coder:) has not been implemented") 8 | } 9 | 10 | init(router: Router) { 11 | super.init(rootView: ModalContainerView(router: router)) 12 | self.modalTransitionStyle = .crossDissolve 13 | self.modalPresentationStyle = .overFullScreen 14 | } 15 | 16 | override func viewDidLoad() { 17 | super.viewDidLoad() 18 | self.view.backgroundColor = .clear 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Sources/Web3Modal/Web3ModalImports.swift: -------------------------------------------------------------------------------- 1 | #if !CocoaPods 2 | @_exported import Web3ModalUI 3 | @_exported import Web3ModalBackport 4 | @_exported import WalletConnectSign 5 | #else 6 | @_exported import WalletConnectSwiftV2 7 | #endif 8 | -------------------------------------------------------------------------------- /Sources/Web3Modal/Wrappers/UIApplicationWrapper.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import UIKit 3 | 4 | struct UIApplicationWrapper { 5 | let openURL: (URL, _ completionHandler: ((Bool) -> Void)?) -> Void 6 | let canOpenURL: (URL) -> Bool 7 | } 8 | 9 | extension UIApplicationWrapper { 10 | static let live = Self( 11 | openURL: { url, completion in 12 | UIApplication.shared.open(url, completionHandler: completion) 13 | }, 14 | canOpenURL: { url in 15 | UIApplication.shared.canOpenURL(url) 16 | } 17 | ) 18 | } 19 | -------------------------------------------------------------------------------- /Sources/Web3ModalBackport/Background.swift: -------------------------------------------------------------------------------- 1 | import SwiftUI 2 | 3 | extension Backport where Wrapped: View { 4 | public func background(alignment: Alignment = .center, @ViewBuilder _ content: () -> Content) -> some View { 5 | wrapped.background(content(), alignment: alignment) 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Sources/Web3ModalBackport/Backport.swift: -------------------------------------------------------------------------------- 1 | import SwiftUI 2 | 3 | public struct Backport { 4 | let wrapped: Wrapped 5 | 6 | public init(_ wrapped: Wrapped) { 7 | self.wrapped = wrapped 8 | } 9 | } 10 | 11 | public extension View { 12 | /// Wraps a SwiftUI `View` that can be extended to provide backport functionality. 13 | var backport: Backport { .init(self) } 14 | } 15 | -------------------------------------------------------------------------------- /Sources/Web3ModalBackport/Overlay.swift: -------------------------------------------------------------------------------- 1 | import SwiftUI 2 | 3 | extension Backport where Wrapped: View { 4 | public func overlay(alignment: Alignment = .center, @ViewBuilder _ content: () -> Content) -> some View { 5 | self.wrapped.overlay(content(), alignment: alignment) 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Helpers/Bundle.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | 4 | #if CocoaPods 5 | public extension Foundation.Bundle { 6 | private class CocoapodsBundle {} 7 | 8 | static var module: Bundle { 9 | let bundle = Bundle(for: CocoapodsBundle.self) 10 | let frameworkBundlePath = bundle.path(forResource: "Web3ModalUI", ofType: "bundle")! 11 | return Bundle(path: frameworkBundlePath) ?? bundle 12 | } 13 | } 14 | 15 | #endif 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Helpers/Spacing.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | public enum Spacing { 4 | /// 0 points 5 | public static var zero: CGFloat = 0 6 | /// 2 points 7 | public static var xxxxs: CGFloat = 2 8 | /// 4 points 9 | public static var xxxs: CGFloat = 4 10 | /// 6 points 11 | public static var xxs: CGFloat = 6 12 | /// 8 points 13 | public static var xs: CGFloat = 8 14 | /// 12 points 15 | public static var s: CGFloat = 12 16 | /// 14 points 17 | public static var m: CGFloat = 14 18 | /// 16 points 19 | public static var l: CGFloat = 16 20 | /// 20 points 21 | public static var xl: CGFloat = 20 22 | /// 24 points 23 | public static var xxl: CGFloat = 24 24 | /// 80 points 25 | public static var xxxl: CGFloat = 80 26 | } 27 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Miscellaneous/Binding+extension.swift: -------------------------------------------------------------------------------- 1 | import SwiftUI 2 | 3 | public extension Binding { 4 | /// Shorthand for default binding. Usually handy in View initialisers where outside binding is optional. 5 | static func stored(_ value: Value) -> Self { 6 | var value = value 7 | return .init(get: { value }, set: { value = $0 }) 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Miscellaneous/Shape+extension.swift: -------------------------------------------------------------------------------- 1 | import SwiftUI 2 | 3 | public extension Shape { 4 | func fill(_ fillStyle: Fill, strokeBorder strokeStyle: Stroke, lineWidth: Double = 1) -> some View { 5 | self 6 | .stroke(strokeStyle, lineWidth: lineWidth) 7 | .background(self.fill(fillStyle)) 8 | } 9 | } 10 | 11 | public extension InsettableShape { 12 | func fill(_ fillStyle: Fill, strokeBorder strokeStyle: Stroke, lineWidth: Double = 1) -> some View { 13 | self 14 | .strokeBorder(strokeStyle, lineWidth: lineWidth) 15 | .background(self.fill(fillStyle)) 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Modifiers/Conditional.swift: -------------------------------------------------------------------------------- 1 | import SwiftUI 2 | 3 | extension View { 4 | /// Applies the given transform if the given condition evaluates to `true`. 5 | /// - Parameters: 6 | /// - condition: The condition to evaluate. 7 | /// - transform: The transform to apply to the source `View`. 8 | /// - Returns: Either the original `View` or the modified `View` if the condition is `true`. 9 | @ViewBuilder public func `if`(_ condition: @autoclosure () -> Bool, transform: (Self) -> Content) -> some View { 10 | if condition() { 11 | transform(self) 12 | } else { 13 | self 14 | } 15 | } 16 | 17 | /// Transforms the source `View` with the given closure giving more flexibility with modifcations. 18 | public func transform(@ViewBuilder _ transform: (Self) -> some View) -> some View { 19 | transform(self) 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Blue080.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0xCC", 9 | "green" : "0x78", 10 | "red" : "0x29" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "1.000", 26 | "blue" : "0xFF", 27 | "green" : "0xB4", 28 | "red" : "0x6C" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Blue090.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0xD2", 9 | "green" : "0x7D", 10 | "red" : "0x2D" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "1.000", 26 | "blue" : "0xFF", 27 | "green" : "0xAA", 28 | "red" : "0x59" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Blue100.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0xFF", 9 | "green" : "0x96", 10 | "red" : "0x33" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "1.000", 26 | "blue" : "0xFF", 27 | "green" : "0xA1", 28 | "red" : "0x47" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Error100.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0x42", 9 | "green" : "0x51", 10 | "red" : "0xF0" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "1.000", 26 | "blue" : "0x67", 27 | "green" : "0x5A", 28 | "red" : "0xF2" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Glass75.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "0.750", 8 | "blue" : "0xF5", 9 | "green" : "0xF5", 10 | "red" : "0xF4" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "0.660", 26 | "blue" : "0x2A", 27 | "green" : "0x2A", 28 | "red" : "0x27" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Glass88.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "0.880", 8 | "blue" : "0xF5", 9 | "green" : "0xF5", 10 | "red" : "0xF4" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "0.880", 26 | "blue" : "0x2A", 27 | "green" : "0x2A", 28 | "red" : "0x27" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/GrayGlass002.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "0.020", 8 | "blue" : "0x14", 9 | "green" : "0x14", 10 | "red" : "0x14" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "0.020", 26 | "blue" : "0xFF", 27 | "green" : "0xFF", 28 | "red" : "0xFF" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/GrayGlass005.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "0.050", 8 | "blue" : "0x14", 9 | "green" : "0x14", 10 | "red" : "0x14" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "0.050", 26 | "blue" : "0xFF", 27 | "green" : "0xFF", 28 | "red" : "0xFF" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/GrayGlass010.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "0.100", 8 | "blue" : "0x14", 9 | "green" : "0x14", 10 | "red" : "0x14" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "0.100", 26 | "blue" : "0xFF", 27 | "green" : "0xFF", 28 | "red" : "0xFF" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/GrayGlass020.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "0.200", 8 | "blue" : "0x14", 9 | "green" : "0x14", 10 | "red" : "0x14" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "0.200", 26 | "blue" : "0xFF", 27 | "green" : "0xFF", 28 | "red" : "0xFF" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Grey18.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0x34", 9 | "green" : "0x34", 10 | "red" : "0x30" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Grey20.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0x3B", 9 | "green" : "0x3B", 10 | "red" : "0x36" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Grey22.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0x3F", 9 | "green" : "0x3F", 10 | "red" : "0x3A" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Indigo100.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0xF5", 9 | "green" : "0x5C", 10 | "red" : "0x3D" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "1.000", 26 | "blue" : "0xFB", 27 | "green" : "0x6D", 28 | "red" : "0x51" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Inverse000.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0x00", 9 | "green" : "0x00", 10 | "red" : "0x00" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "1.000", 26 | "blue" : "0x00", 27 | "green" : "0x00", 28 | "red" : "0x00" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Inverse100.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0xFF", 9 | "green" : "0xFF", 10 | "red" : "0xFF" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "1.000", 26 | "blue" : "0xFF", 27 | "green" : "0xFF", 28 | "red" : "0xFF" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Magenta100.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0x80", 9 | "green" : "0x53", 10 | "red" : "0xC6" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "1.000", 26 | "blue" : "0x8C", 27 | "green" : "0x4D", 28 | "red" : "0xCB" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Orange100.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0x2E", 9 | "green" : "0x8C", 10 | "red" : "0xEA" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "1.000", 26 | "blue" : "0x4C", 27 | "green" : "0xA6", 28 | "red" : "0xFF" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Overblue002.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "0.020", 8 | "blue" : "0xFF", 9 | "green" : "0x96", 10 | "red" : "0x33" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "0.020", 26 | "blue" : "0xFF", 27 | "green" : "0xA1", 28 | "red" : "0x47" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Overblue005.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "0.050", 8 | "blue" : "0xFF", 9 | "green" : "0x96", 10 | "red" : "0x33" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "0.050", 26 | "blue" : "0xFF", 27 | "green" : "0xA1", 28 | "red" : "0x47" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Overblue010.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "0.100", 8 | "blue" : "0xFF", 9 | "green" : "0x96", 10 | "red" : "0x33" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "0.100", 26 | "blue" : "0xFF", 27 | "green" : "0xA1", 28 | "red" : "0x47" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Overblue015.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "0.150", 8 | "blue" : "0xFF", 9 | "green" : "0x96", 10 | "red" : "0x33" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "0.150", 26 | "blue" : "0xFF", 27 | "green" : "0xA1", 28 | "red" : "0x47" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Overblue020.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "0.200", 8 | "blue" : "0xFF", 9 | "green" : "0x96", 10 | "red" : "0x33" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "0.200", 26 | "blue" : "0xFF", 27 | "green" : "0xA1", 28 | "red" : "0x47" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Overblue080.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "0.800", 8 | "blue" : "0xFF", 9 | "green" : "0x96", 10 | "red" : "0x33" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "0.800", 26 | "blue" : "0xFF", 27 | "green" : "0xA1", 28 | "red" : "0x47" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Overblue090.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "0.900", 8 | "blue" : "0xFF", 9 | "green" : "0x96", 10 | "red" : "0x33" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "0.900", 26 | "blue" : "0xFF", 27 | "green" : "0xA1", 28 | "red" : "0x47" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Overgray001.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "0.010", 8 | "blue" : "0x00", 9 | "green" : "0x00", 10 | "red" : "0x00" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "0.010", 26 | "blue" : "0xFF", 27 | "green" : "0xFF", 28 | "red" : "0xFF" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Overgray002.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "0.020", 8 | "blue" : "0x00", 9 | "green" : "0x00", 10 | "red" : "0x00" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "0.020", 26 | "blue" : "0xFF", 27 | "green" : "0xFF", 28 | "red" : "0xFF" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Overgray005.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "0.050", 8 | "blue" : "0x00", 9 | "green" : "0x00", 10 | "red" : "0x00" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "0.050", 26 | "blue" : "0xFF", 27 | "green" : "0xFF", 28 | "red" : "0xFF" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Overgray010.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "0.100", 8 | "blue" : "0x00", 9 | "green" : "0x00", 10 | "red" : "0x00" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "0.100", 26 | "blue" : "0xFF", 27 | "green" : "0xFF", 28 | "red" : "0xFF" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Colors/Teal100.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0xB6", 9 | "green" : "0xB6", 10 | "red" : "0x2B" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "1.000", 26 | "blue" : "0xE2", 27 | "green" : "0xE2", 28 | "red" : "0x36" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Arrow Bottom.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Arrow Bottom.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Arrow Left.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Arrow Left.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Arrow Right.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Arrow Right.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Arrow Top.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Arrow Top.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Bars.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Bars.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Bin.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Bin.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Browser.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Browser.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Checkmark.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Checkmark.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Chevron Bottom.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Chevron Bottom.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Chevron Left.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Chevron Left.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Chevron Right.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Chevron Right.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Chevron Top.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Chevron Top.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Clock.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Clock.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Code.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Code.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Compass.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Compass.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | }, 6 | "properties" : { 7 | "provides-namespace" : true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Copy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Copy.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Desktop.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Desktop.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Disconnect.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Disconnect.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Doc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Doc.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Double Chevron Vertical.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Double Chevron Vertical.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/External Link.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "External Link.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Eye Crossed.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Eye Crossed.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Eye.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Eye.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Filters.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Filters.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Image.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Image.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Info.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Info.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Light Bulb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Light Bulb.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Link.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Link.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Mail.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Mail.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Mobile.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Mobile.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Moon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Moon.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Network.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Network.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Nut.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Nut.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Off.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Off.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Pen.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Pen.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Plus.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Plus.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Question Mark Circle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Question Mark Circle.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Refresh.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Refresh.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Sliders Horizontal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Sliders Horizontal.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Sliders Vertical.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Sliders Vertical.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Squares.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Squares.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Sun.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Sun.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Swap Horizontal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Swap Horizontal.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Swap Vertical.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Swap Vertical.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Users.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Users.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Wallet.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Wallet.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Warning Circle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Warning Circle.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/Web.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Web.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Bold/X Mark.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "X Mark.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Error.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "error_light.pdf", 5 | "idiom" : "universal" 6 | }, 7 | { 8 | "appearances" : [ 9 | { 10 | "appearance" : "luminosity", 11 | "value" : "dark" 12 | } 13 | ], 14 | "filename" : "error.pdf", 15 | "idiom" : "universal" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Android.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Android.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/App.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "App.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Arrow Left.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Arrow Left.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Arrow Right.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Arrow Right.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Auth.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Auth.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Bell.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Bell.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Bin.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Bin.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Checkmark.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Checkmark.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Chevron Bottom.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Chevron Bottom.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Chevron Left.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Chevron Left.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Chevron Right.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Chevron Right.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Chevron Top.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Chevron Top.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Compass.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Compass.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | }, 6 | "properties" : { 7 | "provides-namespace" : true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Copy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Copy.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Desktop.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Desktop.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Disconnect.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Disconnect.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Doc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Doc.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Dots Horizontal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Dots Horizontal.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Dots Vertical.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Dots Vertical.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Double Chevron Vertical.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Double Chevron Vertical.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Etherscan.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Etherscan.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/External Link.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "External Link.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Eye Crossed.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Eye Crossed.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Eye.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Eye.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/File.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "File.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Filters.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Filters.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Info Circle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Info Circle.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Info.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Info.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Light Bulb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Light Bulb.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Magnifier.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Magnifier.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Mail.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Mail.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Mobile.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Mobile.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Moon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Moon.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Nut.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Nut.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Off.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Off.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Paste.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Paste.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Pen.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Pen.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Plus.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Plus.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/QR code.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "QR code.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Question Mark Circle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Question Mark Circle-1.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Refresh.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Refresh.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Sliders.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Sliders.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Squares.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Squares.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Sun.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "MediumSun.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Swap Horizontal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Swap Horizontal.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Swap Vertical.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Swap Vertical.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Twitter.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Twitter.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Wallet.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Wallet.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Warning Circle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Warning Circle.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/Web.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Web.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/X mark.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "X mark.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Medium/iOS.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "iOS.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Add.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "properties" : { 7 | "template-rendering-intent" : "template" 8 | }, 9 | "images" : [ 10 | { 11 | "filename" : "iconAdd.pdf", 12 | "idiom" : "universal" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Apple.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "images" : [ 7 | { 8 | "filename" : "socialIconApple.pdf", 9 | "idiom" : "universal" 10 | } 11 | ], 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/ArrowDown.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "images" : [ 7 | { 8 | "idiom" : "universal", 9 | "filename" : "iconArrowDown.pdf" 10 | } 11 | ], 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/ArrowExchange.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "images" : [ 7 | { 8 | "filename" : "iconArrowExchange.pdf", 9 | "idiom" : "universal" 10 | } 11 | ], 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/ArrowLeft.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties" : { 3 | "template-rendering-intent" : "template" 4 | }, 5 | "info" : { 6 | "version" : 1, 7 | "author" : "xcode" 8 | }, 9 | "images" : [ 10 | { 11 | "filename" : "iconArrowLeft.pdf", 12 | "idiom" : "universal" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/ArrowRight.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "properties" : { 7 | "template-rendering-intent" : "template" 8 | }, 9 | "images" : [ 10 | { 11 | "idiom" : "universal", 12 | "filename" : "iconArrowRight.pdf" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/ArrowUp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "images" : [ 7 | { 8 | "filename" : "iconArrowUp.pdf", 9 | "idiom" : "universal" 10 | } 11 | ], 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/BackwardChevron.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties" : { 3 | "template-rendering-intent" : "template" 4 | }, 5 | "info" : { 6 | "version" : 1, 7 | "author" : "xcode" 8 | }, 9 | "images" : [ 10 | { 11 | "filename" : "iconBackwardChevron.pdf", 12 | "idiom" : "universal" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Checkmark.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "properties" : { 7 | "template-rendering-intent" : "template" 8 | }, 9 | "images" : [ 10 | { 11 | "idiom" : "universal", 12 | "filename" : "iconCheckmark.pdf" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Compass.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Compass.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | }, 6 | "properties" : { 7 | "provides-namespace" : true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Desktop.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "images" : [ 7 | { 8 | "filename" : "iconDesktop.pdf", 9 | "idiom" : "universal" 10 | } 11 | ], 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Disconnect.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties" : { 3 | "template-rendering-intent" : "template" 4 | }, 5 | "info" : { 6 | "version" : 1, 7 | "author" : "xcode" 8 | }, 9 | "images" : [ 10 | { 11 | "filename" : "iconDisconnect.pdf", 12 | "idiom" : "universal" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Discord.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties" : { 3 | "template-rendering-intent" : "template" 4 | }, 5 | "info" : { 6 | "version" : 1, 7 | "author" : "xcode" 8 | }, 9 | "images" : [ 10 | { 11 | "filename" : "socialIconDiscord.pdf", 12 | "idiom" : "universal" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/DownwardChevron.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "properties" : { 7 | "template-rendering-intent" : "template" 8 | }, 9 | "images" : [ 10 | { 11 | "idiom" : "universal", 12 | "filename" : "iconDownwardChevron.pdf" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Error.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "error_light.pdf", 5 | "idiom" : "universal" 6 | }, 7 | { 8 | "appearances" : [ 9 | { 10 | "appearance" : "luminosity", 11 | "value" : "dark" 12 | } 13 | ], 14 | "filename" : "error.pdf", 15 | "idiom" : "universal" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Extension.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "images" : [ 7 | { 8 | "filename" : "iconExtension.pdf", 9 | "idiom" : "universal" 10 | } 11 | ], 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/ExternalLink.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties" : { 3 | "template-rendering-intent" : "template" 4 | }, 5 | "info" : { 6 | "version" : 1, 7 | "author" : "xcode" 8 | }, 9 | "images" : [ 10 | { 11 | "filename" : "iconExternalLink.pdf", 12 | "idiom" : "universal" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Facebook.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "properties" : { 7 | "template-rendering-intent" : "template" 8 | }, 9 | "images" : [ 10 | { 11 | "idiom" : "universal", 12 | "filename" : "socialIconFacebook.pdf" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/ForwardChevron.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "properties" : { 7 | "template-rendering-intent" : "template" 8 | }, 9 | "images" : [ 10 | { 11 | "idiom" : "universal", 12 | "filename" : "iconForwardChevron.pdf" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Github.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "images" : [ 7 | { 8 | "filename" : "socialIconGithub.pdf", 9 | "idiom" : "universal" 10 | } 11 | ], 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Google.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties" : { 3 | "template-rendering-intent" : "template" 4 | }, 5 | "info" : { 6 | "version" : 1, 7 | "author" : "xcode" 8 | }, 9 | "images" : [ 10 | { 11 | "filename" : "socialIconGoogle.pdf", 12 | "idiom" : "universal" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Help.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "images" : [ 7 | { 8 | "filename" : "iconHelp.pdf", 9 | "idiom" : "universal" 10 | } 11 | ], 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/HelpSmall.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties" : { 3 | "template-rendering-intent" : "template" 4 | }, 5 | "info" : { 6 | "version" : 1, 7 | "author" : "xcode" 8 | }, 9 | "images" : [ 10 | { 11 | "filename" : "iconHelpSmall.pdf", 12 | "idiom" : "universal" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/History.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "properties" : { 7 | "template-rendering-intent" : "template" 8 | }, 9 | "images" : [ 10 | { 11 | "idiom" : "universal", 12 | "filename" : "iconHistory.pdf" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/LargeBackward.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "images" : [ 7 | { 8 | "filename" : "iconLargeBackward.pdf", 9 | "idiom" : "universal" 10 | } 11 | ], 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/LargeClose.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties" : { 3 | "template-rendering-intent" : "template" 4 | }, 5 | "info" : { 6 | "version" : 1, 7 | "author" : "xcode" 8 | }, 9 | "images" : [ 10 | { 11 | "filename" : "iconLargeClose.pdf", 12 | "idiom" : "universal" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/LargeCopy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "properties" : { 7 | "template-rendering-intent" : "template" 8 | }, 9 | "images" : [ 10 | { 11 | "idiom" : "universal", 12 | "filename" : "iconLargeCopy.pdf" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/LargeDesktop.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "images" : [ 7 | { 8 | "filename" : "iconLargeDesktop.pdf", 9 | "idiom" : "universal" 10 | } 11 | ], 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/LargeEmail.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties" : { 3 | "template-rendering-intent" : "template" 4 | }, 5 | "info" : { 6 | "version" : 1, 7 | "author" : "xcode" 8 | }, 9 | "images" : [ 10 | { 11 | "filename" : "iconLargeEmail.pdf", 12 | "idiom" : "universal" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/LargeEmoji.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "properties" : { 7 | "template-rendering-intent" : "template" 8 | }, 9 | "images" : [ 10 | { 11 | "idiom" : "universal", 12 | "filename" : "iconLargeEmoji.pdf" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/LargeMoon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "images" : [ 7 | { 8 | "filename" : "iconLargeMoon.pdf", 9 | "idiom" : "universal" 10 | } 11 | ], 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/LargePhone.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties" : { 3 | "template-rendering-intent" : "template" 4 | }, 5 | "info" : { 6 | "version" : 1, 7 | "author" : "xcode" 8 | }, 9 | "images" : [ 10 | { 11 | "filename" : "iconLargePhone.pdf", 12 | "idiom" : "universal" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/LargeQrcode.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "properties" : { 7 | "template-rendering-intent" : "template" 8 | }, 9 | "images" : [ 10 | { 11 | "idiom" : "universal", 12 | "filename" : "iconLargeQrcode.pdf" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/LargeSun.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "images" : [ 7 | { 8 | "filename" : "iconLargeSun.pdf", 9 | "idiom" : "universal" 10 | } 11 | ], 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/LargeTwitter.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "properties" : { 7 | "template-rendering-intent" : "template" 8 | }, 9 | "images" : [ 10 | { 11 | "idiom" : "universal", 12 | "filename" : "iconTwitter.pdf" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Mail.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties" : { 3 | "template-rendering-intent" : "template" 4 | }, 5 | "info" : { 6 | "version" : 1, 7 | "author" : "xcode" 8 | }, 9 | "images" : [ 10 | { 11 | "filename" : "iconMail.pdf", 12 | "idiom" : "universal" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Off.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "properties" : { 7 | "template-rendering-intent" : "template" 8 | }, 9 | "images" : [ 10 | { 11 | "idiom" : "universal", 12 | "filename" : "iconOff.pdf" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Pen.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "images" : [ 7 | { 8 | "filename" : "iconPen.pdf", 9 | "idiom" : "universal" 10 | } 11 | ], 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Phone.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties" : { 3 | "template-rendering-intent" : "template" 4 | }, 5 | "info" : { 6 | "version" : 1, 7 | "author" : "xcode" 8 | }, 9 | "images" : [ 10 | { 11 | "filename" : "iconPhone.pdf", 12 | "idiom" : "universal" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Popular.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "properties" : { 7 | "template-rendering-intent" : "template" 8 | }, 9 | "images" : [ 10 | { 11 | "idiom" : "universal", 12 | "filename" : "iconPopular.pdf" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Qrcode.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "images" : [ 7 | { 8 | "filename" : "iconQrcode.pdf", 9 | "idiom" : "universal" 10 | } 11 | ], 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/QuestionMarkCircle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Question Mark Circle.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Recent.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties" : { 3 | "template-rendering-intent" : "template" 4 | }, 5 | "info" : { 6 | "version" : 1, 7 | "author" : "xcode" 8 | }, 9 | "images" : [ 10 | { 11 | "filename" : "iconRecent.pdf", 12 | "idiom" : "universal" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Retry.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "properties" : { 7 | "template-rendering-intent" : "template" 8 | }, 9 | "images" : [ 10 | { 11 | "idiom" : "universal", 12 | "filename" : "iconRetry.pdf" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Scan.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "images" : [ 7 | { 8 | "filename" : "iconScan.pdf", 9 | "idiom" : "universal" 10 | } 11 | ], 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Search.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties" : { 3 | "template-rendering-intent" : "template" 4 | }, 5 | "info" : { 6 | "version" : 1, 7 | "author" : "xcode" 8 | }, 9 | "images" : [ 10 | { 11 | "filename" : "iconSearch.pdf", 12 | "idiom" : "universal" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Telegram.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "properties" : { 7 | "template-rendering-intent" : "template" 8 | }, 9 | "images" : [ 10 | { 11 | "idiom" : "universal", 12 | "filename" : "socialIconTelegram.pdf" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/ToastError.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Icon Boxlight-2.pdf", 5 | "idiom" : "universal" 6 | }, 7 | { 8 | "appearances" : [ 9 | { 10 | "appearance" : "luminosity", 11 | "value" : "dark" 12 | } 13 | ], 14 | "filename" : "Icon Box-2.pdf", 15 | "idiom" : "universal" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/ToastInfo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Icon Boxlight-1.pdf", 5 | "idiom" : "universal" 6 | }, 7 | { 8 | "appearances" : [ 9 | { 10 | "appearance" : "luminosity", 11 | "value" : "dark" 12 | } 13 | ], 14 | "filename" : "Icon Box-1.pdf", 15 | "idiom" : "universal" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/ToastSuccess.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Icon Boxlight.pdf", 5 | "idiom" : "universal" 6 | }, 7 | { 8 | "appearances" : [ 9 | { 10 | "appearance" : "luminosity", 11 | "value" : "dark" 12 | } 13 | ], 14 | "filename" : "Icon Box.pdf", 15 | "idiom" : "universal" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Twitch.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "images" : [ 7 | { 8 | "filename" : "socialIconTwitch.pdf", 9 | "idiom" : "universal" 10 | } 11 | ], 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Twitter.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties" : { 3 | "template-rendering-intent" : "template" 4 | }, 5 | "info" : { 6 | "version" : 1, 7 | "author" : "xcode" 8 | }, 9 | "images" : [ 10 | { 11 | "filename" : "socialIconTwitter.pdf", 12 | "idiom" : "universal" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/UpwardChevron.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "images" : [ 7 | { 8 | "filename" : "iconUpwardChevron.pdf", 9 | "idiom" : "universal" 10 | } 11 | ], 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Wallet.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Wallet.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Original/Website.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "properties" : { 7 | "template-rendering-intent" : "template" 8 | }, 9 | "images" : [ 10 | { 11 | "idiom" : "universal", 12 | "filename" : "iconWebsite.pdf" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/4 dots.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "4 dots.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/App.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "App.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Arrow Bottom.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Arrow Bottom.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Bars.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Bars.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Bell.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Bell.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Browser.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Browser.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Chart.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Chart.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Chat Bubble.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Chat Bubble.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Check Circle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Check Circle.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Checkmark.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Checkmark.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Chevron Left.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Chevron Left.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Code.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Code.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Coin.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Coin.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Compass.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Compass.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | }, 6 | "properties" : { 7 | "provides-namespace" : true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Copy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Copy.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Desktop.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Desktop.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Double Chevron Right.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Double Chevron Right.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Extension.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Browser-1.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/External Link.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "External Link.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Eye Crossed.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Eye Crossed.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Eye.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Eye.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Filters.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Filters.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Fingerprint.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Fingerprint.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Image.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Image.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Info.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Info.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Link.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Link.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Load.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Load.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Locker.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Locker.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Magnifier.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Magnifier-1.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Mail.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Mail.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Mobile.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Mobile.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Moon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Moon.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Network.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Network.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/QR code.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "QR code.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Question Mark Circle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Question Mark Circle.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Question.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Question.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Sliders.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Sliders.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Squares.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Squares.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Sun.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Sun.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Swap Horizontal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Swap Horizontal.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Verif.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Verif.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Wallet.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Wallet-1.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/Warning Circle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Warning Circle.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/Regular/X mark.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "X mark.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/ToastError.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Icon Boxlight-2.pdf", 5 | "idiom" : "universal" 6 | }, 7 | { 8 | "appearances" : [ 9 | { 10 | "appearance" : "luminosity", 11 | "value" : "dark" 12 | } 13 | ], 14 | "filename" : "Icon Box-2.pdf", 15 | "idiom" : "universal" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/ToastInfo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Icon Boxlight-1.pdf", 5 | "idiom" : "universal" 6 | }, 7 | { 8 | "appearances" : [ 9 | { 10 | "appearance" : "luminosity", 11 | "value" : "dark" 12 | } 13 | ], 14 | "filename" : "Icon Box-1.pdf", 15 | "idiom" : "universal" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Icons/ToastSuccess.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Icon Boxlight.pdf", 5 | "idiom" : "universal" 6 | }, 7 | { 8 | "appearances" : [ 9 | { 10 | "appearance" : "luminosity", 11 | "value" : "dark" 12 | } 13 | ], 14 | "filename" : "Icon Box.pdf", 15 | "idiom" : "universal" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageBrowser.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "imageBrowserL@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "imageBrowserL@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "imageBrowserL@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageBrowser.imageset/imageBrowserL@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageBrowser.imageset/imageBrowserL@1x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageBrowser.imageset/imageBrowserL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageBrowser.imageset/imageBrowserL@2x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageBrowser.imageset/imageBrowserL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageBrowser.imageset/imageBrowserL@3x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageDao.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "imageDaoL@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "imageDaoL@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "imageDaoL@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageDao.imageset/imageDaoL@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageDao.imageset/imageDaoL@1x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageDao.imageset/imageDaoL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageDao.imageset/imageDaoL@2x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageDao.imageset/imageDaoL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageDao.imageset/imageDaoL@3x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageDeFi.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "imageDeFiL@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "imageDeFiL@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "imageDeFiL@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageDeFi.imageset/imageDeFiL@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageDeFi.imageset/imageDeFiL@1x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageDeFi.imageset/imageDeFiL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageDeFi.imageset/imageDeFiL@2x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageDeFi.imageset/imageDeFiL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageDeFi.imageset/imageDeFiL@3x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageDefiAlt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "imageDefiAltL@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "imageDefiAltL@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "imageDefiAltL@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageDefiAlt.imageset/imageDefiAltL@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageDefiAlt.imageset/imageDefiAltL@1x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageDefiAlt.imageset/imageDefiAltL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageDefiAlt.imageset/imageDefiAltL@2x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageDefiAlt.imageset/imageDefiAltL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageDefiAlt.imageset/imageDefiAltL@3x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageEth.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "imageEthL@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "imageEthL@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "imageEthL@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageEth.imageset/imageEthL@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageEth.imageset/imageEthL@1x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageEth.imageset/imageEthL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageEth.imageset/imageEthL@2x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageEth.imageset/imageEthL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageEth.imageset/imageEthL@3x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageLayers.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "imageLayersL@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "imageLayersL@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "imageLayersL@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageLayers.imageset/imageLayersL@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageLayers.imageset/imageLayersL@1x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageLayers.imageset/imageLayersL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageLayers.imageset/imageLayersL@2x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageLayers.imageset/imageLayersL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageLayers.imageset/imageLayersL@3x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageLock.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "imageLockL@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "imageLockL@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "imageLockL@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageLock.imageset/imageLockL@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageLock.imageset/imageLockL@1x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageLock.imageset/imageLockL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageLock.imageset/imageLockL@2x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageLock.imageset/imageLockL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageLock.imageset/imageLockL@3x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageLogin.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "imageLoginL@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "imageLoginL@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "imageLoginL@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageLogin.imageset/imageLoginL@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageLogin.imageset/imageLoginL@1x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageLogin.imageset/imageLoginL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageLogin.imageset/imageLoginL@2x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageLogin.imageset/imageLoginL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageLogin.imageset/imageLoginL@3x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageNetwork.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "imageNetworkL@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "imageNetworkL@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "imageNetworkL@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageNetwork.imageset/imageNetworkL@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageNetwork.imageset/imageNetworkL@1x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageNetwork.imageset/imageNetworkL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageNetwork.imageset/imageNetworkL@2x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageNetwork.imageset/imageNetworkL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageNetwork.imageset/imageNetworkL@3x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageNft.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "imageNftL@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "imageNftL@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "imageNftL@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageNft.imageset/imageNftL@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageNft.imageset/imageNftL@1x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageNft.imageset/imageNftL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageNft.imageset/imageNftL@2x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageNft.imageset/imageNftL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageNft.imageset/imageNftL@3x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageNoun.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "imageNounL@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "imageNounL@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "imageNounL@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageNoun.imageset/imageNounL@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageNoun.imageset/imageNounL@1x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageNoun.imageset/imageNounL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageNoun.imageset/imageNounL@2x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageNoun.imageset/imageNounL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageNoun.imageset/imageNounL@3x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageProfile.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "imageProfileL@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "imageProfileL@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "imageProfileL@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageProfile.imageset/imageProfileL@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageProfile.imageset/imageProfileL@1x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageProfile.imageset/imageProfileL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageProfile.imageset/imageProfileL@2x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageProfile.imageset/imageProfileL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageProfile.imageset/imageProfileL@3x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageSystem.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "imageSystemL@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "imageSystemL@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "imageSystemL@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageSystem.imageset/imageSystemL@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageSystem.imageset/imageSystemL@1x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageSystem.imageset/imageSystemL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageSystem.imageset/imageSystemL@2x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageSystem.imageset/imageSystemL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Images/imageSystem.imageset/imageSystemL@3x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Mocks/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Mocks/MockChainImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "Polygon.png", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Mocks/MockChainImage.imageset/Polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Mocks/MockChainImage.imageset/Polygon.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Mocks/MockWalletImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "Rainbow.png", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/Mocks/MockWalletImage.imageset/Rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/Mocks/MockWalletImage.imageset/Rainbow.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionAll.imageset/all@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionAll.imageset/all@2x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionAll.imageset/all@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionAll.imageset/all@3x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionAll.imageset/all_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionAll.imageset/all_dark@2x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionAll.imageset/all_dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionAll.imageset/all_dark@3x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionBrowser.imageset/optionBrowserThemeDarkL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionBrowser.imageset/optionBrowserThemeDarkL@2x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionBrowser.imageset/optionBrowserThemeDarkL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionBrowser.imageset/optionBrowserThemeDarkL@3x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionBrowser.imageset/optionBrowserThemeLightL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionBrowser.imageset/optionBrowserThemeLightL@2x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionBrowser.imageset/optionBrowserThemeLightL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionBrowser.imageset/optionBrowserThemeLightL@3x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionExtension.imageset/optionExtensionThemeDarkL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionExtension.imageset/optionExtensionThemeDarkL@2x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionExtension.imageset/optionExtensionThemeDarkL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionExtension.imageset/optionExtensionThemeDarkL@3x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionExtension.imageset/optionExtensionThemeLightL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionExtension.imageset/optionExtensionThemeLightL@2x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionExtension.imageset/optionExtensionThemeLightL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionExtension.imageset/optionExtensionThemeLightL@3x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionQrCode.imageset/optionQrCodeThemeDarkL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionQrCode.imageset/optionQrCodeThemeDarkL@2x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionQrCode.imageset/optionQrCodeThemeDarkL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionQrCode.imageset/optionQrCodeThemeDarkL@3x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionQrCode.imageset/optionQrCodeThemeLightL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionQrCode.imageset/optionQrCodeThemeLightL@2x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionQrCode.imageset/optionQrCodeThemeLightL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Sources/Web3ModalUI/Resources/Assets.xcassets/OptionIcon/optionQrCode.imageset/optionQrCodeThemeLightL@3x.png -------------------------------------------------------------------------------- /Sources/Web3ModalUI/Web3ModalImports copy.swift: -------------------------------------------------------------------------------- 1 | #if !CocoaPods 2 | @_exported import Web3ModalBackport 3 | #endif 4 | -------------------------------------------------------------------------------- /Tests/Web3ModalTests/AccountButtonSnapshotTests.swift: -------------------------------------------------------------------------------- 1 | import SnapshotTesting 2 | import SwiftUI 3 | @testable import Web3Modal 4 | import XCTest 5 | 6 | final class AccountButtonSnapshotTests: XCTestCase { 7 | 8 | // func test_snapshots() throws { 9 | // let view = AccountButtonPreviewView() 10 | // assertSnapshot(matching: view, as: .image(layout: .device(config: .iPhone13), traits: .init(userInterfaceStyle: .dark))) 11 | // assertSnapshot(matching: view, as: .image(layout: .device(config: .iPhone13), traits: .init(userInterfaceStyle: .light))) 12 | // } 13 | } 14 | -------------------------------------------------------------------------------- /Tests/Web3ModalTests/NetworkButtonSnapshotTests.swift: -------------------------------------------------------------------------------- 1 | import SnapshotTesting 2 | import SwiftUI 3 | @testable import Web3Modal 4 | import XCTest 5 | 6 | final class NetworkButtonSnapshotTests: XCTestCase { 7 | 8 | func test_snapshots() throws { 9 | let view = NetworkButtonPreviewView() 10 | assertSnapshot(matching: view, as: .image(layout: .device(config: .iPhone13), traits: .init(userInterfaceStyle: .dark))) 11 | assertSnapshot(matching: view, as: .image(layout: .device(config: .iPhone13), traits: .init(userInterfaceStyle: .light))) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Tests/Web3ModalTests/QRCodeViewSnapshotTests.swift: -------------------------------------------------------------------------------- 1 | import SnapshotTesting 2 | import SwiftUI 3 | @testable import Web3Modal 4 | import XCTest 5 | 6 | final class QRCodeViewSnapshotTests: XCTestCase { 7 | 8 | func test_snapshots() throws { 9 | let view = QRCodeViewPreviewView() 10 | assertSnapshot(matching: view, as: .image(layout: .device(config: .iPhone13), traits: .init(userInterfaceStyle: .dark))) 11 | assertSnapshot(matching: view, as: .image(layout: .device(config: .iPhone13), traits: .init(userInterfaceStyle: .light))) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Tests/Web3ModalTests/__Snapshots__/AccountButtonSnapshotTests/test_snapshots.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalTests/__Snapshots__/AccountButtonSnapshotTests/test_snapshots.1.png -------------------------------------------------------------------------------- /Tests/Web3ModalTests/__Snapshots__/AccountButtonSnapshotTests/test_snapshots.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalTests/__Snapshots__/AccountButtonSnapshotTests/test_snapshots.2.png -------------------------------------------------------------------------------- /Tests/Web3ModalTests/__Snapshots__/NetworkButtonSnapshotTests/test_snapshots.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalTests/__Snapshots__/NetworkButtonSnapshotTests/test_snapshots.1.png -------------------------------------------------------------------------------- /Tests/Web3ModalTests/__Snapshots__/NetworkButtonSnapshotTests/test_snapshots.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalTests/__Snapshots__/NetworkButtonSnapshotTests/test_snapshots.2.png -------------------------------------------------------------------------------- /Tests/Web3ModalTests/__Snapshots__/QRCodeViewSnapshotTests/test_snapshots.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalTests/__Snapshots__/QRCodeViewSnapshotTests/test_snapshots.1.png -------------------------------------------------------------------------------- /Tests/Web3ModalTests/__Snapshots__/QRCodeViewSnapshotTests/test_snapshots.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalTests/__Snapshots__/QRCodeViewSnapshotTests/test_snapshots.2.png -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/W3MActionEntrySnapshotTests.swift: -------------------------------------------------------------------------------- 1 | import SnapshotTesting 2 | import SwiftUI 3 | @testable import Web3ModalUI 4 | import XCTest 5 | 6 | final class W3MActionEntrySnapshotTests: XCTestCase { 7 | 8 | func test_snapshots() throws { 9 | let view = W3MActionEntryStylePreviewView() 10 | assertSnapshot(matching: view, as: .image(layout: .device(config: .iPhone13), traits: .init(userInterfaceStyle: .dark))) 11 | assertSnapshot(matching: view, as: .image(layout: .device(config: .iPhone13), traits: .init(userInterfaceStyle: .light))) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/W3MButtonSnapshotTests.swift: -------------------------------------------------------------------------------- 1 | import SnapshotTesting 2 | import SwiftUI 3 | @testable import Web3ModalUI 4 | import XCTest 5 | 6 | final class W3MButtonSnapshotTests: XCTestCase { 7 | 8 | func test_snapshots() throws { 9 | let view = W3MButtonStylePreviewView() 10 | assertSnapshot(matching: view, as: .image(layout: .device(config: .iPhone13), traits: .init(userInterfaceStyle: .dark))) 11 | assertSnapshot(matching: view, as: .image(layout: .device(config: .iPhone13), traits: .init(userInterfaceStyle: .light))) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/W3MCardSelectSnapshotTests.swift: -------------------------------------------------------------------------------- 1 | import SnapshotTesting 2 | import SwiftUI 3 | @testable import Web3ModalUI 4 | import XCTest 5 | 6 | final class W3MCardSelectSnapshotTests: XCTestCase { 7 | 8 | func test_snapshots() throws { 9 | let view = W3MCardSelectStylePreviewView() 10 | assertSnapshot(matching: view, as: .image(traits: .init(userInterfaceStyle: .dark))) 11 | assertSnapshot(matching: view, as: .image(traits: .init(userInterfaceStyle: .light))) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/W3MChipButtonSnapshotTests.swift: -------------------------------------------------------------------------------- 1 | import SnapshotTesting 2 | import SwiftUI 3 | @testable import Web3ModalUI 4 | import XCTest 5 | 6 | final class W3MChipButtonSnapshotTests: XCTestCase { 7 | 8 | func test_snapshots() throws { 9 | let view = W3MChipButtonStylePreviewView() 10 | assertSnapshot(matching: view, as: .image(layout: .fixed(width: 800, height: 800), traits: .init(userInterfaceStyle: .dark))) 11 | assertSnapshot(matching: view, as: .image(layout: .fixed(width: 800, height: 800), traits: .init(userInterfaceStyle: .light))) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/W3MTagSnapshotTests.swift: -------------------------------------------------------------------------------- 1 | import SnapshotTesting 2 | import SwiftUI 3 | @testable import Web3ModalUI 4 | import XCTest 5 | 6 | final class W3MTagSnapshotTests: XCTestCase { 7 | 8 | func test_snapshots() throws { 9 | let view = W3MTagPreviewView() 10 | assertSnapshot(matching: view, as: .image(layout: .fixed(width: 150, height: 250), traits: .init(userInterfaceStyle: .dark))) 11 | assertSnapshot(matching: view, as: .image(layout: .fixed(width: 150, height: 250), traits: .init(userInterfaceStyle: .light))) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/W3MToastSnapshotTests .swift: -------------------------------------------------------------------------------- 1 | import SnapshotTesting 2 | import SwiftUI 3 | @testable import Web3ModalUI 4 | import XCTest 5 | 6 | final class W3MToastSnapshotTests: XCTestCase { 7 | 8 | func test_snapshots() throws { 9 | let view = ToastViewPreviewView() 10 | assertSnapshot(matching: view, as: .image(layout: .fixed(width: 250, height: 250), traits: .init(userInterfaceStyle: .dark))) 11 | assertSnapshot(matching: view, as: .image(layout: .fixed(width: 250, height: 250), traits: .init(userInterfaceStyle: .light))) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/__Snapshots__/W3MActionEntrySnapshotTests/test_snapshots.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalUITests/__Snapshots__/W3MActionEntrySnapshotTests/test_snapshots.1.png -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/__Snapshots__/W3MActionEntrySnapshotTests/test_snapshots.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalUITests/__Snapshots__/W3MActionEntrySnapshotTests/test_snapshots.2.png -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/__Snapshots__/W3MButtonSnapshotTests/test_snapshots.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalUITests/__Snapshots__/W3MButtonSnapshotTests/test_snapshots.1.png -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/__Snapshots__/W3MButtonSnapshotTests/test_snapshots.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalUITests/__Snapshots__/W3MButtonSnapshotTests/test_snapshots.2.png -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/__Snapshots__/W3MCardSelectSnapshotTests/test_snapshots.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalUITests/__Snapshots__/W3MCardSelectSnapshotTests/test_snapshots.1.png -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/__Snapshots__/W3MCardSelectSnapshotTests/test_snapshots.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalUITests/__Snapshots__/W3MCardSelectSnapshotTests/test_snapshots.2.png -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/__Snapshots__/W3MChipButtonSnapshotTests/test_snapshots.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalUITests/__Snapshots__/W3MChipButtonSnapshotTests/test_snapshots.1.png -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/__Snapshots__/W3MChipButtonSnapshotTests/test_snapshots.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalUITests/__Snapshots__/W3MChipButtonSnapshotTests/test_snapshots.2.png -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/__Snapshots__/W3MListItemSnapshotTests/test_snapshots.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalUITests/__Snapshots__/W3MListItemSnapshotTests/test_snapshots.1.png -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/__Snapshots__/W3MListItemSnapshotTests/test_snapshots.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalUITests/__Snapshots__/W3MListItemSnapshotTests/test_snapshots.2.png -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/__Snapshots__/W3MListItemSnapshotTests/test_snapshots.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalUITests/__Snapshots__/W3MListItemSnapshotTests/test_snapshots.3.png -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/__Snapshots__/W3MListSelectSnapshotTests/test_snapshots.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalUITests/__Snapshots__/W3MListSelectSnapshotTests/test_snapshots.1.png -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/__Snapshots__/W3MListSelectSnapshotTests/test_snapshots.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalUITests/__Snapshots__/W3MListSelectSnapshotTests/test_snapshots.2.png -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/__Snapshots__/W3MListSelectSnapshotTests/test_snapshots.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalUITests/__Snapshots__/W3MListSelectSnapshotTests/test_snapshots.3.png -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/__Snapshots__/W3MTagSnapshotTests/test_snapshots.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalUITests/__Snapshots__/W3MTagSnapshotTests/test_snapshots.1.png -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/__Snapshots__/W3MTagSnapshotTests/test_snapshots.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalUITests/__Snapshots__/W3MTagSnapshotTests/test_snapshots.2.png -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/__Snapshots__/W3MToastSnapshotTests /test_snapshots.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalUITests/__Snapshots__/W3MToastSnapshotTests /test_snapshots.1.png -------------------------------------------------------------------------------- /Tests/Web3ModalUITests/__Snapshots__/W3MToastSnapshotTests /test_snapshots.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3modal-swift/4a8e20a04b0fe1c3038348a4345ce7d1b70a3265/Tests/Web3ModalUITests/__Snapshots__/W3MToastSnapshotTests /test_snapshots.2.png -------------------------------------------------------------------------------- /Web3Modal.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Web3Modal.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- 1 | itc_team_id("123564616") 2 | team_id("W5R8AG9K22") 3 | -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- 1 | fastlane documentation 2 | ---- 3 | 4 | # Installation 5 | 6 | Make sure you have the latest version of the Xcode command line tools installed: 7 | 8 | ```sh 9 | xcode-select --install 10 | ``` 11 | 12 | For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane) 13 | 14 | # Available Actions 15 | 16 | ## iOS 17 | 18 | ### ios release_testflight 19 | 20 | ```sh 21 | [bundle exec] fastlane ios release_testflight 22 | ``` 23 | 24 | 25 | 26 | ---- 27 | 28 | This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run. 29 | 30 | More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools). 31 | 32 | The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools). 33 | --------------------------------------------------------------------------------