├── .gitattributes ├── .gitignore ├── .swiftlint.yml ├── .travis.yml ├── CHANGELOG.md ├── Cyton.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── Cyton.xcscheme ├── Cyton.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Cyton ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── 1024线024.jpg │ │ ├── 120x120-1.jpg │ │ ├── 120x120.jpg │ │ ├── 180线80.jpg │ │ ├── 40x40.jpg │ │ ├── 58x58.jpg │ │ ├── 60x60.jpg │ │ ├── 80x80.jpg │ │ ├── 87x87.jpg │ │ └── Contents.json │ ├── Authentication │ │ ├── Contents.json │ │ ├── ethereum_network.imageset │ │ │ ├── Contents.json │ │ │ ├── ethereum_network@2x.png │ │ │ └── ethereum_network@3x.png │ │ ├── faceId_icon.imageset │ │ │ ├── Contents.json │ │ │ └── Group 3.png │ │ ├── faceId_login_icon.imageset │ │ │ ├── Contents.json │ │ │ └── Group 3 Copy.png │ │ ├── icon_authentication.imageset │ │ │ ├── Contents.json │ │ │ └── Group 13@2x.png │ │ ├── icon_down.imageset │ │ │ ├── Contents.json │ │ │ └── Path 46.png │ │ ├── password_login_icon.imageset │ │ │ ├── Contents.json │ │ │ └── Group 13.png │ │ ├── touchId_icon.imageset │ │ │ ├── Contents.json │ │ │ └── Group 12@3x.png │ │ └── touchId_login_icon.imageset │ │ │ ├── Contents.json │ │ │ └── Group 12 Copy.png │ ├── Contents.json │ ├── DApp Browser │ │ ├── Contents.json │ │ ├── dapp_collection.imageset │ │ │ ├── Contents.json │ │ │ ├── dapp_collection@2x.png │ │ │ └── dapp_collection@3x.png │ │ ├── dapp_default.imageset │ │ │ ├── Contents.json │ │ │ ├── dapp_default@2x.png │ │ │ └── dapp_default@3x.png │ │ ├── webview_ahead_off.imageset │ │ │ ├── Contents.json │ │ │ ├── webview_ahead_off@2x.png │ │ │ └── webview_ahead_off@3x.png │ │ ├── webview_ahead_on.imageset │ │ │ ├── Contents.json │ │ │ ├── webview_ahead_on@2x.png │ │ │ └── webview_ahead_on@3x.png │ │ ├── webview_back_off.imageset │ │ │ ├── Contents.json │ │ │ ├── webview_back_off@2x.png │ │ │ └── webview_back_off@3x.png │ │ └── webview_back_on.imageset │ │ │ ├── Contents.json │ │ │ ├── webview_back_on@2x.png │ │ │ └── webview_back_on@3x.png │ ├── Error │ │ ├── Contents.json │ │ ├── blank_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── 空白页面@2x.png │ │ │ └── 空白页面@3x.png │ │ └── fail_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── 失败页面@2x.png │ │ │ └── 失败页面@3x.png │ ├── Guide │ │ ├── Contents.json │ │ ├── icon_check_no.imageset │ │ │ ├── Contents.json │ │ │ ├── Group Copy@2x.png │ │ │ └── Group Copy@3x.png │ │ └── icon_check_yes.imageset │ │ │ ├── Contents.json │ │ │ └── 选中.png │ ├── Icons │ │ ├── Contents.json │ │ ├── add_asset.imageset │ │ │ ├── Contents.json │ │ │ ├── add_asset@2x.png │ │ │ └── add_asset@3x.png │ │ ├── add_wallet.imageset │ │ │ ├── Contents.json │ │ │ ├── add_wallet@2x.png │ │ │ └── add_wallet@3x.png │ │ ├── close.imageset │ │ │ ├── Contents.json │ │ │ └── 关闭 (1).png │ │ ├── copy.imageset │ │ │ ├── Contents.json │ │ │ ├── 复制.png │ │ │ ├── 复制@2x.png │ │ │ └── 复制@3x.png │ │ ├── copy_address.imageset │ │ │ ├── Contents.json │ │ │ ├── copy_address@2x.png │ │ │ └── copy_address@3x.png │ │ ├── currency_selected.imageset │ │ │ ├── Contents.json │ │ │ ├── selected@2x.png │ │ │ └── selected@3x.png │ │ ├── cyton_logo.imageset │ │ │ ├── Contents.json │ │ │ ├── neuron_logo@2x.png │ │ │ └── neuron_logo@3x.png │ │ ├── eth_logo.imageset │ │ │ ├── Contents.json │ │ │ ├── eth_logo.png │ │ │ ├── eth_logo@2x.png │ │ │ └── eth_logo@3x.png │ │ ├── eth_test.imageset │ │ │ ├── Contents.json │ │ │ ├── ETH_test.png │ │ │ ├── ETH_test@2x.png │ │ │ └── ETH_test@3x.png │ │ ├── icon_changepassword_info.imageset │ │ │ ├── Contents.json │ │ │ └── 警告.png │ │ ├── icon_refresh.imageset │ │ │ ├── Contents.json │ │ │ └── 刷新.png │ │ ├── icon_wallet_add.imageset │ │ │ ├── Contents.json │ │ │ └── Group 3.png │ │ ├── icon_wallet_qrcode.imageset │ │ │ ├── Contents.json │ │ │ └── Group 6.png │ │ ├── icon_wallet_switch.imageset │ │ │ ├── Contents.json │ │ │ └── 切换 (2).png │ │ ├── icon_wallet_trans.imageset │ │ │ ├── Contents.json │ │ │ └── 形状.png │ │ ├── import_wallet.imageset │ │ │ ├── Contents.json │ │ │ ├── importWallet@2x.png │ │ │ └── importWallet@3x.png │ │ ├── neuron_nervos.imageset │ │ │ ├── Contents.json │ │ │ ├── neuron_nervos@2x.png │ │ │ └── neuron_nervos@3x.png │ │ ├── qr_code.imageset │ │ │ ├── Contents.json │ │ │ ├── qrCode.png │ │ │ ├── qrCode@2x.png │ │ │ └── qrCode@3x.png │ │ ├── search_left.imageset │ │ │ ├── Contents.json │ │ │ ├── search_left.png │ │ │ ├── search_left@2x.png │ │ │ └── search_left@3x.png │ │ ├── select_chain.imageset │ │ │ ├── Contents.json │ │ │ ├── select_chain@2x.png │ │ │ └── select_chain@3x.png │ │ ├── select_on.imageset │ │ │ ├── Contents.json │ │ │ ├── select_on.png │ │ │ ├── select_on@2x.png │ │ │ └── select_on@3x.png │ │ ├── state_off.imageset │ │ │ ├── Contents.json │ │ │ ├── state_off.png │ │ │ ├── state_off@2x.png │ │ │ └── state_off@3x.png │ │ ├── state_on.imageset │ │ │ ├── Contents.json │ │ │ ├── state_on.png │ │ │ ├── state_on@2x.png │ │ │ └── state_on@3x.png │ │ ├── success.imageset │ │ │ ├── Contents.json │ │ │ ├── success@2x.png │ │ │ └── success@3x.png │ │ ├── transaction_failed.imageset │ │ │ ├── Contents.json │ │ │ ├── transaction_failed@2x.png │ │ │ └── transaction_failed@3x.png │ │ ├── transaction_success.imageset │ │ │ ├── Contents.json │ │ │ ├── transaction_success@2x.png │ │ │ └── transaction_success@3x.png │ │ ├── transferring.imageset │ │ │ ├── Contents.json │ │ │ ├── transferring@2x.png │ │ │ └── transferring@3x.png │ │ ├── tx_status.imageset │ │ │ ├── Contents.json │ │ │ ├── Oval 3.png │ │ │ ├── Oval 3@2x.png │ │ │ └── Oval 3@3x.png │ │ ├── tx_success.imageset │ │ │ ├── Contents.json │ │ │ ├── 成功.png │ │ │ ├── 成功@2x.png │ │ │ └── 成功@3x.png │ │ ├── wallet_detail.imageset │ │ │ ├── Contents.json │ │ │ ├── wallet_detail@2x.png │ │ │ └── wallet_detail@3x.png │ │ ├── wallet_switch_arrow.imageset │ │ │ ├── Contents.json │ │ │ ├── wallet_switch@2x.png │ │ │ └── wallet_switch@3x.png │ │ └── warn.imageset │ │ │ ├── Contents.json │ │ │ ├── warn@2x.png │ │ │ └── warn@3x.png │ ├── Launch Screen │ │ ├── Contents.json │ │ └── launch_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── launch_icon@2x.png │ │ │ └── launch_icon@3x.png │ ├── NavigationBar │ │ ├── Contents.json │ │ ├── add_wallet_icon.imageset │ │ │ ├── Contents.json │ │ │ └── 添加 加号 无边框.png │ │ ├── icon_share.imageset │ │ │ ├── Contents.json │ │ │ ├── 分享-top@2x.png │ │ │ └── 分享-top@3x.png │ │ ├── nav_add_asset.imageset │ │ │ ├── Contents.json │ │ │ ├── nav_addAsset@2x.png │ │ │ └── nav_addAsset@3x.png │ │ ├── nav_back.imageset │ │ │ ├── Contents.json │ │ │ └── back2.png │ │ ├── nav_close.imageset │ │ │ ├── Contents.json │ │ │ └── 关闭 (1).png │ │ ├── nav_darkback.imageset │ │ │ ├── Contents.json │ │ │ ├── nav_darkback@2x.png │ │ │ └── nav_darkback@3x.png │ │ ├── nav_scan.imageset │ │ │ ├── Contents.json │ │ │ └── 扫码.png │ │ ├── nav_switch_wallet.imageset │ │ │ ├── Contents.json │ │ │ ├── switchWallet@2x.png │ │ │ └── switchWallet@3x.png │ │ ├── pull_down.imageset │ │ │ ├── Contents.json │ │ │ ├── pull_down@2x.png │ │ │ └── pull_down@3x.png │ │ ├── search_dapp.imageset │ │ │ ├── Contents.json │ │ │ ├── search_dapp@2x.png │ │ │ └── search_dapp@3x.png │ │ ├── switch_wallet.imageset │ │ │ ├── Contents.json │ │ │ ├── switch_wallet@2x.png │ │ │ └── switch_wallet@3x.png │ │ ├── switch_wallet_icon.imageset │ │ │ ├── Contents.json │ │ │ └── Shape.png │ │ └── wallet_qr_code.imageset │ │ │ ├── Contents.json │ │ │ ├── walletQRCode@2x.png │ │ │ └── walletQRCode@3x.png │ ├── Settings │ │ ├── Contents.json │ │ ├── aboutus.imageset │ │ │ ├── Contents.json │ │ │ ├── aboutus@2x.png │ │ │ └── aboutus@3x.png │ │ ├── cita.imageset │ │ │ ├── Contents.json │ │ │ ├── cita@2x.png │ │ │ └── cita@3x.png │ │ ├── contactus.imageset │ │ │ ├── Contents.json │ │ │ ├── contactus@2x.png │ │ │ └── contactus@3x.png │ │ ├── currency.imageset │ │ │ ├── Contents.json │ │ │ ├── currency@2x.png │ │ │ └── currency@3x.png │ │ ├── fingerprint_setup.imageset │ │ │ ├── Contents.json │ │ │ ├── fingerprint_setup@2x.png │ │ │ └── fingerprint_setup@3x.png │ │ ├── forums.imageset │ │ │ ├── Contents.json │ │ │ ├── Group 11@2x.png │ │ │ └── Group 11@3x.png │ │ ├── infua.imageset │ │ │ ├── Contents.json │ │ │ ├── infua@2x.png │ │ │ └── infua@3x.png │ │ ├── nervos_network.imageset │ │ │ ├── Contents.json │ │ │ ├── nervos_network@2x.png │ │ │ └── nervos_network@3x.png │ │ ├── opensea.imageset │ │ │ ├── Contents.json │ │ │ ├── openSea@2x.png │ │ │ └── openSea@3x.png │ │ ├── peckshield.imageset │ │ │ ├── Contents.json │ │ │ ├── peckshield@2x.png │ │ │ └── peckshield@3x.png │ │ ├── service_terms.imageset │ │ │ ├── Contents.json │ │ │ ├── service_terms@2x.png │ │ │ └── service_terms@3x.png │ │ └── source_code.imageset │ │ │ ├── Contents.json │ │ │ ├── source_code@2x.png │ │ │ └── source_code@3x.png │ ├── TabBar │ │ ├── Contents.json │ │ ├── Main_off.imageset │ │ │ ├── Contents.json │ │ │ ├── Main_off@2x.png │ │ │ └── Main_off@3x.png │ │ ├── Main_on.imageset │ │ │ ├── Contents.json │ │ │ ├── Main_on@2x.png │ │ │ └── Main_on@3x.png │ │ ├── dapp_off.imageset │ │ │ ├── Contents.json │ │ │ ├── dapp_off@2x.png │ │ │ └── dapp_off@3x.png │ │ ├── dapp_on.imageset │ │ │ ├── Contents.json │ │ │ ├── dapp_on@2x.png │ │ │ └── dapp_on@3x.png │ │ ├── wallet_off.imageset │ │ │ ├── Contents.json │ │ │ ├── wallet_off@2x.png │ │ │ └── wallet_off@3x.png │ │ └── wallet_on.imageset │ │ │ ├── Contents.json │ │ │ ├── wallet_on@2x.png │ │ │ └── wallet_on@3x.png │ ├── Theme Colors │ │ ├── Contents.json │ │ ├── Control │ │ │ ├── Contents.json │ │ │ ├── control_disabled_bg_color.colorset │ │ │ │ └── Contents.json │ │ │ └── control_disabled_title_color.colorset │ │ │ │ └── Contents.json │ │ ├── Neutral │ │ │ ├── Contents.json │ │ │ ├── dark_bg_color.colorset │ │ │ │ └── Contents.json │ │ │ ├── headline_color.colorset │ │ │ │ └── Contents.json │ │ │ ├── info_color.colorset │ │ │ │ └── Contents.json │ │ │ └── subhead_color.colorset │ │ │ │ └── Contents.json │ │ ├── Primary │ │ │ ├── Contents.json │ │ │ ├── branding_color.colorset │ │ │ │ └── Contents.json │ │ │ ├── label_bg_color.colorset │ │ │ │ └── Contents.json │ │ │ ├── label_border_color.colorset │ │ │ │ └── Contents.json │ │ │ └── tint_color.colorset │ │ │ │ └── Contents.json │ │ ├── Secondary │ │ │ ├── Contents.json │ │ │ ├── secondary_color.colorset │ │ │ │ └── Contents.json │ │ │ ├── warning_bg_color.colorset │ │ │ │ └── Contents.json │ │ │ └── warning_color.colorset │ │ │ │ └── Contents.json │ │ └── Weak │ │ │ ├── Contents.json │ │ │ ├── weak_1_color.colorset │ │ │ └── Contents.json │ │ │ ├── weak_2_color.colorset │ │ │ └── Contents.json │ │ │ ├── weak_3_color.colorset │ │ │ └── Contents.json │ │ │ └── weak_4_color.colorset │ │ │ └── Contents.json │ ├── Transaction │ │ ├── Contents.json │ │ ├── Details │ │ │ ├── Contents.json │ │ │ ├── icon_tx_details_chain_cita.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── 分组 5@2x.png │ │ │ │ └── 分组 5@3x.png │ │ │ ├── icon_tx_details_chain_eth.imageset │ │ │ │ ├── Bitmap@2x.png │ │ │ │ ├── Bitmap@3x.png │ │ │ │ └── Contents.json │ │ │ └── icon_tx_details_copy.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── 形状@2x.png │ │ │ │ └── 形状@3x.png │ │ └── Send │ │ │ ├── Contents.json │ │ │ └── icon_tx_send_selected.imageset │ │ │ ├── Contents.json │ │ │ ├── Path 21@2x.png │ │ │ └── Path 21@3x.png │ └── Wallet │ │ ├── Contents.json │ │ ├── Icon │ │ ├── Contents.json │ │ ├── icon_wallet_selected.imageset │ │ │ ├── Contents.json │ │ │ ├── 勾@2x.png │ │ │ └── 勾@3x.png │ │ ├── wallet_icon_dog.imageset │ │ │ ├── Contents.json │ │ │ ├── 狗@2x.png │ │ │ └── 狗@3x.png │ │ ├── wallet_icon_fish.imageset │ │ │ ├── Contents.json │ │ │ ├── 鱼@2x.png │ │ │ └── 鱼@3x.png │ │ ├── wallet_icon_fox.imageset │ │ │ ├── Contents.json │ │ │ ├── 狐狸@2x.png │ │ │ └── 狐狸@3x.png │ │ ├── wallet_icon_owl.imageset │ │ │ ├── Contents.json │ │ │ ├── 猫头鹰@2x.png │ │ │ └── 猫头鹰@3x.png │ │ ├── wallet_icon_parrot.imageset │ │ │ ├── Contents.json │ │ │ ├── 鹦鹉@2x.png │ │ │ └── 鹦鹉@3x.png │ │ ├── wallet_icon_rat.imageset │ │ │ ├── Contents.json │ │ │ ├── 老鼠@2x.png │ │ │ └── 老鼠@3x.png │ │ ├── wallet_icon_squirrel.imageset │ │ │ ├── Contents.json │ │ │ ├── 松鼠@2x.png │ │ │ └── 松鼠@3x.png │ │ └── wallet_icon_tiger.imageset │ │ │ ├── Contents.json │ │ │ ├── 老虎@2x.png │ │ │ └── 老虎@3x.png │ │ └── Switch │ │ ├── Contents.json │ │ └── icon_add_wallet.imageset │ │ ├── Contents.json │ │ ├── Group@2x.png │ │ └── Group@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Constants │ ├── NibLoadable.swift │ ├── NotificationName.swift │ ├── ServerAPI.swift │ ├── TokenMacro.swift │ └── WKWebViewConfigConstants.swift ├── Cyton-Bridging-Header.h ├── Cyton.entitlements ├── Extensions │ ├── Foundation │ │ ├── BigUInt+Extension.swift │ │ ├── Double+Extension.swift │ │ ├── NSDecimalNumber+Extension.swift │ │ ├── String+Error.swift │ │ ├── String+Extension.swift │ │ ├── UInt+Extension.swift │ │ └── Web3Error+Description.swift │ └── UIKit │ │ ├── UIColor+Extension.swift │ │ ├── UIControl+Extension.swift │ │ ├── UIStoryboard+Extension.swift │ │ ├── UIView+Extension.swift │ │ └── URLRequest+Extension.swift ├── Info.plist ├── MainViewController.swift ├── Models │ ├── Realm │ │ ├── AppModel.swift │ │ ├── ChainModel.swift │ │ ├── DAppModel.swift │ │ ├── RealmConfigurator.swift │ │ ├── TokenModel.swift │ │ └── WalletModel.swift │ ├── Token.swift │ └── TransactionDetails.swift ├── Resource │ ├── currency.plist │ ├── cyton.js │ ├── dappOpration.js │ ├── en.lproj │ │ └── product_agreement.txt │ ├── guide_image │ │ ├── en.lproj │ │ │ ├── guide_page_1@2x.png │ │ │ ├── guide_page_1@3x.png │ │ │ ├── guide_page_2@2x.png │ │ │ ├── guide_page_2@3x.png │ │ │ ├── guide_page_3@2x.png │ │ │ └── guide_page_3@3x.png │ │ └── zh-Hans.lproj │ │ │ ├── guide_page_1@2x.png │ │ │ ├── guide_page_1@3x.png │ │ │ ├── guide_page_2@2x.png │ │ │ ├── guide_page_2@3x.png │ │ │ ├── guide_page_3@2x.png │ │ │ └── guide_page_3@3x.png │ ├── init.js │ └── zh-Hans.lproj │ │ └── product_agreement.txt ├── Sections │ ├── Authentication │ │ ├── AuthDeviceViewController.swift │ │ ├── AuthPasswordViewController.swift │ │ ├── AuthSelectWalletViewController.swift │ │ ├── Authentication.storyboard │ │ ├── AuthenticationService.swift │ │ ├── AuthenticationViewController.swift │ │ └── OpenAuthViewController.swift │ ├── Common │ │ ├── BaseNavigationController.swift │ │ ├── DesignableButton.swift │ │ ├── DesignableGradientView.swift │ │ ├── PageItems │ │ │ ├── ModifyWalletNamePageItem.swift │ │ │ ├── PageItemAppearance.swift │ │ │ ├── PasswordPageItem.swift │ │ │ ├── SendTransactionSummaryView.xib │ │ │ ├── ShowTokenPageItem.swift │ │ │ ├── SignMessagePageItem.swift │ │ │ ├── SuccessPageItem.swift │ │ │ ├── TokenMessageView.xib │ │ │ └── TxSummaryPageItem.swift │ │ ├── QRCodeViewController.swift │ │ ├── TabbedButtonsView.swift │ │ └── TabbedButtonsView.xib │ ├── DApp │ │ ├── Handler │ │ │ ├── DAppAction.swift │ │ │ ├── DAppCommand.swift │ │ │ ├── DAppDataHandle.swift │ │ │ ├── DAppDeviceMotionMessageHandler.swift │ │ │ ├── DAppGyroscopeMessageHandler.swift │ │ │ ├── DAppNativeMessageHandler.swift │ │ │ ├── DAppPermissionsMessageHandler.swift │ │ │ ├── DAppQRCodeMessageHandler.swift │ │ │ ├── DAppTakePhotoMessageHandler.swift │ │ │ ├── Method.swift │ │ │ └── ScriptMessageProxy.swift │ │ ├── Native │ │ │ ├── MyDAppViewController.swift │ │ │ ├── NFTDetail.storyboard │ │ │ ├── NFTDetailViewController.swift │ │ │ ├── NFTFooterReusableView.swift │ │ │ ├── NFTHeaderReusableView.swift │ │ │ └── NFTViewController.swift │ │ ├── TableViewCell │ │ │ └── CollectionTableViewCell.swift │ │ └── WebView │ │ │ ├── BrowserViewController.swift │ │ │ ├── ContractController.swift │ │ │ ├── DAppBrowser.storyboard │ │ │ ├── DappViewController.swift │ │ │ ├── MessageSignController.swift │ │ │ ├── SearchAppController.swift │ │ │ └── WKWebViewConfiguration.swift │ ├── Guide │ │ ├── Guide.storyboard │ │ ├── GuideCollectionViewCell.swift │ │ ├── GuideService.swift │ │ ├── GuideViewController.swift │ │ └── ProductAgreementViewController.swift │ ├── Settings │ │ ├── AboutUs.storyboard │ │ ├── AboutUsViewController.swift │ │ ├── CommonWebViewController.swift │ │ ├── CurrencyViewController.swift │ │ ├── Settings.storyboard │ │ ├── SettingsViewController.swift │ │ ├── SwitchNetworkViewController.swift │ │ └── TableViewCell │ │ │ ├── CurrencyTableViewCell.swift │ │ │ ├── SettingAuthenticationTableViewCell.swift │ │ │ ├── SettingCurrencyTableViewCell.swift │ │ │ └── SwitchNetworkTableViewCell.swift │ ├── Transaction │ │ ├── Details │ │ │ ├── TransactionDetails.storyboard │ │ │ ├── TransactionDetailsParamBuilder.swift │ │ │ └── TransactionDetailsViewController.swift │ │ ├── History │ │ │ ├── TransactionHistory.storyboard │ │ │ ├── TransactionHistoryPresenter.swift │ │ │ └── TransactionHistoryViewController.swift │ │ └── Send │ │ │ ├── SendTransaction.storyboard │ │ │ ├── SendTransactionViewController.swift │ │ │ ├── TransactionGasCostViewController.swift │ │ │ ├── TransactionParamBuilder.swift │ │ │ ├── TransactionSwitchTokenViewController.swift │ │ │ └── TransactonSender.swift │ └── Wallet │ │ ├── AddWallet │ │ ├── AddWallet.storyboard │ │ ├── CreateWalletController.swift │ │ ├── CreateWalletGuideViewController.swift │ │ ├── GenerateMnemonicController.swift │ │ └── VerifyMnemonicViewController.swift │ │ ├── Assets │ │ ├── AddAssetController.swift │ │ ├── Assets.storyboard │ │ ├── ManageAssetViewController.swift │ │ └── SwitchChainViewController.swift │ │ ├── CustomView │ │ ├── ButtonTagUpView.swift │ │ └── ButtonTagView.swift │ │ ├── Home │ │ ├── TokenTableViewCell.swift │ │ ├── Wallet.storyboard │ │ ├── WalletPresenter.swift │ │ ├── WalletQRCodeViewController.swift │ │ └── WalletViewController.swift │ │ ├── ImportWallet │ │ ├── ImportWalletController.swift │ │ ├── KeystoreViewController.swift │ │ ├── MnemonicViewController.swift │ │ └── PrivatekeyViewController.swift │ │ ├── SwitchWallet │ │ ├── SelectWalletController.swift │ │ └── SwitchWallet.storyboard │ │ ├── TableViewCell │ │ ├── AssetTableViewCell.swift │ │ ├── ContractAddressTableViewCell.swift │ │ ├── ERC721TableViewCell.swift │ │ ├── SelectChainTableViewCell.swift │ │ ├── TraitsCollectionViewCell.swift │ │ └── WalletTableViewCell.swift │ │ └── WalletDetails │ │ ├── ChangePasswordController.swift │ │ ├── ExportKeystoreController.swift │ │ ├── ExportKeystoreController.xib │ │ ├── WalletDetailController.swift │ │ ├── WalletIconPickerViewController.swift │ │ └── WalletManagement.storyboard ├── Services │ ├── CITA │ │ ├── CITA+AddToken.swift │ │ ├── CITA+Balance.swift │ │ ├── CITA+ERC20.swift │ │ ├── CITA+TransactionDetails.swift │ │ ├── CITALocalTxPool.swift │ │ ├── CITANetwork.swift │ │ └── CITATxSender.swift │ ├── Common │ │ ├── DefaultTokenAndChain.swift │ │ ├── LocalCurrencyService.swift │ │ ├── SendTransactionError.swift │ │ ├── TaskThread.swift │ │ └── TokenPriceLoader.swift │ ├── Ethereum │ │ ├── CustomERC20TokenService.swift │ │ ├── Ethereum+TransactionDetails.swift │ │ ├── EthereumBalanceLoader.swift │ │ ├── EthereumLocalTxPool.swift │ │ ├── EthereumMessageSigner.swift │ │ ├── EthereumNetwork.swift │ │ ├── EthereumTokenProfileLoader.swift │ │ ├── EthereumTxSender.swift │ │ └── NFTService.swift │ └── WalletManager │ │ ├── WalletKeystoreManager.swift │ │ ├── WalletManager+Errors.swift │ │ └── WalletManager.swift ├── Utils │ ├── GasCalculator.swift │ ├── SkipBackupFiles.swift │ ├── UIKit │ │ ├── NoScreenshot.swift │ │ ├── Overlay.storyboard │ │ ├── OverlayPresentable.swift │ │ ├── Toast.swift │ │ └── ToastActivityView.xib │ ├── Validators │ │ ├── MnemonicValidator.swift │ │ ├── PasswordValidator.swift │ │ └── WalletNameValidator.swift │ └── Web3Utils.swift ├── en.lproj │ └── Localizable.strings └── zh-Hans.lproj │ └── Localizable.strings ├── CytonTests ├── CytonTests.swift ├── Extensions │ ├── Foundation │ │ ├── BigUIntExtensionTests.swift │ │ ├── DoubleExtensionTests.swift │ │ └── UIntExtensionTests.swift │ └── UIKit │ │ └── UIStoryboardExtensionTests.swift ├── Info.plist ├── Service │ └── WalletManager │ │ └── WalletManagerTests.swift └── Utils │ ├── GasCalculatorTests.swift │ └── Validators │ ├── MnemonicValidatorTests.swift │ ├── PasswordValidatorTests.swift │ └── WalletNameValidatorTests.swift ├── CytonUITests ├── CytonUITests.swift └── Info.plist ├── LICENSE ├── Podfile ├── Podfile.lock └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cyton.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Cyton.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Cyton.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Cyton.xcodeproj/xcshareddata/xcschemes/Cyton.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton.xcodeproj/xcshareddata/xcschemes/Cyton.xcscheme -------------------------------------------------------------------------------- /Cyton.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Cyton.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Cyton/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/AppDelegate.swift -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/AppIcon.appiconset/1024线024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/AppIcon.appiconset/1024线024.jpg -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/AppIcon.appiconset/120x120-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/AppIcon.appiconset/120x120-1.jpg -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/AppIcon.appiconset/120x120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/AppIcon.appiconset/120x120.jpg -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/AppIcon.appiconset/180线80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/AppIcon.appiconset/180线80.jpg -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/AppIcon.appiconset/40x40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/AppIcon.appiconset/40x40.jpg -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/AppIcon.appiconset/58x58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/AppIcon.appiconset/58x58.jpg -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/AppIcon.appiconset/60x60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/AppIcon.appiconset/60x60.jpg -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/AppIcon.appiconset/80x80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/AppIcon.appiconset/80x80.jpg -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/AppIcon.appiconset/87x87.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/AppIcon.appiconset/87x87.jpg -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Authentication/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Authentication/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Authentication/ethereum_network.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Authentication/ethereum_network.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Authentication/ethereum_network.imageset/ethereum_network@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Authentication/ethereum_network.imageset/ethereum_network@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Authentication/ethereum_network.imageset/ethereum_network@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Authentication/ethereum_network.imageset/ethereum_network@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Authentication/faceId_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Authentication/faceId_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Authentication/faceId_icon.imageset/Group 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Authentication/faceId_icon.imageset/Group 3.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Authentication/faceId_login_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Authentication/faceId_login_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Authentication/faceId_login_icon.imageset/Group 3 Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Authentication/faceId_login_icon.imageset/Group 3 Copy.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Authentication/icon_authentication.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Authentication/icon_authentication.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Authentication/icon_authentication.imageset/Group 13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Authentication/icon_authentication.imageset/Group 13@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Authentication/icon_down.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Authentication/icon_down.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Authentication/icon_down.imageset/Path 46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Authentication/icon_down.imageset/Path 46.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Authentication/password_login_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Authentication/password_login_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Authentication/password_login_icon.imageset/Group 13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Authentication/password_login_icon.imageset/Group 13.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Authentication/touchId_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Authentication/touchId_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Authentication/touchId_icon.imageset/Group 12@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Authentication/touchId_icon.imageset/Group 12@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Authentication/touchId_login_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Authentication/touchId_login_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Authentication/touchId_login_icon.imageset/Group 12 Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Authentication/touchId_login_icon.imageset/Group 12 Copy.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/DApp Browser/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/DApp Browser/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/DApp Browser/dapp_collection.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/DApp Browser/dapp_collection.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/DApp Browser/dapp_collection.imageset/dapp_collection@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/DApp Browser/dapp_collection.imageset/dapp_collection@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/DApp Browser/dapp_collection.imageset/dapp_collection@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/DApp Browser/dapp_collection.imageset/dapp_collection@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/DApp Browser/dapp_default.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/DApp Browser/dapp_default.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/DApp Browser/dapp_default.imageset/dapp_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/DApp Browser/dapp_default.imageset/dapp_default@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/DApp Browser/dapp_default.imageset/dapp_default@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/DApp Browser/dapp_default.imageset/dapp_default@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/DApp Browser/webview_ahead_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/DApp Browser/webview_ahead_off.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/DApp Browser/webview_ahead_off.imageset/webview_ahead_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/DApp Browser/webview_ahead_off.imageset/webview_ahead_off@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/DApp Browser/webview_ahead_off.imageset/webview_ahead_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/DApp Browser/webview_ahead_off.imageset/webview_ahead_off@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/DApp Browser/webview_ahead_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/DApp Browser/webview_ahead_on.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/DApp Browser/webview_ahead_on.imageset/webview_ahead_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/DApp Browser/webview_ahead_on.imageset/webview_ahead_on@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/DApp Browser/webview_ahead_on.imageset/webview_ahead_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/DApp Browser/webview_ahead_on.imageset/webview_ahead_on@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/DApp Browser/webview_back_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/DApp Browser/webview_back_off.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/DApp Browser/webview_back_off.imageset/webview_back_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/DApp Browser/webview_back_off.imageset/webview_back_off@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/DApp Browser/webview_back_off.imageset/webview_back_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/DApp Browser/webview_back_off.imageset/webview_back_off@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/DApp Browser/webview_back_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/DApp Browser/webview_back_on.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/DApp Browser/webview_back_on.imageset/webview_back_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/DApp Browser/webview_back_on.imageset/webview_back_on@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/DApp Browser/webview_back_on.imageset/webview_back_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/DApp Browser/webview_back_on.imageset/webview_back_on@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Error/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Error/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Error/blank_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Error/blank_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Error/blank_icon.imageset/空白页面@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Error/blank_icon.imageset/空白页面@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Error/blank_icon.imageset/空白页面@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Error/blank_icon.imageset/空白页面@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Error/fail_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Error/fail_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Error/fail_icon.imageset/失败页面@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Error/fail_icon.imageset/失败页面@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Error/fail_icon.imageset/失败页面@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Error/fail_icon.imageset/失败页面@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Guide/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Guide/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Guide/icon_check_no.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Guide/icon_check_no.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Guide/icon_check_no.imageset/Group Copy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Guide/icon_check_no.imageset/Group Copy@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Guide/icon_check_no.imageset/Group Copy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Guide/icon_check_no.imageset/Group Copy@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Guide/icon_check_yes.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Guide/icon_check_yes.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Guide/icon_check_yes.imageset/选中.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Guide/icon_check_yes.imageset/选中.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/add_asset.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/add_asset.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/add_asset.imageset/add_asset@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/add_asset.imageset/add_asset@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/add_asset.imageset/add_asset@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/add_asset.imageset/add_asset@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/add_wallet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/add_wallet.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/add_wallet.imageset/add_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/add_wallet.imageset/add_wallet@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/add_wallet.imageset/add_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/add_wallet.imageset/add_wallet@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/close.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/close.imageset/关闭 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/close.imageset/关闭 (1).png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/copy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/copy.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/copy.imageset/复制.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/copy.imageset/复制.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/copy.imageset/复制@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/copy.imageset/复制@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/copy.imageset/复制@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/copy.imageset/复制@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/copy_address.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/copy_address.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/copy_address.imageset/copy_address@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/copy_address.imageset/copy_address@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/copy_address.imageset/copy_address@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/copy_address.imageset/copy_address@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/currency_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/currency_selected.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/currency_selected.imageset/selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/currency_selected.imageset/selected@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/currency_selected.imageset/selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/currency_selected.imageset/selected@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/cyton_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/cyton_logo.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/cyton_logo.imageset/neuron_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/cyton_logo.imageset/neuron_logo@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/cyton_logo.imageset/neuron_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/cyton_logo.imageset/neuron_logo@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/eth_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/eth_logo.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/eth_logo.imageset/eth_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/eth_logo.imageset/eth_logo.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/eth_logo.imageset/eth_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/eth_logo.imageset/eth_logo@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/eth_logo.imageset/eth_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/eth_logo.imageset/eth_logo@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/eth_test.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/eth_test.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/eth_test.imageset/ETH_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/eth_test.imageset/ETH_test.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/eth_test.imageset/ETH_test@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/eth_test.imageset/ETH_test@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/eth_test.imageset/ETH_test@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/eth_test.imageset/ETH_test@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/icon_changepassword_info.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/icon_changepassword_info.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/icon_changepassword_info.imageset/警告.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/icon_changepassword_info.imageset/警告.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/icon_refresh.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/icon_refresh.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/icon_refresh.imageset/刷新.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/icon_refresh.imageset/刷新.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/icon_wallet_add.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/icon_wallet_add.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/icon_wallet_add.imageset/Group 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/icon_wallet_add.imageset/Group 3.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/icon_wallet_qrcode.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/icon_wallet_qrcode.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/icon_wallet_qrcode.imageset/Group 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/icon_wallet_qrcode.imageset/Group 6.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/icon_wallet_switch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/icon_wallet_switch.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/icon_wallet_switch.imageset/切换 (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/icon_wallet_switch.imageset/切换 (2).png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/icon_wallet_trans.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/icon_wallet_trans.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/icon_wallet_trans.imageset/形状.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/icon_wallet_trans.imageset/形状.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/import_wallet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/import_wallet.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/import_wallet.imageset/importWallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/import_wallet.imageset/importWallet@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/import_wallet.imageset/importWallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/import_wallet.imageset/importWallet@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/neuron_nervos.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/neuron_nervos.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/neuron_nervos.imageset/neuron_nervos@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/neuron_nervos.imageset/neuron_nervos@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/neuron_nervos.imageset/neuron_nervos@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/neuron_nervos.imageset/neuron_nervos@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/qr_code.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/qr_code.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/qr_code.imageset/qrCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/qr_code.imageset/qrCode.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/qr_code.imageset/qrCode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/qr_code.imageset/qrCode@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/qr_code.imageset/qrCode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/qr_code.imageset/qrCode@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/search_left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/search_left.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/search_left.imageset/search_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/search_left.imageset/search_left.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/search_left.imageset/search_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/search_left.imageset/search_left@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/search_left.imageset/search_left@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/search_left.imageset/search_left@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/select_chain.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/select_chain.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/select_chain.imageset/select_chain@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/select_chain.imageset/select_chain@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/select_chain.imageset/select_chain@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/select_chain.imageset/select_chain@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/select_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/select_on.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/select_on.imageset/select_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/select_on.imageset/select_on.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/select_on.imageset/select_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/select_on.imageset/select_on@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/select_on.imageset/select_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/select_on.imageset/select_on@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/state_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/state_off.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/state_off.imageset/state_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/state_off.imageset/state_off.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/state_off.imageset/state_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/state_off.imageset/state_off@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/state_off.imageset/state_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/state_off.imageset/state_off@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/state_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/state_on.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/state_on.imageset/state_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/state_on.imageset/state_on.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/state_on.imageset/state_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/state_on.imageset/state_on@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/state_on.imageset/state_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/state_on.imageset/state_on@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/success.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/success.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/success.imageset/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/success.imageset/success@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/success.imageset/success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/success.imageset/success@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/transaction_failed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/transaction_failed.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/transaction_failed.imageset/transaction_failed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/transaction_failed.imageset/transaction_failed@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/transaction_failed.imageset/transaction_failed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/transaction_failed.imageset/transaction_failed@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/transaction_success.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/transaction_success.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/transaction_success.imageset/transaction_success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/transaction_success.imageset/transaction_success@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/transaction_success.imageset/transaction_success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/transaction_success.imageset/transaction_success@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/transferring.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/transferring.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/transferring.imageset/transferring@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/transferring.imageset/transferring@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/transferring.imageset/transferring@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/transferring.imageset/transferring@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/tx_status.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/tx_status.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/tx_status.imageset/Oval 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/tx_status.imageset/Oval 3.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/tx_status.imageset/Oval 3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/tx_status.imageset/Oval 3@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/tx_status.imageset/Oval 3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/tx_status.imageset/Oval 3@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/tx_success.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/tx_success.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/tx_success.imageset/成功.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/tx_success.imageset/成功.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/tx_success.imageset/成功@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/tx_success.imageset/成功@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/tx_success.imageset/成功@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/tx_success.imageset/成功@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/wallet_detail.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/wallet_detail.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/wallet_detail.imageset/wallet_detail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/wallet_detail.imageset/wallet_detail@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/wallet_detail.imageset/wallet_detail@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/wallet_detail.imageset/wallet_detail@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/wallet_switch_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/wallet_switch_arrow.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/wallet_switch_arrow.imageset/wallet_switch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/wallet_switch_arrow.imageset/wallet_switch@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/wallet_switch_arrow.imageset/wallet_switch@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/wallet_switch_arrow.imageset/wallet_switch@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/warn.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/warn.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/warn.imageset/warn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/warn.imageset/warn@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Icons/warn.imageset/warn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Icons/warn.imageset/warn@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Launch Screen/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Launch Screen/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Launch Screen/launch_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Launch Screen/launch_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Launch Screen/launch_icon.imageset/launch_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Launch Screen/launch_icon.imageset/launch_icon@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Launch Screen/launch_icon.imageset/launch_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Launch Screen/launch_icon.imageset/launch_icon@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/add_wallet_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/add_wallet_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/add_wallet_icon.imageset/添加 加号 无边框.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/add_wallet_icon.imageset/添加 加号 无边框.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/icon_share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/icon_share.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/icon_share.imageset/分享-top@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/icon_share.imageset/分享-top@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/icon_share.imageset/分享-top@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/icon_share.imageset/分享-top@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/nav_add_asset.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/nav_add_asset.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/nav_add_asset.imageset/nav_addAsset@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/nav_add_asset.imageset/nav_addAsset@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/nav_add_asset.imageset/nav_addAsset@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/nav_add_asset.imageset/nav_addAsset@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/nav_back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/nav_back.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/nav_back.imageset/back2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/nav_back.imageset/back2.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/nav_close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/nav_close.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/nav_close.imageset/关闭 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/nav_close.imageset/关闭 (1).png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/nav_darkback.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/nav_darkback.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/nav_darkback.imageset/nav_darkback@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/nav_darkback.imageset/nav_darkback@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/nav_darkback.imageset/nav_darkback@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/nav_darkback.imageset/nav_darkback@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/nav_scan.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/nav_scan.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/nav_scan.imageset/扫码.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/nav_scan.imageset/扫码.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/nav_switch_wallet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/nav_switch_wallet.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/nav_switch_wallet.imageset/switchWallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/nav_switch_wallet.imageset/switchWallet@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/nav_switch_wallet.imageset/switchWallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/nav_switch_wallet.imageset/switchWallet@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/pull_down.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/pull_down.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/pull_down.imageset/pull_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/pull_down.imageset/pull_down@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/pull_down.imageset/pull_down@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/pull_down.imageset/pull_down@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/search_dapp.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/search_dapp.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/search_dapp.imageset/search_dapp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/search_dapp.imageset/search_dapp@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/search_dapp.imageset/search_dapp@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/search_dapp.imageset/search_dapp@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/switch_wallet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/switch_wallet.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/switch_wallet.imageset/switch_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/switch_wallet.imageset/switch_wallet@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/switch_wallet.imageset/switch_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/switch_wallet.imageset/switch_wallet@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/switch_wallet_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/switch_wallet_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/switch_wallet_icon.imageset/Shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/switch_wallet_icon.imageset/Shape.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/wallet_qr_code.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/wallet_qr_code.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/wallet_qr_code.imageset/walletQRCode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/wallet_qr_code.imageset/walletQRCode@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/NavigationBar/wallet_qr_code.imageset/walletQRCode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/NavigationBar/wallet_qr_code.imageset/walletQRCode@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/aboutus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/aboutus.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/aboutus.imageset/aboutus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/aboutus.imageset/aboutus@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/aboutus.imageset/aboutus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/aboutus.imageset/aboutus@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/cita.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/cita.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/cita.imageset/cita@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/cita.imageset/cita@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/cita.imageset/cita@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/cita.imageset/cita@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/contactus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/contactus.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/contactus.imageset/contactus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/contactus.imageset/contactus@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/contactus.imageset/contactus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/contactus.imageset/contactus@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/currency.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/currency.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/currency.imageset/currency@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/currency.imageset/currency@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/currency.imageset/currency@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/currency.imageset/currency@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/fingerprint_setup.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/fingerprint_setup.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/fingerprint_setup.imageset/fingerprint_setup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/fingerprint_setup.imageset/fingerprint_setup@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/fingerprint_setup.imageset/fingerprint_setup@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/fingerprint_setup.imageset/fingerprint_setup@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/forums.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/forums.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/forums.imageset/Group 11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/forums.imageset/Group 11@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/forums.imageset/Group 11@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/forums.imageset/Group 11@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/infua.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/infua.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/infua.imageset/infua@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/infua.imageset/infua@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/infua.imageset/infua@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/infua.imageset/infua@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/nervos_network.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/nervos_network.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/nervos_network.imageset/nervos_network@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/nervos_network.imageset/nervos_network@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/nervos_network.imageset/nervos_network@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/nervos_network.imageset/nervos_network@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/opensea.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/opensea.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/opensea.imageset/openSea@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/opensea.imageset/openSea@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/opensea.imageset/openSea@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/opensea.imageset/openSea@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/peckshield.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/peckshield.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/peckshield.imageset/peckshield@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/peckshield.imageset/peckshield@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/peckshield.imageset/peckshield@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/peckshield.imageset/peckshield@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/service_terms.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/service_terms.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/service_terms.imageset/service_terms@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/service_terms.imageset/service_terms@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/service_terms.imageset/service_terms@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/service_terms.imageset/service_terms@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/source_code.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/source_code.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/source_code.imageset/source_code@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/source_code.imageset/source_code@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Settings/source_code.imageset/source_code@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Settings/source_code.imageset/source_code@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/TabBar/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/TabBar/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/TabBar/Main_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/TabBar/Main_off.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/TabBar/Main_off.imageset/Main_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/TabBar/Main_off.imageset/Main_off@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/TabBar/Main_off.imageset/Main_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/TabBar/Main_off.imageset/Main_off@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/TabBar/Main_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/TabBar/Main_on.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/TabBar/Main_on.imageset/Main_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/TabBar/Main_on.imageset/Main_on@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/TabBar/Main_on.imageset/Main_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/TabBar/Main_on.imageset/Main_on@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/TabBar/dapp_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/TabBar/dapp_off.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/TabBar/dapp_off.imageset/dapp_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/TabBar/dapp_off.imageset/dapp_off@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/TabBar/dapp_off.imageset/dapp_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/TabBar/dapp_off.imageset/dapp_off@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/TabBar/dapp_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/TabBar/dapp_on.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/TabBar/dapp_on.imageset/dapp_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/TabBar/dapp_on.imageset/dapp_on@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/TabBar/dapp_on.imageset/dapp_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/TabBar/dapp_on.imageset/dapp_on@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/TabBar/wallet_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/TabBar/wallet_off.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/TabBar/wallet_off.imageset/wallet_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/TabBar/wallet_off.imageset/wallet_off@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/TabBar/wallet_off.imageset/wallet_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/TabBar/wallet_off.imageset/wallet_off@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/TabBar/wallet_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/TabBar/wallet_on.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/TabBar/wallet_on.imageset/wallet_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/TabBar/wallet_on.imageset/wallet_on@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/TabBar/wallet_on.imageset/wallet_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/TabBar/wallet_on.imageset/wallet_on@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Control/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Control/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Control/control_disabled_bg_color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Control/control_disabled_bg_color.colorset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Control/control_disabled_title_color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Control/control_disabled_title_color.colorset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Neutral/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Neutral/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Neutral/dark_bg_color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Neutral/dark_bg_color.colorset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Neutral/headline_color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Neutral/headline_color.colorset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Neutral/info_color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Neutral/info_color.colorset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Neutral/subhead_color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Neutral/subhead_color.colorset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Primary/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Primary/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Primary/branding_color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Primary/branding_color.colorset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Primary/label_bg_color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Primary/label_bg_color.colorset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Primary/label_border_color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Primary/label_border_color.colorset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Primary/tint_color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Primary/tint_color.colorset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Secondary/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Secondary/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Secondary/secondary_color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Secondary/secondary_color.colorset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Secondary/warning_bg_color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Secondary/warning_bg_color.colorset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Secondary/warning_color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Secondary/warning_color.colorset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Weak/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Weak/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Weak/weak_1_color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Weak/weak_1_color.colorset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Weak/weak_2_color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Weak/weak_2_color.colorset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Weak/weak_3_color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Weak/weak_3_color.colorset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Theme Colors/Weak/weak_4_color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Theme Colors/Weak/weak_4_color.colorset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Transaction/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Transaction/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Transaction/Details/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Transaction/Details/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Transaction/Details/icon_tx_details_chain_cita.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Transaction/Details/icon_tx_details_chain_cita.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Transaction/Details/icon_tx_details_chain_cita.imageset/分组 5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Transaction/Details/icon_tx_details_chain_cita.imageset/分组 5@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Transaction/Details/icon_tx_details_chain_cita.imageset/分组 5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Transaction/Details/icon_tx_details_chain_cita.imageset/分组 5@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Transaction/Details/icon_tx_details_chain_eth.imageset/Bitmap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Transaction/Details/icon_tx_details_chain_eth.imageset/Bitmap@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Transaction/Details/icon_tx_details_chain_eth.imageset/Bitmap@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Transaction/Details/icon_tx_details_chain_eth.imageset/Bitmap@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Transaction/Details/icon_tx_details_chain_eth.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Transaction/Details/icon_tx_details_chain_eth.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Transaction/Details/icon_tx_details_copy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Transaction/Details/icon_tx_details_copy.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Transaction/Details/icon_tx_details_copy.imageset/形状@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Transaction/Details/icon_tx_details_copy.imageset/形状@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Transaction/Details/icon_tx_details_copy.imageset/形状@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Transaction/Details/icon_tx_details_copy.imageset/形状@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Transaction/Send/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Transaction/Send/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Transaction/Send/icon_tx_send_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Transaction/Send/icon_tx_send_selected.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Transaction/Send/icon_tx_send_selected.imageset/Path 21@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Transaction/Send/icon_tx_send_selected.imageset/Path 21@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Transaction/Send/icon_tx_send_selected.imageset/Path 21@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Transaction/Send/icon_tx_send_selected.imageset/Path 21@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/icon_wallet_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/icon_wallet_selected.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/icon_wallet_selected.imageset/勾@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/icon_wallet_selected.imageset/勾@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/icon_wallet_selected.imageset/勾@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/icon_wallet_selected.imageset/勾@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_dog.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_dog.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_dog.imageset/狗@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_dog.imageset/狗@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_dog.imageset/狗@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_dog.imageset/狗@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_fish.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_fish.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_fish.imageset/鱼@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_fish.imageset/鱼@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_fish.imageset/鱼@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_fish.imageset/鱼@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_fox.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_fox.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_fox.imageset/狐狸@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_fox.imageset/狐狸@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_fox.imageset/狐狸@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_fox.imageset/狐狸@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_owl.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_owl.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_owl.imageset/猫头鹰@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_owl.imageset/猫头鹰@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_owl.imageset/猫头鹰@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_owl.imageset/猫头鹰@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_parrot.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_parrot.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_parrot.imageset/鹦鹉@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_parrot.imageset/鹦鹉@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_parrot.imageset/鹦鹉@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_parrot.imageset/鹦鹉@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_rat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_rat.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_rat.imageset/老鼠@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_rat.imageset/老鼠@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_rat.imageset/老鼠@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_rat.imageset/老鼠@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_squirrel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_squirrel.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_squirrel.imageset/松鼠@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_squirrel.imageset/松鼠@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_squirrel.imageset/松鼠@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_squirrel.imageset/松鼠@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_tiger.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_tiger.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_tiger.imageset/老虎@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_tiger.imageset/老虎@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_tiger.imageset/老虎@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Icon/wallet_icon_tiger.imageset/老虎@3x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Switch/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Switch/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Switch/icon_add_wallet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Switch/icon_add_wallet.imageset/Contents.json -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Switch/icon_add_wallet.imageset/Group@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Switch/icon_add_wallet.imageset/Group@2x.png -------------------------------------------------------------------------------- /Cyton/Assets.xcassets/Wallet/Switch/icon_add_wallet.imageset/Group@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Assets.xcassets/Wallet/Switch/icon_add_wallet.imageset/Group@3x.png -------------------------------------------------------------------------------- /Cyton/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Cyton/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Cyton/Constants/NibLoadable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Constants/NibLoadable.swift -------------------------------------------------------------------------------- /Cyton/Constants/NotificationName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Constants/NotificationName.swift -------------------------------------------------------------------------------- /Cyton/Constants/ServerAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Constants/ServerAPI.swift -------------------------------------------------------------------------------- /Cyton/Constants/TokenMacro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Constants/TokenMacro.swift -------------------------------------------------------------------------------- /Cyton/Constants/WKWebViewConfigConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Constants/WKWebViewConfigConstants.swift -------------------------------------------------------------------------------- /Cyton/Cyton-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Cyton-Bridging-Header.h -------------------------------------------------------------------------------- /Cyton/Cyton.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Cyton.entitlements -------------------------------------------------------------------------------- /Cyton/Extensions/Foundation/BigUInt+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Extensions/Foundation/BigUInt+Extension.swift -------------------------------------------------------------------------------- /Cyton/Extensions/Foundation/Double+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Extensions/Foundation/Double+Extension.swift -------------------------------------------------------------------------------- /Cyton/Extensions/Foundation/NSDecimalNumber+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Extensions/Foundation/NSDecimalNumber+Extension.swift -------------------------------------------------------------------------------- /Cyton/Extensions/Foundation/String+Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Extensions/Foundation/String+Error.swift -------------------------------------------------------------------------------- /Cyton/Extensions/Foundation/String+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Extensions/Foundation/String+Extension.swift -------------------------------------------------------------------------------- /Cyton/Extensions/Foundation/UInt+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Extensions/Foundation/UInt+Extension.swift -------------------------------------------------------------------------------- /Cyton/Extensions/Foundation/Web3Error+Description.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Extensions/Foundation/Web3Error+Description.swift -------------------------------------------------------------------------------- /Cyton/Extensions/UIKit/UIColor+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Extensions/UIKit/UIColor+Extension.swift -------------------------------------------------------------------------------- /Cyton/Extensions/UIKit/UIControl+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Extensions/UIKit/UIControl+Extension.swift -------------------------------------------------------------------------------- /Cyton/Extensions/UIKit/UIStoryboard+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Extensions/UIKit/UIStoryboard+Extension.swift -------------------------------------------------------------------------------- /Cyton/Extensions/UIKit/UIView+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Extensions/UIKit/UIView+Extension.swift -------------------------------------------------------------------------------- /Cyton/Extensions/UIKit/URLRequest+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Extensions/UIKit/URLRequest+Extension.swift -------------------------------------------------------------------------------- /Cyton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Info.plist -------------------------------------------------------------------------------- /Cyton/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/MainViewController.swift -------------------------------------------------------------------------------- /Cyton/Models/Realm/AppModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Models/Realm/AppModel.swift -------------------------------------------------------------------------------- /Cyton/Models/Realm/ChainModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Models/Realm/ChainModel.swift -------------------------------------------------------------------------------- /Cyton/Models/Realm/DAppModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Models/Realm/DAppModel.swift -------------------------------------------------------------------------------- /Cyton/Models/Realm/RealmConfigurator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Models/Realm/RealmConfigurator.swift -------------------------------------------------------------------------------- /Cyton/Models/Realm/TokenModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Models/Realm/TokenModel.swift -------------------------------------------------------------------------------- /Cyton/Models/Realm/WalletModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Models/Realm/WalletModel.swift -------------------------------------------------------------------------------- /Cyton/Models/Token.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Models/Token.swift -------------------------------------------------------------------------------- /Cyton/Models/TransactionDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Models/TransactionDetails.swift -------------------------------------------------------------------------------- /Cyton/Resource/currency.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Resource/currency.plist -------------------------------------------------------------------------------- /Cyton/Resource/cyton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Resource/cyton.js -------------------------------------------------------------------------------- /Cyton/Resource/dappOpration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Resource/dappOpration.js -------------------------------------------------------------------------------- /Cyton/Resource/en.lproj/product_agreement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Resource/en.lproj/product_agreement.txt -------------------------------------------------------------------------------- /Cyton/Resource/guide_image/en.lproj/guide_page_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Resource/guide_image/en.lproj/guide_page_1@2x.png -------------------------------------------------------------------------------- /Cyton/Resource/guide_image/en.lproj/guide_page_1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Resource/guide_image/en.lproj/guide_page_1@3x.png -------------------------------------------------------------------------------- /Cyton/Resource/guide_image/en.lproj/guide_page_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Resource/guide_image/en.lproj/guide_page_2@2x.png -------------------------------------------------------------------------------- /Cyton/Resource/guide_image/en.lproj/guide_page_2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Resource/guide_image/en.lproj/guide_page_2@3x.png -------------------------------------------------------------------------------- /Cyton/Resource/guide_image/en.lproj/guide_page_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Resource/guide_image/en.lproj/guide_page_3@2x.png -------------------------------------------------------------------------------- /Cyton/Resource/guide_image/en.lproj/guide_page_3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Resource/guide_image/en.lproj/guide_page_3@3x.png -------------------------------------------------------------------------------- /Cyton/Resource/guide_image/zh-Hans.lproj/guide_page_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Resource/guide_image/zh-Hans.lproj/guide_page_1@2x.png -------------------------------------------------------------------------------- /Cyton/Resource/guide_image/zh-Hans.lproj/guide_page_1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Resource/guide_image/zh-Hans.lproj/guide_page_1@3x.png -------------------------------------------------------------------------------- /Cyton/Resource/guide_image/zh-Hans.lproj/guide_page_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Resource/guide_image/zh-Hans.lproj/guide_page_2@2x.png -------------------------------------------------------------------------------- /Cyton/Resource/guide_image/zh-Hans.lproj/guide_page_2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Resource/guide_image/zh-Hans.lproj/guide_page_2@3x.png -------------------------------------------------------------------------------- /Cyton/Resource/guide_image/zh-Hans.lproj/guide_page_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Resource/guide_image/zh-Hans.lproj/guide_page_3@2x.png -------------------------------------------------------------------------------- /Cyton/Resource/guide_image/zh-Hans.lproj/guide_page_3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Resource/guide_image/zh-Hans.lproj/guide_page_3@3x.png -------------------------------------------------------------------------------- /Cyton/Resource/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Resource/init.js -------------------------------------------------------------------------------- /Cyton/Resource/zh-Hans.lproj/product_agreement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Resource/zh-Hans.lproj/product_agreement.txt -------------------------------------------------------------------------------- /Cyton/Sections/Authentication/AuthDeviceViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Authentication/AuthDeviceViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Authentication/AuthPasswordViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Authentication/AuthPasswordViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Authentication/AuthSelectWalletViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Authentication/AuthSelectWalletViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Authentication/Authentication.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Authentication/Authentication.storyboard -------------------------------------------------------------------------------- /Cyton/Sections/Authentication/AuthenticationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Authentication/AuthenticationService.swift -------------------------------------------------------------------------------- /Cyton/Sections/Authentication/AuthenticationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Authentication/AuthenticationViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Authentication/OpenAuthViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Authentication/OpenAuthViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Common/BaseNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Common/BaseNavigationController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Common/DesignableButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Common/DesignableButton.swift -------------------------------------------------------------------------------- /Cyton/Sections/Common/DesignableGradientView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Common/DesignableGradientView.swift -------------------------------------------------------------------------------- /Cyton/Sections/Common/PageItems/ModifyWalletNamePageItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Common/PageItems/ModifyWalletNamePageItem.swift -------------------------------------------------------------------------------- /Cyton/Sections/Common/PageItems/PageItemAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Common/PageItems/PageItemAppearance.swift -------------------------------------------------------------------------------- /Cyton/Sections/Common/PageItems/PasswordPageItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Common/PageItems/PasswordPageItem.swift -------------------------------------------------------------------------------- /Cyton/Sections/Common/PageItems/SendTransactionSummaryView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Common/PageItems/SendTransactionSummaryView.xib -------------------------------------------------------------------------------- /Cyton/Sections/Common/PageItems/ShowTokenPageItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Common/PageItems/ShowTokenPageItem.swift -------------------------------------------------------------------------------- /Cyton/Sections/Common/PageItems/SignMessagePageItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Common/PageItems/SignMessagePageItem.swift -------------------------------------------------------------------------------- /Cyton/Sections/Common/PageItems/SuccessPageItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Common/PageItems/SuccessPageItem.swift -------------------------------------------------------------------------------- /Cyton/Sections/Common/PageItems/TokenMessageView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Common/PageItems/TokenMessageView.xib -------------------------------------------------------------------------------- /Cyton/Sections/Common/PageItems/TxSummaryPageItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Common/PageItems/TxSummaryPageItem.swift -------------------------------------------------------------------------------- /Cyton/Sections/Common/QRCodeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Common/QRCodeViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Common/TabbedButtonsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Common/TabbedButtonsView.swift -------------------------------------------------------------------------------- /Cyton/Sections/Common/TabbedButtonsView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Common/TabbedButtonsView.xib -------------------------------------------------------------------------------- /Cyton/Sections/DApp/Handler/DAppAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/Handler/DAppAction.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/Handler/DAppCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/Handler/DAppCommand.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/Handler/DAppDataHandle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/Handler/DAppDataHandle.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/Handler/DAppDeviceMotionMessageHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/Handler/DAppDeviceMotionMessageHandler.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/Handler/DAppGyroscopeMessageHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/Handler/DAppGyroscopeMessageHandler.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/Handler/DAppNativeMessageHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/Handler/DAppNativeMessageHandler.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/Handler/DAppPermissionsMessageHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/Handler/DAppPermissionsMessageHandler.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/Handler/DAppQRCodeMessageHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/Handler/DAppQRCodeMessageHandler.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/Handler/DAppTakePhotoMessageHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/Handler/DAppTakePhotoMessageHandler.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/Handler/Method.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/Handler/Method.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/Handler/ScriptMessageProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/Handler/ScriptMessageProxy.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/Native/MyDAppViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/Native/MyDAppViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/Native/NFTDetail.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/Native/NFTDetail.storyboard -------------------------------------------------------------------------------- /Cyton/Sections/DApp/Native/NFTDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/Native/NFTDetailViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/Native/NFTFooterReusableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/Native/NFTFooterReusableView.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/Native/NFTHeaderReusableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/Native/NFTHeaderReusableView.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/Native/NFTViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/Native/NFTViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/TableViewCell/CollectionTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/TableViewCell/CollectionTableViewCell.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/WebView/BrowserViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/WebView/BrowserViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/WebView/ContractController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/WebView/ContractController.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/WebView/DAppBrowser.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/WebView/DAppBrowser.storyboard -------------------------------------------------------------------------------- /Cyton/Sections/DApp/WebView/DappViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/WebView/DappViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/WebView/MessageSignController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/WebView/MessageSignController.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/WebView/SearchAppController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/WebView/SearchAppController.swift -------------------------------------------------------------------------------- /Cyton/Sections/DApp/WebView/WKWebViewConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/DApp/WebView/WKWebViewConfiguration.swift -------------------------------------------------------------------------------- /Cyton/Sections/Guide/Guide.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Guide/Guide.storyboard -------------------------------------------------------------------------------- /Cyton/Sections/Guide/GuideCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Guide/GuideCollectionViewCell.swift -------------------------------------------------------------------------------- /Cyton/Sections/Guide/GuideService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Guide/GuideService.swift -------------------------------------------------------------------------------- /Cyton/Sections/Guide/GuideViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Guide/GuideViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Guide/ProductAgreementViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Guide/ProductAgreementViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Settings/AboutUs.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Settings/AboutUs.storyboard -------------------------------------------------------------------------------- /Cyton/Sections/Settings/AboutUsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Settings/AboutUsViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Settings/CommonWebViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Settings/CommonWebViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Settings/CurrencyViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Settings/CurrencyViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Settings/Settings.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Settings/Settings.storyboard -------------------------------------------------------------------------------- /Cyton/Sections/Settings/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Settings/SettingsViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Settings/SwitchNetworkViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Settings/SwitchNetworkViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Settings/TableViewCell/CurrencyTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Settings/TableViewCell/CurrencyTableViewCell.swift -------------------------------------------------------------------------------- /Cyton/Sections/Settings/TableViewCell/SettingAuthenticationTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Settings/TableViewCell/SettingAuthenticationTableViewCell.swift -------------------------------------------------------------------------------- /Cyton/Sections/Settings/TableViewCell/SettingCurrencyTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Settings/TableViewCell/SettingCurrencyTableViewCell.swift -------------------------------------------------------------------------------- /Cyton/Sections/Settings/TableViewCell/SwitchNetworkTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Settings/TableViewCell/SwitchNetworkTableViewCell.swift -------------------------------------------------------------------------------- /Cyton/Sections/Transaction/Details/TransactionDetails.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Transaction/Details/TransactionDetails.storyboard -------------------------------------------------------------------------------- /Cyton/Sections/Transaction/Details/TransactionDetailsParamBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Transaction/Details/TransactionDetailsParamBuilder.swift -------------------------------------------------------------------------------- /Cyton/Sections/Transaction/Details/TransactionDetailsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Transaction/Details/TransactionDetailsViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Transaction/History/TransactionHistory.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Transaction/History/TransactionHistory.storyboard -------------------------------------------------------------------------------- /Cyton/Sections/Transaction/History/TransactionHistoryPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Transaction/History/TransactionHistoryPresenter.swift -------------------------------------------------------------------------------- /Cyton/Sections/Transaction/History/TransactionHistoryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Transaction/History/TransactionHistoryViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Transaction/Send/SendTransaction.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Transaction/Send/SendTransaction.storyboard -------------------------------------------------------------------------------- /Cyton/Sections/Transaction/Send/SendTransactionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Transaction/Send/SendTransactionViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Transaction/Send/TransactionGasCostViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Transaction/Send/TransactionGasCostViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Transaction/Send/TransactionParamBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Transaction/Send/TransactionParamBuilder.swift -------------------------------------------------------------------------------- /Cyton/Sections/Transaction/Send/TransactionSwitchTokenViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Transaction/Send/TransactionSwitchTokenViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Transaction/Send/TransactonSender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Transaction/Send/TransactonSender.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/AddWallet/AddWallet.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/AddWallet/AddWallet.storyboard -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/AddWallet/CreateWalletController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/AddWallet/CreateWalletController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/AddWallet/CreateWalletGuideViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/AddWallet/CreateWalletGuideViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/AddWallet/GenerateMnemonicController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/AddWallet/GenerateMnemonicController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/AddWallet/VerifyMnemonicViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/AddWallet/VerifyMnemonicViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/Assets/AddAssetController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/Assets/AddAssetController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/Assets/Assets.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/Assets/Assets.storyboard -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/Assets/ManageAssetViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/Assets/ManageAssetViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/Assets/SwitchChainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/Assets/SwitchChainViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/CustomView/ButtonTagUpView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/CustomView/ButtonTagUpView.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/CustomView/ButtonTagView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/CustomView/ButtonTagView.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/Home/TokenTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/Home/TokenTableViewCell.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/Home/Wallet.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/Home/Wallet.storyboard -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/Home/WalletPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/Home/WalletPresenter.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/Home/WalletQRCodeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/Home/WalletQRCodeViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/Home/WalletViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/Home/WalletViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/ImportWallet/ImportWalletController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/ImportWallet/ImportWalletController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/ImportWallet/KeystoreViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/ImportWallet/KeystoreViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/ImportWallet/MnemonicViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/ImportWallet/MnemonicViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/ImportWallet/PrivatekeyViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/ImportWallet/PrivatekeyViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/SwitchWallet/SelectWalletController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/SwitchWallet/SelectWalletController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/SwitchWallet/SwitchWallet.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/SwitchWallet/SwitchWallet.storyboard -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/TableViewCell/AssetTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/TableViewCell/AssetTableViewCell.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/TableViewCell/ContractAddressTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/TableViewCell/ContractAddressTableViewCell.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/TableViewCell/ERC721TableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/TableViewCell/ERC721TableViewCell.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/TableViewCell/SelectChainTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/TableViewCell/SelectChainTableViewCell.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/TableViewCell/TraitsCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/TableViewCell/TraitsCollectionViewCell.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/TableViewCell/WalletTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/TableViewCell/WalletTableViewCell.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/WalletDetails/ChangePasswordController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/WalletDetails/ChangePasswordController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/WalletDetails/ExportKeystoreController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/WalletDetails/ExportKeystoreController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/WalletDetails/ExportKeystoreController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/WalletDetails/ExportKeystoreController.xib -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/WalletDetails/WalletDetailController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/WalletDetails/WalletDetailController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/WalletDetails/WalletIconPickerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/WalletDetails/WalletIconPickerViewController.swift -------------------------------------------------------------------------------- /Cyton/Sections/Wallet/WalletDetails/WalletManagement.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Sections/Wallet/WalletDetails/WalletManagement.storyboard -------------------------------------------------------------------------------- /Cyton/Services/CITA/CITA+AddToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/CITA/CITA+AddToken.swift -------------------------------------------------------------------------------- /Cyton/Services/CITA/CITA+Balance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/CITA/CITA+Balance.swift -------------------------------------------------------------------------------- /Cyton/Services/CITA/CITA+ERC20.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/CITA/CITA+ERC20.swift -------------------------------------------------------------------------------- /Cyton/Services/CITA/CITA+TransactionDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/CITA/CITA+TransactionDetails.swift -------------------------------------------------------------------------------- /Cyton/Services/CITA/CITALocalTxPool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/CITA/CITALocalTxPool.swift -------------------------------------------------------------------------------- /Cyton/Services/CITA/CITANetwork.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/CITA/CITANetwork.swift -------------------------------------------------------------------------------- /Cyton/Services/CITA/CITATxSender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/CITA/CITATxSender.swift -------------------------------------------------------------------------------- /Cyton/Services/Common/DefaultTokenAndChain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/Common/DefaultTokenAndChain.swift -------------------------------------------------------------------------------- /Cyton/Services/Common/LocalCurrencyService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/Common/LocalCurrencyService.swift -------------------------------------------------------------------------------- /Cyton/Services/Common/SendTransactionError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/Common/SendTransactionError.swift -------------------------------------------------------------------------------- /Cyton/Services/Common/TaskThread.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/Common/TaskThread.swift -------------------------------------------------------------------------------- /Cyton/Services/Common/TokenPriceLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/Common/TokenPriceLoader.swift -------------------------------------------------------------------------------- /Cyton/Services/Ethereum/CustomERC20TokenService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/Ethereum/CustomERC20TokenService.swift -------------------------------------------------------------------------------- /Cyton/Services/Ethereum/Ethereum+TransactionDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/Ethereum/Ethereum+TransactionDetails.swift -------------------------------------------------------------------------------- /Cyton/Services/Ethereum/EthereumBalanceLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/Ethereum/EthereumBalanceLoader.swift -------------------------------------------------------------------------------- /Cyton/Services/Ethereum/EthereumLocalTxPool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/Ethereum/EthereumLocalTxPool.swift -------------------------------------------------------------------------------- /Cyton/Services/Ethereum/EthereumMessageSigner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/Ethereum/EthereumMessageSigner.swift -------------------------------------------------------------------------------- /Cyton/Services/Ethereum/EthereumNetwork.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/Ethereum/EthereumNetwork.swift -------------------------------------------------------------------------------- /Cyton/Services/Ethereum/EthereumTokenProfileLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/Ethereum/EthereumTokenProfileLoader.swift -------------------------------------------------------------------------------- /Cyton/Services/Ethereum/EthereumTxSender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/Ethereum/EthereumTxSender.swift -------------------------------------------------------------------------------- /Cyton/Services/Ethereum/NFTService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/Ethereum/NFTService.swift -------------------------------------------------------------------------------- /Cyton/Services/WalletManager/WalletKeystoreManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/WalletManager/WalletKeystoreManager.swift -------------------------------------------------------------------------------- /Cyton/Services/WalletManager/WalletManager+Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/WalletManager/WalletManager+Errors.swift -------------------------------------------------------------------------------- /Cyton/Services/WalletManager/WalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Services/WalletManager/WalletManager.swift -------------------------------------------------------------------------------- /Cyton/Utils/GasCalculator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Utils/GasCalculator.swift -------------------------------------------------------------------------------- /Cyton/Utils/SkipBackupFiles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Utils/SkipBackupFiles.swift -------------------------------------------------------------------------------- /Cyton/Utils/UIKit/NoScreenshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Utils/UIKit/NoScreenshot.swift -------------------------------------------------------------------------------- /Cyton/Utils/UIKit/Overlay.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Utils/UIKit/Overlay.storyboard -------------------------------------------------------------------------------- /Cyton/Utils/UIKit/OverlayPresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Utils/UIKit/OverlayPresentable.swift -------------------------------------------------------------------------------- /Cyton/Utils/UIKit/Toast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Utils/UIKit/Toast.swift -------------------------------------------------------------------------------- /Cyton/Utils/UIKit/ToastActivityView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Utils/UIKit/ToastActivityView.xib -------------------------------------------------------------------------------- /Cyton/Utils/Validators/MnemonicValidator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Utils/Validators/MnemonicValidator.swift -------------------------------------------------------------------------------- /Cyton/Utils/Validators/PasswordValidator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Utils/Validators/PasswordValidator.swift -------------------------------------------------------------------------------- /Cyton/Utils/Validators/WalletNameValidator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Utils/Validators/WalletNameValidator.swift -------------------------------------------------------------------------------- /Cyton/Utils/Web3Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/Utils/Web3Utils.swift -------------------------------------------------------------------------------- /Cyton/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Cyton/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Cyton/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /CytonTests/CytonTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/CytonTests/CytonTests.swift -------------------------------------------------------------------------------- /CytonTests/Extensions/Foundation/BigUIntExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/CytonTests/Extensions/Foundation/BigUIntExtensionTests.swift -------------------------------------------------------------------------------- /CytonTests/Extensions/Foundation/DoubleExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/CytonTests/Extensions/Foundation/DoubleExtensionTests.swift -------------------------------------------------------------------------------- /CytonTests/Extensions/Foundation/UIntExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/CytonTests/Extensions/Foundation/UIntExtensionTests.swift -------------------------------------------------------------------------------- /CytonTests/Extensions/UIKit/UIStoryboardExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/CytonTests/Extensions/UIKit/UIStoryboardExtensionTests.swift -------------------------------------------------------------------------------- /CytonTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/CytonTests/Info.plist -------------------------------------------------------------------------------- /CytonTests/Service/WalletManager/WalletManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/CytonTests/Service/WalletManager/WalletManagerTests.swift -------------------------------------------------------------------------------- /CytonTests/Utils/GasCalculatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/CytonTests/Utils/GasCalculatorTests.swift -------------------------------------------------------------------------------- /CytonTests/Utils/Validators/MnemonicValidatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/CytonTests/Utils/Validators/MnemonicValidatorTests.swift -------------------------------------------------------------------------------- /CytonTests/Utils/Validators/PasswordValidatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/CytonTests/Utils/Validators/PasswordValidatorTests.swift -------------------------------------------------------------------------------- /CytonTests/Utils/Validators/WalletNameValidatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/CytonTests/Utils/Validators/WalletNameValidatorTests.swift -------------------------------------------------------------------------------- /CytonUITests/CytonUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/CytonUITests/CytonUITests.swift -------------------------------------------------------------------------------- /CytonUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/CytonUITests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citahub/cyton-ios/HEAD/README.md --------------------------------------------------------------------------------