├── BitcoinKit ├── README.md ├── .gitignore └── Sources │ └── BitcoinKit │ └── LinuxSupport.swift ├── .gitattributes ├── Adamant.sublime-project ├── Adamant └── Assets │ ├── antic.mp3 │ ├── cheers.mp3 │ ├── chord.mp3 │ ├── note.mp3 │ ├── portal.mp3 │ ├── rattle.mp3 │ ├── slide.mp3 │ ├── default.mp3 │ ├── droplet.mp3 │ ├── handoff.mp3 │ ├── passage.mp3 │ ├── rebound.mp3 │ ├── welcome.mp3 │ ├── milestone.mp3 │ ├── notification.mp3 │ ├── short-success.mp3 │ ├── Assets.xcassets │ ├── Contents.json │ ├── AppIcon.appiconset │ │ ├── iOS_dark.png │ │ ├── iOS_tint.png │ │ └── iOS_white.png │ ├── AppIcon_Debug.appiconset │ │ ├── Icon_debug.png │ │ ├── Icon_debug-20.png │ │ ├── Icon_debug-29.png │ │ ├── Icon_debug-40.png │ │ ├── Icon_debug-76.png │ │ ├── Icon_debug-20@2x.png │ │ ├── Icon_debug-20@3x.png │ │ ├── Icon_debug-29@2x.png │ │ ├── Icon_debug-29@3x.png │ │ ├── Icon_debug-40@2x.png │ │ ├── Icon_debug-40@3x.png │ │ ├── Icon_debug-60@2x.png │ │ ├── Icon_debug-60@3x.png │ │ ├── Icon_debug-76@2x.png │ │ ├── Icon_debug-20@2x-1.png │ │ ├── Icon_debug-29@2x-1.png │ │ ├── Icon_debug-40@2x-1.png │ │ └── Icon_debug-83.5@2x.png │ └── Adamant-logo.imageset │ │ └── adamant-logo-1024.png │ ├── relax-message-tone.mp3 │ ├── so-proud-notification.mp3 │ └── Fonts │ ├── Exo+2_100_normal.ttf │ ├── Exo+2_300_normal.ttf │ ├── Exo+2_400_italic.ttf │ ├── Exo+2_400_normal.ttf │ ├── Exo+2_500_normal.ttf │ ├── Exo+2_700_normal.ttf │ ├── Roboto_300_normal.ttf │ ├── Roboto_400_italic.ttf │ ├── Roboto_400_normal.ttf │ ├── Roboto_500_normal.ttf │ └── Roboto_700_normal.ttf ├── AdamantTests ├── Stubs │ └── RequestStubs │ │ ├── dash_send_transaction_unit_response.json │ │ └── dash_send_transation_response.json └── DisabledTests │ └── Parsing │ └── Chat.json ├── scripts └── AdamantCLI │ └── Makefile ├── CommonKit ├── Sources │ └── CommonKit │ │ ├── Assets │ │ └── Shared.xcassets │ │ │ ├── Contents.json │ │ │ ├── Icons │ │ │ ├── Contents.json │ │ │ ├── cross.imageset │ │ │ │ ├── cross.png │ │ │ │ ├── cross@2x.png │ │ │ │ └── cross@3x.png │ │ │ ├── error.imageset │ │ │ │ ├── error.png │ │ │ │ ├── error@2x.png │ │ │ │ └── error@3x.png │ │ │ ├── chats_tab.imageset │ │ │ │ ├── tab_chats.png │ │ │ │ ├── tab_chats@2x.png │ │ │ │ └── tab_chats@3x.png │ │ │ ├── eth_token.imageset │ │ │ │ ├── eth_token.png │ │ │ │ ├── eth_token@2x.png │ │ │ │ └── eth_token@3x.png │ │ │ ├── account-tab.imageset │ │ │ │ ├── account-tab.png │ │ │ │ ├── account-tab@2x.png │ │ │ │ └── account-tab@3x.png │ │ │ └── adamant_token.imageset │ │ │ │ ├── adamant_token.png │ │ │ │ ├── adamant_token@2x.png │ │ │ │ └── adamant_token@3x.png │ │ │ ├── Row │ │ │ ├── Contents.json │ │ │ ├── row_QR.imageset │ │ │ │ ├── row_QR.png │ │ │ │ ├── row_QR@2x.png │ │ │ │ └── row_QR@3x.png │ │ │ ├── row_rate.imageset │ │ │ │ ├── rate.png │ │ │ │ ├── rate@2x.png │ │ │ │ └── rate@3x.png │ │ │ ├── row_blog.imageset │ │ │ │ ├── row_blog.png │ │ │ │ ├── row_blog@2x.png │ │ │ │ └── row_blog@3x.png │ │ │ ├── row_chat.imageset │ │ │ │ ├── row_chat.png │ │ │ │ ├── row_chat@2x.png │ │ │ │ └── row_chat@3x.png │ │ │ ├── row_donate.imageset │ │ │ │ ├── donate.png │ │ │ │ ├── donate@2x.png │ │ │ │ └── donate@3x.png │ │ │ ├── row_fameex.imageset │ │ │ │ ├── fameex.png │ │ │ │ ├── fameex@2x.png │ │ │ │ └── fameex@3x.png │ │ │ ├── row_logo.imageset │ │ │ │ ├── row_logo.png │ │ │ │ ├── row_logo@2x.png │ │ │ │ └── row_logo@3x.png │ │ │ ├── row_nonkyc.imageset │ │ │ │ ├── nonkyc.png │ │ │ │ ├── nonkyc@2x.png │ │ │ │ └── nonkyc@3x.png │ │ │ ├── row_xeggex.imageset │ │ │ │ ├── xeggex.png │ │ │ │ ├── xeggex@2x.png │ │ │ │ └── xeggex@3x.png │ │ │ ├── row_about.imageset │ │ │ │ ├── row_about.png │ │ │ │ ├── row_about@2x.png │ │ │ │ └── row_about@3x.png │ │ │ ├── row_nodes.imageset │ │ │ │ ├── row_nodes.png │ │ │ │ ├── row_nodes@2x.png │ │ │ │ └── row_nodes@3x.png │ │ │ ├── row_preview.imageset │ │ │ │ ├── preview.png │ │ │ │ ├── preview@2x.png │ │ │ │ └── preview@3x.png │ │ │ ├── row_stake.imageset │ │ │ │ ├── Stake@3x.png │ │ │ │ ├── Stake@3x-2.png │ │ │ │ └── Stake@3x-3.png │ │ │ ├── row_twitter.imageset │ │ │ │ ├── twitter.png │ │ │ │ ├── twitter@2x.png │ │ │ │ └── twitter@3x.png │ │ │ ├── azbit_logo.imageset │ │ │ │ ├── azbit-logo.png │ │ │ │ ├── azbit-logo@2x.png │ │ │ │ └── azbit-logo@3x.png │ │ │ ├── exch_anon.imageset │ │ │ │ ├── exch_anon@3x.png │ │ │ │ ├── exch_anon@3x-2.png │ │ │ │ └── exch_anon@3x-3.png │ │ │ ├── row_delegate.imageset │ │ │ │ ├── delegate.png │ │ │ │ ├── delegate@2x.png │ │ │ │ └── delegate@3x.png │ │ │ ├── row_faceid.imageset │ │ │ │ ├── face-id@3x.png │ │ │ │ ├── face-id@3x-2.png │ │ │ │ └── face-id@3x-3.png │ │ │ ├── row_github.imageset │ │ │ │ ├── row_github.png │ │ │ │ ├── row_github@2x.png │ │ │ │ └── row_github@3x.png │ │ │ ├── row_logout.imageset │ │ │ │ ├── row_logout.png │ │ │ │ ├── row_logout@2x.png │ │ │ │ └── row_logout@3x.png │ │ │ ├── row_themes.imageset │ │ │ │ ├── row_themes.png │ │ │ │ ├── row_themes@2x.png │ │ │ │ └── row_themes@3x.png │ │ │ ├── row_balance.imageset │ │ │ │ ├── row_balance.png │ │ │ │ ├── row_balance@2x.png │ │ │ │ └── row_balance@3x.png │ │ │ ├── row_coinstore.imageset │ │ │ │ ├── coinstore.png │ │ │ │ ├── coinstore@2x.png │ │ │ │ └── coinstore@3x.png │ │ │ ├── row_contribute_node.imageset │ │ │ │ ├── node.png │ │ │ │ ├── node@2x.png │ │ │ │ └── node@3x.png │ │ │ ├── row_language.imageset │ │ │ │ ├── lang_switch.png │ │ │ │ ├── lang_switch@2x.png │ │ │ │ └── lang_switch@3x.png │ │ │ ├── row_stakecube.imageset │ │ │ │ ├── stakecube.png │ │ │ │ ├── stakecube@2x.png │ │ │ │ └── stakecube@3x.png │ │ │ ├── row_storage.imageset │ │ │ │ ├── storage_icon.png │ │ │ │ ├── storage_icon@2x.png │ │ │ │ └── storage_icon@3x.png │ │ │ ├── row_touchid.imageset │ │ │ │ ├── row_touchid.png │ │ │ │ ├── row_touchid@2x.png │ │ │ │ └── row_touchid@3x.png │ │ │ ├── row_vibration.imageset │ │ │ │ ├── vibration.png │ │ │ │ ├── vibration@2x.png │ │ │ │ └── vibration@3x.png │ │ │ ├── row_website.imageset │ │ │ │ ├── row_website.png │ │ │ │ ├── row_website@2x.png │ │ │ │ └── row_website@3x.png │ │ │ ├── bitz_row_logo.imageset │ │ │ │ ├── bitz_row_logo.png │ │ │ │ ├── bitz_row_logo@2x.png │ │ │ │ └── bitz_row_logo@3x.png │ │ │ ├── idcm_row_logo.imageset │ │ │ │ ├── idcm_row_logo.png │ │ │ │ ├── idcm_row_logo@2x.png │ │ │ │ └── idcm_row_logo@3x.png │ │ │ ├── row_buy-coins.imageset │ │ │ │ ├── row_buy-coins.png │ │ │ │ ├── row_buy-coins@2x.png │ │ │ │ └── row_buy-coins@3x.png │ │ │ ├── row_coingecko.imageset │ │ │ │ ├── coingecko@3x.png │ │ │ │ ├── coingecko@3x-2.png │ │ │ │ └── coingecko@3x-3.png │ │ │ ├── row_contribute.imageset │ │ │ │ ├── contribute.png │ │ │ │ ├── contribute@2x.png │ │ │ │ └── contribute@3x.png │ │ │ ├── row_crashlytics.imageset │ │ │ │ ├── crashlytics.png │ │ │ │ ├── crashlytics@2x.png │ │ │ │ └── crashlytics@3x.png │ │ │ ├── row_currency.imageset │ │ │ │ ├── row_currency.png │ │ │ │ ├── row_currency@2x.png │ │ │ │ └── row_currency@3x.png │ │ │ ├── row_explorer.imageset │ │ │ │ ├── row_explorer.png │ │ │ │ ├── row_explorer@2x.png │ │ │ │ └── row_explorer@3x.png │ │ │ ├── row_security.imageset │ │ │ │ ├── row_security.png │ │ │ │ ├── row_security@2x.png │ │ │ │ └── row_security@3x.png │ │ │ ├── privateKey_row.imageset │ │ │ │ ├── privateKey_row.png │ │ │ │ ├── privateKey_row@2x.png │ │ │ │ └── privateKey_row@3x.png │ │ │ ├── row_coinmarket.imageset │ │ │ │ ├── coinmarket@3x.png │ │ │ │ ├── coinmarket@3x-2.png │ │ │ │ └── coinmarket@3x-3.png │ │ │ ├── row_contribute_to_code.imageset │ │ │ │ ├── to_code.png │ │ │ │ ├── to_code@2x.png │ │ │ │ └── to_code@3x.png │ │ │ ├── row_email.imageset │ │ │ │ ├── row_email 18-58-57-57.png │ │ │ │ ├── row_email@2x 18-58-55-322.png │ │ │ │ └── row_email@3x 18-58-53-518.png │ │ │ ├── row_free-tokens.imageset │ │ │ │ ├── row_free-tokens.png │ │ │ │ ├── row_free-tokens@2x.png │ │ │ │ └── row_free-tokens@3x.png │ │ │ ├── row_whitepapper.imageset │ │ │ │ ├── row_whitepapper.png │ │ │ │ ├── row_whitepapper@2x.png │ │ │ │ └── row_whitepapper@3x.png │ │ │ ├── row_chat_adamant.imageset │ │ │ │ ├── row_chat_adamant.png │ │ │ │ ├── row_chat_adamant@2x.png │ │ │ │ └── row_chat_adamant@3x.png │ │ │ ├── row_Notifications.imageset │ │ │ │ ├── row_Notifications.png │ │ │ │ ├── row_Notifications@2x.png │ │ │ │ └── row_Notifications@3x.png │ │ │ └── row_vote-delegates.imageset │ │ │ │ └── row_vote-delegates.png │ │ │ ├── Stripe │ │ │ ├── Contents.json │ │ │ ├── Stripe_FaceID.imageset │ │ │ │ ├── Stripe_FaceID.png │ │ │ │ ├── Stripe_FaceID@2x.png │ │ │ │ └── Stripe_FaceID@3x.png │ │ │ ├── Stripe_Pinpad.imageset │ │ │ │ ├── stripe_pinpad.png │ │ │ │ ├── stripe_pinpad@2x.png │ │ │ │ └── stripe_pinpad@3x.png │ │ │ ├── Stripe_TouchID.imageset │ │ │ │ ├── Stripe_TouchID.png │ │ │ │ ├── Stripe_TouchID@2x.png │ │ │ │ └── Stripe_TouchID@3x.png │ │ │ ├── Stripe_QRCamera.imageset │ │ │ │ ├── stripe_qr-camera.png │ │ │ │ ├── stripe_qr-camera@2x.png │ │ │ │ └── stripe_qr-camera@3x.png │ │ │ └── Stripe_QRLibrary.imageset │ │ │ │ └── stripe_qr-library.png │ │ │ ├── files │ │ │ ├── Contents.json │ │ │ ├── defaultMediaBlur.imageset │ │ │ │ └── image-4.jpg │ │ │ ├── downloadIcon.imageset │ │ │ │ ├── downloadIcon.png │ │ │ │ ├── downloadIcon@2x.png │ │ │ │ └── downloadIcon@3x.png │ │ │ ├── checkMarkIcon.imageset │ │ │ │ ├── checkMarkIcon.png │ │ │ │ ├── checkMarkIcon@2x.png │ │ │ │ └── checkMarkIcon@3x.png │ │ │ ├── playVideoIcon.imageset │ │ │ │ ├── playVideoIcon.png │ │ │ │ ├── playVideoIcon@2x.png │ │ │ │ └── playVideoIcon@3x.png │ │ │ ├── uploadIcon.imageset │ │ │ │ └── cloud-computing.png │ │ │ ├── defaultFileIcon.imageset │ │ │ │ └── file-default-box.png │ │ │ └── download-circular.imageset │ │ │ │ └── download-circular.png │ │ │ ├── Buttons │ │ │ ├── Contents.json │ │ │ ├── Arrow.imageset │ │ │ │ ├── Arrow.png │ │ │ │ ├── Arrow@2x.png │ │ │ │ └── Arrow@3x.png │ │ │ ├── Upvote.imageset │ │ │ │ ├── Upvote.png │ │ │ │ ├── Upvote@2x.png │ │ │ │ └── Upvote@3x.png │ │ │ ├── Downvote.imageset │ │ │ │ ├── Downvote.png │ │ │ │ ├── Downvote@2x.png │ │ │ │ └── Downvote@3x.png │ │ │ ├── eye_open.imageset │ │ │ │ ├── visible.png │ │ │ │ ├── visible@2x.png │ │ │ │ ├── visible@3x.png │ │ │ │ ├── visible_dark.png │ │ │ │ ├── visible_dark@2x.png │ │ │ │ └── visible_dark@3x.png │ │ │ ├── scrollUp.imageset │ │ │ │ ├── scrollUp.png │ │ │ │ ├── scrollUp@2x.png │ │ │ │ └── scrollUp@3x.png │ │ │ ├── SendMoney.imageset │ │ │ │ ├── SendMoney.png │ │ │ │ ├── SendMoney@2x.png │ │ │ │ └── SendMoney@3x.png │ │ │ ├── clipboard.imageset │ │ │ │ ├── clipboard.png │ │ │ │ ├── clipboard@2x.png │ │ │ │ ├── clipboard@3x.png │ │ │ │ ├── clipboard_dark.png │ │ │ │ ├── clipboard_dark@2x.png │ │ │ │ └── clipboard_dark@3x.png │ │ │ ├── eye_close.imageset │ │ │ │ ├── invisible.png │ │ │ │ ├── invisible@2x.png │ │ │ │ ├── invisible@3x.png │ │ │ │ ├── invisible_dark.png │ │ │ │ ├── invisible_dark@2x.png │ │ │ │ └── invisible_dark@3x.png │ │ │ ├── Attachment.imageset │ │ │ │ ├── Attachment.png │ │ │ │ ├── Attachment@2x.png │ │ │ │ └── Attachment@3x.png │ │ │ ├── ScrollDown.imageset │ │ │ │ ├── scrollDown.png │ │ │ │ ├── scrollDown@2x.png │ │ │ │ └── scrollDown@3x.png │ │ │ └── Share_button_small.imageset │ │ │ │ ├── Share_button.png │ │ │ │ ├── Share_button@2x.png │ │ │ │ └── Share_button@3x.png │ │ │ ├── Income_Outcome │ │ │ ├── Contents.json │ │ │ ├── Income_arrow.imageset │ │ │ │ ├── Income_arrow.png │ │ │ │ ├── Income_arrow@2x.png │ │ │ │ └── Income_arrow@3x.png │ │ │ └── Outcome_arrow.imageset │ │ │ │ └── Outcome_arrow.png │ │ │ ├── Transfers │ │ │ ├── Contents.json │ │ │ ├── transfer-in_bot.imageset │ │ │ │ └── transfer-in_bot.png │ │ │ ├── transfer-in_top.imageset │ │ │ │ └── transfer-in_top.png │ │ │ ├── transfer-out_bot.imageset │ │ │ │ └── transfer-out_bot.png │ │ │ └── transfer-out_top.imageset │ │ │ │ └── transfer-out_top.png │ │ │ ├── Welcome │ │ │ ├── Contents.json │ │ │ ├── skipBtn.imageset │ │ │ │ ├── skipBtn.png │ │ │ │ ├── skipBtn@2x.png │ │ │ │ └── skipBtn@3x.png │ │ │ ├── skip2Btn.imageset │ │ │ │ ├── skip2Btn.png │ │ │ │ ├── skip2Btn@2x.png │ │ │ │ └── skip2Btn@3x.png │ │ │ ├── stripeBg.imageset │ │ │ │ └── stripeBg.png │ │ │ ├── SlideImage1.imageset │ │ │ │ ├── img-infocards-1.png │ │ │ │ ├── img-infocards-1@2x.png │ │ │ │ └── img-infocards-1@3x.png │ │ │ ├── SlideImage2.imageset │ │ │ │ ├── img-infocards-2.png │ │ │ │ ├── img-infocards-2@2x.png │ │ │ │ └── img-infocards-2@3x.png │ │ │ ├── SlideImage3.imageset │ │ │ │ ├── img-infocards-3.png │ │ │ │ ├── img-infocards-3@2x.png │ │ │ │ └── img-infocards-3@3x.png │ │ │ ├── SlideImage4.imageset │ │ │ │ ├── img-infocards-4.png │ │ │ │ ├── img-infocards-4@2x.png │ │ │ │ └── img-infocards-4@3x.png │ │ │ └── SlideImage5.imageset │ │ │ │ ├── img-infocards-5.png │ │ │ │ ├── img-infocards-5@2x.png │ │ │ │ └── img-infocards-5@3x.png │ │ │ ├── Placeholders │ │ │ └── Contents.json │ │ │ ├── Swipe actions │ │ │ ├── Contents.json │ │ │ ├── swipe_block.imageset │ │ │ │ ├── cross.png │ │ │ │ ├── cross@2x.png │ │ │ │ └── cross@3x.png │ │ │ └── swipe_more.imageset │ │ │ │ ├── swipe_more.png │ │ │ │ ├── swipe_more@2x.png │ │ │ │ └── swipe_more@3x.png │ │ │ ├── TransactionStatus │ │ │ ├── Contents.json │ │ │ ├── status_failed.imageset │ │ │ │ ├── Failed.png │ │ │ │ ├── Failed@2x.png │ │ │ │ └── Failed@3x.png │ │ │ ├── status_pending.imageset │ │ │ │ ├── Pending.png │ │ │ │ ├── Pending@2x.png │ │ │ │ └── Pending@3x.png │ │ │ ├── status_success.imageset │ │ │ │ ├── Success.png │ │ │ │ ├── Success@2x.png │ │ │ │ └── Success@3x.png │ │ │ └── status_updating.imageset │ │ │ │ └── Updating.png │ │ │ ├── logo.imageset │ │ │ ├── logo.png │ │ │ ├── logo@2x.png │ │ │ └── logo@3x.png │ │ │ ├── avatar_bots.imageset │ │ │ ├── avatar_bots.png │ │ │ ├── avatar_bots@2x.png │ │ │ └── avatar_bots@3x.png │ │ │ └── Adamant-logo.imageset │ │ │ └── adamant-logo-1024.png │ │ └── Wallets │ │ └── ethereumTokensList.swift └── .gitignore ├── NotificationServiceExtension └── WalletImages │ ├── bnb_notificationContent.png │ ├── busd_notificationContent.png │ ├── bzz_notificationContent.png │ ├── dai_notificationContent.png │ ├── dash_notificationContent.png │ ├── doge_notificationContent.png │ ├── ens_notificationContent.png │ ├── flux_notificationContent.png │ ├── gt_notificationContent.png │ ├── hot_notificationContent.png │ ├── inj_notificationContent.png │ ├── link_notificationContent.png │ ├── mana_notificationContent.png │ ├── paxg_notificationContent.png │ ├── qnt_notificationContent.png │ ├── ren_notificationContent.png │ ├── skl_notificationContent.png │ ├── snt_notificationContent.png │ ├── snx_notificationContent.png │ ├── tusd_notificationContent.png │ ├── uni_notificationContent.png │ ├── usdc_notificationContent.png │ ├── usdp_notificationContent.png │ ├── usds_notificationContent.png │ ├── usdt_notificationContent.png │ ├── woo_notificationContent.png │ ├── xcn_notificationContent.png │ ├── floki_notificationContent.png │ ├── matic_notificationContent.png │ ├── storj_notificationContent.png │ ├── verse_notificationContent.png │ ├── adamant_notificationContent.png │ ├── bitcoin_notificationContent.png │ └── ethereum_notificationContent.png ├── FilesPickerKit └── .gitignore ├── FilesStorageKit └── .gitignore ├── AdamantWalletsKit ├── .gitignore └── Sources │ └── AdamantWalletsKit │ └── Wallets.xcassets │ ├── bnb_wallet.imageset │ ├── bnb_wallet.png │ ├── bnb_wallet@2x.png │ └── bnb_wallet@3x.png │ ├── bzz_wallet.imageset │ ├── bzz_wallet.png │ ├── bzz_wallet@2x.png │ └── bzz_wallet@3x.png │ ├── dai_wallet.imageset │ ├── dai_wallet.png │ ├── dai_wallet@2x.png │ └── dai_wallet@3x.png │ ├── ens_wallet.imageset │ ├── ens_wallet.png │ ├── ens_wallet@2x.png │ └── ens_wallet@3x.png │ ├── gt_wallet.imageset │ ├── gt_wallet.png │ ├── gt_wallet@2x.png │ └── gt_wallet@3x.png │ ├── hot_wallet.imageset │ ├── hot_wallet.png │ ├── hot_wallet@2x.png │ └── hot_wallet@3x.png │ ├── inj_wallet.imageset │ ├── inj_wallet.png │ ├── inj_wallet@2x.png │ └── inj_wallet@3x.png │ ├── qnt_wallet.imageset │ ├── qnt_wallet.png │ ├── qnt_wallet@2x.png │ ├── qnt_wallet@3x.png │ ├── qnt_wallet_dark.png │ ├── qnt_wallet_dark@2x.png │ └── qnt_wallet_dark@3x.png │ ├── ren_wallet.imageset │ ├── ren_wallet.png │ ├── ren_wallet@2x.png │ ├── ren_wallet@3x.png │ ├── ren_wallet_dark.png │ ├── ren_wallet_dark@2x.png │ └── ren_wallet_dark@3x.png │ ├── skl_wallet.imageset │ ├── skl_wallet.png │ ├── skl_wallet@2x.png │ ├── skl_wallet@3x.png │ ├── skl_wallet_dark.png │ ├── skl_wallet_dark@2x.png │ └── skl_wallet_dark@3x.png │ ├── snt_wallet.imageset │ ├── snt_wallet.png │ ├── snt_wallet@2x.png │ └── snt_wallet@3x.png │ ├── snx_wallet.imageset │ ├── snx_wallet.png │ ├── snx_wallet@2x.png │ ├── snx_wallet@3x.png │ ├── snx_wallet_dark.png │ ├── snx_wallet_dark@2x.png │ └── snx_wallet_dark@3x.png │ ├── uni_wallet.imageset │ ├── uni_wallet.png │ ├── uni_wallet@2x.png │ └── uni_wallet@3x.png │ ├── woo_wallet.imageset │ ├── woo_wallet.png │ ├── woo_wallet@2x.png │ ├── woo_wallet@3x.png │ ├── woo_wallet_dark.png │ ├── woo_wallet_dark@2x.png │ └── woo_wallet_dark@3x.png │ ├── xcn_wallet.imageset │ ├── xcn_wallet.png │ ├── xcn_wallet@2x.png │ ├── xcn_wallet@3x.png │ ├── xcn_wallet_dark.png │ ├── xcn_wallet_dark@2x.png │ └── xcn_wallet_dark@3x.png │ ├── busd_wallet.imageset │ ├── busd_wallet.png │ ├── busd_wallet@2x.png │ └── busd_wallet@3x.png │ ├── dash_wallet.imageset │ ├── dash_wallet.png │ ├── dash_wallet@2x.png │ └── dash_wallet@3x.png │ ├── doge_wallet.imageset │ ├── doge_wallet.png │ ├── doge_wallet@2x.png │ └── doge_wallet@3x.png │ ├── flux_wallet.imageset │ ├── flux_wallet.png │ ├── flux_wallet@2x.png │ └── flux_wallet@3x.png │ ├── link_wallet.imageset │ ├── link_wallet.png │ ├── link_wallet@2x.png │ └── link_wallet@3x.png │ ├── mana_wallet.imageset │ ├── mana_wallet.png │ ├── mana_wallet@2x.png │ └── mana_wallet@3x.png │ ├── paxg_wallet.imageset │ ├── paxg_wallet.png │ ├── paxg_wallet@2x.png │ └── paxg_wallet@3x.png │ ├── tusd_wallet.imageset │ ├── tusd_wallet.png │ ├── tusd_wallet@2x.png │ └── tusd_wallet@3x.png │ ├── usdc_wallet.imageset │ ├── usdc_wallet.png │ ├── usdc_wallet@2x.png │ └── usdc_wallet@3x.png │ ├── usdp_wallet.imageset │ ├── usdp_wallet.png │ ├── usdp_wallet@2x.png │ └── usdp_wallet@3x.png │ ├── usds_wallet.imageset │ ├── usds_wallet.png │ ├── usds_wallet@2x.png │ └── usds_wallet@3x.png │ ├── usdt_wallet.imageset │ ├── usdt_wallet.png │ ├── usdt_wallet@2x.png │ └── usdt_wallet@3x.png │ ├── floki_wallet.imageset │ ├── floki_wallet.png │ ├── floki_wallet@2x.png │ └── floki_wallet@3x.png │ ├── matic_wallet.imageset │ ├── matic_wallet.png │ ├── matic_wallet@2x.png │ └── matic_wallet@3x.png │ ├── storj_wallet.imageset │ ├── storj_wallet.png │ ├── storj_wallet@2x.png │ └── storj_wallet@3x.png │ ├── verse_wallet.imageset │ ├── verse_wallet.png │ ├── verse_wallet@2x.png │ └── verse_wallet@3x.png │ ├── gt_wallet_row.imageset │ ├── gt_wallet_row.png │ ├── gt_wallet_row@2x.png │ └── gt_wallet_row@3x.png │ ├── adamant_wallet.imageset │ ├── adamant_wallet.png │ ├── adamant_wallet@2x.png │ └── adamant_wallet@3x.png │ ├── bitcoin_wallet.imageset │ ├── bitcoin_wallet.png │ ├── bitcoin_wallet@2x.png │ └── bitcoin_wallet@3x.png │ ├── bnb_wallet_row.imageset │ ├── bnb_wallet_row.png │ ├── bnb_wallet_row@2x.png │ └── bnb_wallet_row@3x.png │ ├── busd_wallet_row.imageset │ ├── busd_wallet_row.png │ ├── busd_wallet_row@2x.png │ └── busd_wallet_row@3x.png │ ├── bzz_wallet_row.imageset │ ├── bzz_wallet_row.png │ ├── bzz_wallet_row@2x.png │ └── bzz_wallet_row@3x.png │ ├── dai_wallet_row.imageset │ ├── dai_wallet_row.png │ ├── dai_wallet_row@2x.png │ └── dai_wallet_row@3x.png │ ├── dash_wallet_row.imageset │ ├── dash_wallet_row.png │ ├── dash_wallet_row@2x.png │ └── dash_wallet_row@3x.png │ ├── doge_wallet_row.imageset │ ├── doge_wallet_row.png │ ├── doge_wallet_row@2x.png │ └── doge_wallet_row@3x.png │ ├── ens_wallet_row.imageset │ ├── ens_wallet_row.png │ ├── ens_wallet_row@2x.png │ └── ens_wallet_row@3x.png │ ├── ethereum_wallet.imageset │ └── ethereum_wallet.png │ ├── flux_wallet_row.imageset │ └── flux_wallet_row.png │ ├── gt_notification.imageset │ └── gt_notification.png │ ├── hot_wallet_row.imageset │ ├── hot_wallet_row.png │ ├── hot_wallet_row@2x.png │ └── hot_wallet_row@3x.png │ ├── inj_wallet_row.imageset │ ├── inj_wallet_row.png │ ├── inj_wallet_row@2x.png │ └── inj_wallet_row@3x.png │ ├── link_wallet_row.imageset │ └── link_wallet_row.png │ ├── mana_wallet_row.imageset │ └── mana_wallet_row.png │ ├── paxg_wallet_row.imageset │ └── paxg_wallet_row.png │ ├── qnt_wallet_row.imageset │ ├── qnt_wallet_row.png │ ├── qnt_wallet_row@2x.png │ └── qnt_wallet_row@3x.png │ ├── ren_wallet_row.imageset │ ├── ren_wallet_row.png │ ├── ren_wallet_row@2x.png │ └── ren_wallet_row@3x.png │ ├── skl_wallet_row.imageset │ ├── skl_wallet_row.png │ ├── skl_wallet_row@2x.png │ └── skl_wallet_row@3x.png │ ├── snt_wallet_row.imageset │ ├── snt_wallet_row.png │ ├── snt_wallet_row@2x.png │ └── snt_wallet_row@3x.png │ ├── snx_wallet_row.imageset │ ├── snx_wallet_row.png │ ├── snx_wallet_row@2x.png │ └── snx_wallet_row@3x.png │ ├── tusd_wallet_row.imageset │ └── tusd_wallet_row.png │ ├── uni_wallet_row.imageset │ ├── uni_wallet_row.png │ ├── uni_wallet_row@2x.png │ └── uni_wallet_row@3x.png │ ├── usdc_wallet_row.imageset │ └── usdc_wallet_row.png │ ├── usdp_wallet_row.imageset │ └── usdp_wallet_row.png │ ├── usds_wallet_row.imageset │ └── usds_wallet_row.png │ ├── usdt_wallet_row.imageset │ └── usdt_wallet_row.png │ ├── woo_wallet_row.imageset │ ├── woo_wallet_row.png │ ├── woo_wallet_row@2x.png │ └── woo_wallet_row@3x.png │ ├── xcn_wallet_row.imageset │ ├── xcn_wallet_row.png │ ├── xcn_wallet_row@2x.png │ └── xcn_wallet_row@3x.png │ ├── bnb_notification.imageset │ ├── bnb_notification.png │ ├── bnb_notification@2x.png │ └── bnb_notification@3x.png │ ├── bzz_notification.imageset │ ├── bzz_notification.png │ ├── bzz_notification@2x.png │ └── bzz_notification@3x.png │ ├── dai_notification.imageset │ ├── dai_notification.png │ ├── dai_notification@2x.png │ └── dai_notification@3x.png │ ├── ens_notification.imageset │ ├── ens_notification.png │ ├── ens_notification@2x.png │ └── ens_notification@3x.png │ ├── floki_wallet_row.imageset │ └── floki_wallet_row.png │ ├── hot_notification.imageset │ └── hot_notification.png │ ├── inj_notification.imageset │ └── inj_notification.png │ ├── matic_wallet_row.imageset │ └── matic_wallet_row.png │ ├── qnt_notification.imageset │ └── qnt_notification.png │ ├── ren_notification.imageset │ └── ren_notification.png │ ├── skl_notification.imageset │ └── skl_notification.png │ ├── snt_notification.imageset │ └── snt_notification.png │ ├── snx_notification.imageset │ └── snx_notification.png │ ├── storj_wallet_row.imageset │ └── storj_wallet_row.png │ ├── uni_notification.imageset │ └── uni_notification.png │ ├── verse_wallet_row.imageset │ └── verse_wallet_row.png │ ├── woo_notification.imageset │ └── woo_notification.png │ ├── xcn_notification.imageset │ └── xcn_notification.png │ ├── busd_notification.imageset │ └── busd_notification.png │ ├── dash_notification.imageset │ └── dash_notification.png │ └── doge_notification.imageset │ └── doge_notification.png ├── PopupKit └── .gitignore └── pckg └── AdvancedContextMenuKit └── .gitignore /BitcoinKit/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | AdamantTests/Core/adamant-core.js linguist-vendored 2 | -------------------------------------------------------------------------------- /BitcoinKit/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /Adamant.sublime-project: -------------------------------------------------------------------------------- 1 | { 2 | "folders": 3 | [ 4 | { 5 | "path": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /Adamant/Assets/antic.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/antic.mp3 -------------------------------------------------------------------------------- /Adamant/Assets/cheers.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/cheers.mp3 -------------------------------------------------------------------------------- /Adamant/Assets/chord.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/chord.mp3 -------------------------------------------------------------------------------- /Adamant/Assets/note.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/note.mp3 -------------------------------------------------------------------------------- /Adamant/Assets/portal.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/portal.mp3 -------------------------------------------------------------------------------- /Adamant/Assets/rattle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/rattle.mp3 -------------------------------------------------------------------------------- /Adamant/Assets/slide.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/slide.mp3 -------------------------------------------------------------------------------- /Adamant/Assets/default.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/default.mp3 -------------------------------------------------------------------------------- /Adamant/Assets/droplet.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/droplet.mp3 -------------------------------------------------------------------------------- /Adamant/Assets/handoff.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/handoff.mp3 -------------------------------------------------------------------------------- /Adamant/Assets/passage.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/passage.mp3 -------------------------------------------------------------------------------- /Adamant/Assets/rebound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/rebound.mp3 -------------------------------------------------------------------------------- /Adamant/Assets/welcome.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/welcome.mp3 -------------------------------------------------------------------------------- /AdamantTests/Stubs/RequestStubs/dash_send_transaction_unit_response.json: -------------------------------------------------------------------------------- 1 | { 2 | "result": "txid" 3 | } 4 | -------------------------------------------------------------------------------- /Adamant/Assets/milestone.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/milestone.mp3 -------------------------------------------------------------------------------- /Adamant/Assets/notification.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/notification.mp3 -------------------------------------------------------------------------------- /Adamant/Assets/short-success.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/short-success.mp3 -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Adamant/Assets/relax-message-tone.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/relax-message-tone.mp3 -------------------------------------------------------------------------------- /Adamant/Assets/so-proud-notification.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/so-proud-notification.mp3 -------------------------------------------------------------------------------- /Adamant/Assets/Fonts/Exo+2_100_normal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Fonts/Exo+2_100_normal.ttf -------------------------------------------------------------------------------- /Adamant/Assets/Fonts/Exo+2_300_normal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Fonts/Exo+2_300_normal.ttf -------------------------------------------------------------------------------- /Adamant/Assets/Fonts/Exo+2_400_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Fonts/Exo+2_400_italic.ttf -------------------------------------------------------------------------------- /Adamant/Assets/Fonts/Exo+2_400_normal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Fonts/Exo+2_400_normal.ttf -------------------------------------------------------------------------------- /Adamant/Assets/Fonts/Exo+2_500_normal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Fonts/Exo+2_500_normal.ttf -------------------------------------------------------------------------------- /Adamant/Assets/Fonts/Exo+2_700_normal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Fonts/Exo+2_700_normal.ttf -------------------------------------------------------------------------------- /Adamant/Assets/Fonts/Roboto_300_normal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Fonts/Roboto_300_normal.ttf -------------------------------------------------------------------------------- /Adamant/Assets/Fonts/Roboto_400_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Fonts/Roboto_400_italic.ttf -------------------------------------------------------------------------------- /Adamant/Assets/Fonts/Roboto_400_normal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Fonts/Roboto_400_normal.ttf -------------------------------------------------------------------------------- /Adamant/Assets/Fonts/Roboto_500_normal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Fonts/Roboto_500_normal.ttf -------------------------------------------------------------------------------- /Adamant/Assets/Fonts/Roboto_700_normal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Fonts/Roboto_700_normal.ttf -------------------------------------------------------------------------------- /scripts/AdamantCLI/Makefile: -------------------------------------------------------------------------------- 1 | build: 2 | swift build --configuration release --build-path ./build 3 | cp ./build/release/adamant-cli ./ || true -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /AdamantTests/Stubs/RequestStubs/dash_send_transation_response.json: -------------------------------------------------------------------------------- 1 | { 2 | "result": "d4cf3fde45d0e7ba855db9621bdc6da091856011d86f199bebd1937f7b63020a" 3 | } 4 | -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Income_Outcome/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Transfers/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Placeholders/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Swipe actions/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/TransactionStatus/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/AppIcon.appiconset/iOS_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/AppIcon.appiconset/iOS_dark.png -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/AppIcon.appiconset/iOS_tint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/AppIcon.appiconset/iOS_tint.png -------------------------------------------------------------------------------- /BitcoinKit/Sources/BitcoinKit/LinuxSupport.swift: -------------------------------------------------------------------------------- 1 | // 2 | // LinuxSupport.swift 3 | // BitcoinKit 4 | // 5 | // Created by Yusuke Ito on 3/25/18. 6 | // 7 | import Foundation 8 | -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/AppIcon.appiconset/iOS_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/AppIcon.appiconset/iOS_white.png -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/bnb_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/bnb_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/busd_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/busd_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/bzz_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/bzz_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/dai_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/dai_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/dash_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/dash_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/doge_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/doge_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/ens_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/ens_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/flux_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/flux_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/gt_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/gt_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/hot_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/hot_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/inj_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/inj_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/link_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/link_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/mana_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/mana_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/paxg_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/paxg_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/qnt_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/qnt_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/ren_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/ren_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/skl_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/skl_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/snt_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/snt_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/snx_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/snx_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/tusd_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/tusd_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/uni_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/uni_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/usdc_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/usdc_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/usdp_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/usdp_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/usds_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/usds_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/usdt_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/usdt_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/woo_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/woo_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/xcn_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/xcn_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/floki_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/floki_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/matic_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/matic_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/storj_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/storj_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/verse_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/verse_notificationContent.png -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/Adamant-logo.imageset/adamant-logo-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/Adamant-logo.imageset/adamant-logo-1024.png -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-20.png -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-29.png -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-40.png -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-76.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/logo.imageset/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/logo.imageset/logo.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/adamant_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/adamant_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/bitcoin_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/bitcoin_notificationContent.png -------------------------------------------------------------------------------- /NotificationServiceExtension/WalletImages/ethereum_notificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/NotificationServiceExtension/WalletImages/ethereum_notificationContent.png -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-20@2x.png -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-20@3x.png -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-29@2x.png -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-29@3x.png -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-40@2x.png -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-40@3x.png -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-60@2x.png -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-60@3x.png -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-76@2x.png -------------------------------------------------------------------------------- /CommonKit/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | xcuserdata/ 5 | DerivedData/ 6 | .swiftpm/configuration/registries.json 7 | .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata 8 | .netrc 9 | -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/logo.imageset/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/logo.imageset/logo@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/logo.imageset/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/logo.imageset/logo@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Wallets/ethereumTokensList.swift: -------------------------------------------------------------------------------- 1 | import AdamantWalletsKit 2 | import Foundation 3 | 4 | extension ERC20Token { 5 | public static var supportedTokens: [ERC20Token] = [] 6 | } 7 | -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-20@2x-1.png -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-29@2x-1.png -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-40@2x-1.png -------------------------------------------------------------------------------- /Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/Adamant/Assets/Assets.xcassets/AppIcon_Debug.appiconset/Icon_debug-83.5@2x.png -------------------------------------------------------------------------------- /FilesPickerKit/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | xcuserdata/ 5 | DerivedData/ 6 | .swiftpm/configuration/registries.json 7 | .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata 8 | .netrc 9 | -------------------------------------------------------------------------------- /FilesStorageKit/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | xcuserdata/ 5 | DerivedData/ 6 | .swiftpm/configuration/registries.json 7 | .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata 8 | .netrc 9 | -------------------------------------------------------------------------------- /AdamantWalletsKit/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | xcuserdata/ 5 | DerivedData/ 6 | .swiftpm/configuration/registries.json 7 | .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata 8 | .netrc 9 | -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/cross.imageset/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/cross.imageset/cross.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/error.imageset/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/error.imageset/error.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_QR.imageset/row_QR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_QR.imageset/row_QR.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_rate.imageset/rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_rate.imageset/rate.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Arrow.imageset/Arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Arrow.imageset/Arrow.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Upvote.imageset/Upvote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Upvote.imageset/Upvote.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/cross.imageset/cross@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/cross.imageset/cross@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/cross.imageset/cross@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/cross.imageset/cross@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/error.imageset/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/error.imageset/error@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/error.imageset/error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/error.imageset/error@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_QR.imageset/row_QR@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_QR.imageset/row_QR@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_QR.imageset/row_QR@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_QR.imageset/row_QR@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_blog.imageset/row_blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_blog.imageset/row_blog.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_chat.imageset/row_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_chat.imageset/row_chat.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_donate.imageset/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_donate.imageset/donate.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_fameex.imageset/fameex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_fameex.imageset/fameex.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_logo.imageset/row_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_logo.imageset/row_logo.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_nonkyc.imageset/nonkyc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_nonkyc.imageset/nonkyc.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_rate.imageset/rate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_rate.imageset/rate@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_rate.imageset/rate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_rate.imageset/rate@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_xeggex.imageset/xeggex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_xeggex.imageset/xeggex.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Arrow.imageset/Arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Arrow.imageset/Arrow@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Arrow.imageset/Arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Arrow.imageset/Arrow@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_about.imageset/row_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_about.imageset/row_about.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_nodes.imageset/row_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_nodes.imageset/row_nodes.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_preview.imageset/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_preview.imageset/preview.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_stake.imageset/Stake@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_stake.imageset/Stake@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_twitter.imageset/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_twitter.imageset/twitter.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/skipBtn.imageset/skipBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/skipBtn.imageset/skipBtn.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/avatar_bots.imageset/avatar_bots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/avatar_bots.imageset/avatar_bots.png -------------------------------------------------------------------------------- /PopupKit/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | DerivedData/ 7 | .swiftpm/config/registries.json 8 | .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata 9 | .netrc 10 | -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Downvote.imageset/Downvote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Downvote.imageset/Downvote.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Upvote.imageset/Upvote@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Upvote.imageset/Upvote@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Upvote.imageset/Upvote@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Upvote.imageset/Upvote@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_open.imageset/visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_open.imageset/visible.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/scrollUp.imageset/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/scrollUp.imageset/scrollUp.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/chats_tab.imageset/tab_chats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/chats_tab.imageset/tab_chats.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/eth_token.imageset/eth_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/eth_token.imageset/eth_token.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/azbit_logo.imageset/azbit-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/azbit_logo.imageset/azbit-logo.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/exch_anon.imageset/exch_anon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/exch_anon.imageset/exch_anon@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_about.imageset/row_about@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_about.imageset/row_about@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_about.imageset/row_about@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_about.imageset/row_about@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_blog.imageset/row_blog@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_blog.imageset/row_blog@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_blog.imageset/row_blog@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_blog.imageset/row_blog@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_chat.imageset/row_chat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_chat.imageset/row_chat@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_chat.imageset/row_chat@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_chat.imageset/row_chat@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_delegate.imageset/delegate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_delegate.imageset/delegate.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_donate.imageset/donate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_donate.imageset/donate@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_donate.imageset/donate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_donate.imageset/donate@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_faceid.imageset/face-id@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_faceid.imageset/face-id@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_fameex.imageset/fameex@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_fameex.imageset/fameex@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_fameex.imageset/fameex@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_fameex.imageset/fameex@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_github.imageset/row_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_github.imageset/row_github.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_logo.imageset/row_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_logo.imageset/row_logo@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_logo.imageset/row_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_logo.imageset/row_logo@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_logout.imageset/row_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_logout.imageset/row_logout.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_nodes.imageset/row_nodes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_nodes.imageset/row_nodes@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_nodes.imageset/row_nodes@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_nodes.imageset/row_nodes@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_nonkyc.imageset/nonkyc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_nonkyc.imageset/nonkyc@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_nonkyc.imageset/nonkyc@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_nonkyc.imageset/nonkyc@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_preview.imageset/preview@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_preview.imageset/preview@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_preview.imageset/preview@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_preview.imageset/preview@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_stake.imageset/Stake@3x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_stake.imageset/Stake@3x-2.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_stake.imageset/Stake@3x-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_stake.imageset/Stake@3x-3.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_themes.imageset/row_themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_themes.imageset/row_themes.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_twitter.imageset/twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_twitter.imageset/twitter@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_twitter.imageset/twitter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_twitter.imageset/twitter@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_xeggex.imageset/xeggex@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_xeggex.imageset/xeggex@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_xeggex.imageset/xeggex@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_xeggex.imageset/xeggex@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/skip2Btn.imageset/skip2Btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/skip2Btn.imageset/skip2Btn.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/skipBtn.imageset/skipBtn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/skipBtn.imageset/skipBtn@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/skipBtn.imageset/skipBtn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/skipBtn.imageset/skipBtn@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/stripeBg.imageset/stripeBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/stripeBg.imageset/stripeBg.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/avatar_bots.imageset/avatar_bots@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/avatar_bots.imageset/avatar_bots@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/avatar_bots.imageset/avatar_bots@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/avatar_bots.imageset/avatar_bots@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Downvote.imageset/Downvote@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Downvote.imageset/Downvote@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Downvote.imageset/Downvote@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Downvote.imageset/Downvote@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/SendMoney.imageset/SendMoney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/SendMoney.imageset/SendMoney.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/clipboard.imageset/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/clipboard.imageset/clipboard.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_close.imageset/invisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_close.imageset/invisible.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_open.imageset/visible@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_open.imageset/visible@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_open.imageset/visible@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_open.imageset/visible@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/scrollUp.imageset/scrollUp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/scrollUp.imageset/scrollUp@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/scrollUp.imageset/scrollUp@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/scrollUp.imageset/scrollUp@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/chats_tab.imageset/tab_chats@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/chats_tab.imageset/tab_chats@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/chats_tab.imageset/tab_chats@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/chats_tab.imageset/tab_chats@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/eth_token.imageset/eth_token@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/eth_token.imageset/eth_token@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/eth_token.imageset/eth_token@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/eth_token.imageset/eth_token@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/azbit_logo.imageset/azbit-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/azbit_logo.imageset/azbit-logo@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/azbit_logo.imageset/azbit-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/azbit_logo.imageset/azbit-logo@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/exch_anon.imageset/exch_anon@3x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/exch_anon.imageset/exch_anon@3x-2.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/exch_anon.imageset/exch_anon@3x-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/exch_anon.imageset/exch_anon@3x-3.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_balance.imageset/row_balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_balance.imageset/row_balance.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_coinstore.imageset/coinstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_coinstore.imageset/coinstore.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_contribute_node.imageset/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_contribute_node.imageset/node.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_delegate.imageset/delegate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_delegate.imageset/delegate@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_delegate.imageset/delegate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_delegate.imageset/delegate@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_faceid.imageset/face-id@3x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_faceid.imageset/face-id@3x-2.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_faceid.imageset/face-id@3x-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_faceid.imageset/face-id@3x-3.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_github.imageset/row_github@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_github.imageset/row_github@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_github.imageset/row_github@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_github.imageset/row_github@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_language.imageset/lang_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_language.imageset/lang_switch.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_logout.imageset/row_logout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_logout.imageset/row_logout@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_logout.imageset/row_logout@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_logout.imageset/row_logout@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_stakecube.imageset/stakecube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_stakecube.imageset/stakecube.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_storage.imageset/storage_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_storage.imageset/storage_icon.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_themes.imageset/row_themes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_themes.imageset/row_themes@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_themes.imageset/row_themes@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_themes.imageset/row_themes@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_touchid.imageset/row_touchid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_touchid.imageset/row_touchid.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_vibration.imageset/vibration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_vibration.imageset/vibration.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_website.imageset/row_website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_website.imageset/row_website.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/skip2Btn.imageset/skip2Btn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/skip2Btn.imageset/skip2Btn@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/skip2Btn.imageset/skip2Btn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/skip2Btn.imageset/skip2Btn@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bnb_wallet.imageset/bnb_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bnb_wallet.imageset/bnb_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bzz_wallet.imageset/bzz_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bzz_wallet.imageset/bzz_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dai_wallet.imageset/dai_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dai_wallet.imageset/dai_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ens_wallet.imageset/ens_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ens_wallet.imageset/ens_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/gt_wallet.imageset/gt_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/gt_wallet.imageset/gt_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/hot_wallet.imageset/hot_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/hot_wallet.imageset/hot_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/inj_wallet.imageset/inj_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/inj_wallet.imageset/inj_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/qnt_wallet.imageset/qnt_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/qnt_wallet.imageset/qnt_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ren_wallet.imageset/ren_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ren_wallet.imageset/ren_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/skl_wallet.imageset/skl_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/skl_wallet.imageset/skl_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snt_wallet.imageset/snt_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snt_wallet.imageset/snt_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snx_wallet.imageset/snx_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snx_wallet.imageset/snx_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/uni_wallet.imageset/uni_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/uni_wallet.imageset/uni_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/woo_wallet.imageset/woo_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/woo_wallet.imageset/woo_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/xcn_wallet.imageset/xcn_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/xcn_wallet.imageset/xcn_wallet.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Adamant-logo.imageset/adamant-logo-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Adamant-logo.imageset/adamant-logo-1024.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Attachment.imageset/Attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Attachment.imageset/Attachment.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/ScrollDown.imageset/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/ScrollDown.imageset/scrollDown.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/SendMoney.imageset/SendMoney@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/SendMoney.imageset/SendMoney@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/SendMoney.imageset/SendMoney@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/SendMoney.imageset/SendMoney@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/clipboard.imageset/clipboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/clipboard.imageset/clipboard@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/clipboard.imageset/clipboard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/clipboard.imageset/clipboard@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_close.imageset/invisible@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_close.imageset/invisible@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_close.imageset/invisible@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_close.imageset/invisible@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_open.imageset/visible_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_open.imageset/visible_dark.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/account-tab.imageset/account-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/account-tab.imageset/account-tab.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/bitz_row_logo.imageset/bitz_row_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/bitz_row_logo.imageset/bitz_row_logo.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/idcm_row_logo.imageset/idcm_row_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/idcm_row_logo.imageset/idcm_row_logo.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_balance.imageset/row_balance@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_balance.imageset/row_balance@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_balance.imageset/row_balance@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_balance.imageset/row_balance@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_buy-coins.imageset/row_buy-coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_buy-coins.imageset/row_buy-coins.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_coingecko.imageset/coingecko@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_coingecko.imageset/coingecko@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_coinstore.imageset/coinstore@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_coinstore.imageset/coinstore@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_coinstore.imageset/coinstore@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_coinstore.imageset/coinstore@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_contribute.imageset/contribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_contribute.imageset/contribute.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_contribute_node.imageset/node@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_contribute_node.imageset/node@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_contribute_node.imageset/node@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_contribute_node.imageset/node@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_crashlytics.imageset/crashlytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_crashlytics.imageset/crashlytics.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_currency.imageset/row_currency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_currency.imageset/row_currency.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_explorer.imageset/row_explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_explorer.imageset/row_explorer.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_language.imageset/lang_switch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_language.imageset/lang_switch@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_language.imageset/lang_switch@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_language.imageset/lang_switch@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_security.imageset/row_security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_security.imageset/row_security.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_stakecube.imageset/stakecube@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_stakecube.imageset/stakecube@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_stakecube.imageset/stakecube@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_stakecube.imageset/stakecube@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_storage.imageset/storage_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_storage.imageset/storage_icon@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_storage.imageset/storage_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_storage.imageset/storage_icon@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_touchid.imageset/row_touchid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_touchid.imageset/row_touchid@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_touchid.imageset/row_touchid@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_touchid.imageset/row_touchid@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_vibration.imageset/vibration@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_vibration.imageset/vibration@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_vibration.imageset/vibration@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_vibration.imageset/vibration@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_website.imageset/row_website@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_website.imageset/row_website@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_website.imageset/row_website@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_website.imageset/row_website@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Swipe actions/swipe_block.imageset/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Swipe actions/swipe_block.imageset/cross.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/defaultMediaBlur.imageset/image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/defaultMediaBlur.imageset/image-4.jpg -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/downloadIcon.imageset/downloadIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/downloadIcon.imageset/downloadIcon.png -------------------------------------------------------------------------------- /AdamantTests/DisabledTests/Parsing/Chat.json: -------------------------------------------------------------------------------- 1 | { 2 | "message": "7b7b3802f1d081e10624a373628fd0ba57e9348a7bca196c7511b05403a10611e3b4cf8b37cb9858f7f52cd5", 3 | "own_message": "f4f7972f735997b4c2014d87cb491bb156f9cc4d0404cb9c", 4 | "type": 1 5 | } 6 | -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/busd_wallet.imageset/busd_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/busd_wallet.imageset/busd_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dash_wallet.imageset/dash_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dash_wallet.imageset/dash_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/doge_wallet.imageset/doge_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/doge_wallet.imageset/doge_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/flux_wallet.imageset/flux_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/flux_wallet.imageset/flux_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/gt_wallet.imageset/gt_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/gt_wallet.imageset/gt_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/gt_wallet.imageset/gt_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/gt_wallet.imageset/gt_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/link_wallet.imageset/link_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/link_wallet.imageset/link_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/mana_wallet.imageset/mana_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/mana_wallet.imageset/mana_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/paxg_wallet.imageset/paxg_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/paxg_wallet.imageset/paxg_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/tusd_wallet.imageset/tusd_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/tusd_wallet.imageset/tusd_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdc_wallet.imageset/usdc_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdc_wallet.imageset/usdc_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdp_wallet.imageset/usdp_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdp_wallet.imageset/usdp_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usds_wallet.imageset/usds_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usds_wallet.imageset/usds_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdt_wallet.imageset/usdt_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdt_wallet.imageset/usdt_wallet.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Attachment.imageset/Attachment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Attachment.imageset/Attachment@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Attachment.imageset/Attachment@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Attachment.imageset/Attachment@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/ScrollDown.imageset/scrollDown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/ScrollDown.imageset/scrollDown@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/ScrollDown.imageset/scrollDown@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/ScrollDown.imageset/scrollDown@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/clipboard.imageset/clipboard_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/clipboard.imageset/clipboard_dark.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_close.imageset/invisible_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_close.imageset/invisible_dark.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_open.imageset/visible_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_open.imageset/visible_dark@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_open.imageset/visible_dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_open.imageset/visible_dark@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/account-tab.imageset/account-tab@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/account-tab.imageset/account-tab@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/account-tab.imageset/account-tab@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/account-tab.imageset/account-tab@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/adamant_token.imageset/adamant_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/adamant_token.imageset/adamant_token.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/privateKey_row.imageset/privateKey_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/privateKey_row.imageset/privateKey_row.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_coingecko.imageset/coingecko@3x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_coingecko.imageset/coingecko@3x-2.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_coingecko.imageset/coingecko@3x-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_coingecko.imageset/coingecko@3x-3.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_coinmarket.imageset/coinmarket@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_coinmarket.imageset/coinmarket@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_contribute.imageset/contribute@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_contribute.imageset/contribute@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_contribute.imageset/contribute@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_contribute.imageset/contribute@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_currency.imageset/row_currency@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_currency.imageset/row_currency@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_currency.imageset/row_currency@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_currency.imageset/row_currency@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_explorer.imageset/row_explorer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_explorer.imageset/row_explorer@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_explorer.imageset/row_explorer@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_explorer.imageset/row_explorer@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_security.imageset/row_security@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_security.imageset/row_security@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_security.imageset/row_security@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_security.imageset/row_security@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/checkMarkIcon.imageset/checkMarkIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/checkMarkIcon.imageset/checkMarkIcon.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/playVideoIcon.imageset/playVideoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/playVideoIcon.imageset/playVideoIcon.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/uploadIcon.imageset/cloud-computing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/uploadIcon.imageset/cloud-computing.png -------------------------------------------------------------------------------- /pckg/AdvancedContextMenuKit/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | DerivedData/ 7 | .swiftpm/config/registries.json 8 | .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata 9 | .netrc 10 | -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bnb_wallet.imageset/bnb_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bnb_wallet.imageset/bnb_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bnb_wallet.imageset/bnb_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bnb_wallet.imageset/bnb_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/busd_wallet.imageset/busd_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/busd_wallet.imageset/busd_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/busd_wallet.imageset/busd_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/busd_wallet.imageset/busd_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bzz_wallet.imageset/bzz_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bzz_wallet.imageset/bzz_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bzz_wallet.imageset/bzz_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bzz_wallet.imageset/bzz_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dai_wallet.imageset/dai_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dai_wallet.imageset/dai_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dai_wallet.imageset/dai_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dai_wallet.imageset/dai_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dash_wallet.imageset/dash_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dash_wallet.imageset/dash_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dash_wallet.imageset/dash_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dash_wallet.imageset/dash_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/doge_wallet.imageset/doge_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/doge_wallet.imageset/doge_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/doge_wallet.imageset/doge_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/doge_wallet.imageset/doge_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ens_wallet.imageset/ens_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ens_wallet.imageset/ens_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ens_wallet.imageset/ens_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ens_wallet.imageset/ens_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/floki_wallet.imageset/floki_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/floki_wallet.imageset/floki_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/flux_wallet.imageset/flux_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/flux_wallet.imageset/flux_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/flux_wallet.imageset/flux_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/flux_wallet.imageset/flux_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/hot_wallet.imageset/hot_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/hot_wallet.imageset/hot_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/hot_wallet.imageset/hot_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/hot_wallet.imageset/hot_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/inj_wallet.imageset/inj_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/inj_wallet.imageset/inj_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/inj_wallet.imageset/inj_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/inj_wallet.imageset/inj_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/link_wallet.imageset/link_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/link_wallet.imageset/link_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/link_wallet.imageset/link_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/link_wallet.imageset/link_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/mana_wallet.imageset/mana_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/mana_wallet.imageset/mana_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/mana_wallet.imageset/mana_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/mana_wallet.imageset/mana_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/matic_wallet.imageset/matic_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/matic_wallet.imageset/matic_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/paxg_wallet.imageset/paxg_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/paxg_wallet.imageset/paxg_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/paxg_wallet.imageset/paxg_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/paxg_wallet.imageset/paxg_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/qnt_wallet.imageset/qnt_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/qnt_wallet.imageset/qnt_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/qnt_wallet.imageset/qnt_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/qnt_wallet.imageset/qnt_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/qnt_wallet.imageset/qnt_wallet_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/qnt_wallet.imageset/qnt_wallet_dark.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ren_wallet.imageset/ren_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ren_wallet.imageset/ren_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ren_wallet.imageset/ren_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ren_wallet.imageset/ren_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ren_wallet.imageset/ren_wallet_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ren_wallet.imageset/ren_wallet_dark.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/skl_wallet.imageset/skl_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/skl_wallet.imageset/skl_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/skl_wallet.imageset/skl_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/skl_wallet.imageset/skl_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/skl_wallet.imageset/skl_wallet_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/skl_wallet.imageset/skl_wallet_dark.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snt_wallet.imageset/snt_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snt_wallet.imageset/snt_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snt_wallet.imageset/snt_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snt_wallet.imageset/snt_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snx_wallet.imageset/snx_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snx_wallet.imageset/snx_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snx_wallet.imageset/snx_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snx_wallet.imageset/snx_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snx_wallet.imageset/snx_wallet_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snx_wallet.imageset/snx_wallet_dark.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/storj_wallet.imageset/storj_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/storj_wallet.imageset/storj_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/tusd_wallet.imageset/tusd_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/tusd_wallet.imageset/tusd_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/tusd_wallet.imageset/tusd_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/tusd_wallet.imageset/tusd_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/uni_wallet.imageset/uni_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/uni_wallet.imageset/uni_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/uni_wallet.imageset/uni_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/uni_wallet.imageset/uni_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdc_wallet.imageset/usdc_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdc_wallet.imageset/usdc_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdc_wallet.imageset/usdc_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdc_wallet.imageset/usdc_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdp_wallet.imageset/usdp_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdp_wallet.imageset/usdp_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdp_wallet.imageset/usdp_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdp_wallet.imageset/usdp_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usds_wallet.imageset/usds_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usds_wallet.imageset/usds_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usds_wallet.imageset/usds_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usds_wallet.imageset/usds_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdt_wallet.imageset/usdt_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdt_wallet.imageset/usdt_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdt_wallet.imageset/usdt_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdt_wallet.imageset/usdt_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/verse_wallet.imageset/verse_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/verse_wallet.imageset/verse_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/woo_wallet.imageset/woo_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/woo_wallet.imageset/woo_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/woo_wallet.imageset/woo_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/woo_wallet.imageset/woo_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/woo_wallet.imageset/woo_wallet_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/woo_wallet.imageset/woo_wallet_dark.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/xcn_wallet.imageset/xcn_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/xcn_wallet.imageset/xcn_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/xcn_wallet.imageset/xcn_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/xcn_wallet.imageset/xcn_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/xcn_wallet.imageset/xcn_wallet_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/xcn_wallet.imageset/xcn_wallet_dark.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/clipboard.imageset/clipboard_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/clipboard.imageset/clipboard_dark@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/clipboard.imageset/clipboard_dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/clipboard.imageset/clipboard_dark@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_close.imageset/invisible_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_close.imageset/invisible_dark@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_close.imageset/invisible_dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/eye_close.imageset/invisible_dark@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/adamant_token.imageset/adamant_token@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/adamant_token.imageset/adamant_token@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/adamant_token.imageset/adamant_token@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Icons/adamant_token.imageset/adamant_token@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/bitz_row_logo.imageset/bitz_row_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/bitz_row_logo.imageset/bitz_row_logo@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/bitz_row_logo.imageset/bitz_row_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/bitz_row_logo.imageset/bitz_row_logo@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/idcm_row_logo.imageset/idcm_row_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/idcm_row_logo.imageset/idcm_row_logo@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/idcm_row_logo.imageset/idcm_row_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/idcm_row_logo.imageset/idcm_row_logo@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/privateKey_row.imageset/privateKey_row@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/privateKey_row.imageset/privateKey_row@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/privateKey_row.imageset/privateKey_row@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/privateKey_row.imageset/privateKey_row@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_buy-coins.imageset/row_buy-coins@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_buy-coins.imageset/row_buy-coins@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_buy-coins.imageset/row_buy-coins@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_buy-coins.imageset/row_buy-coins@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_coinmarket.imageset/coinmarket@3x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_coinmarket.imageset/coinmarket@3x-2.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_coinmarket.imageset/coinmarket@3x-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_coinmarket.imageset/coinmarket@3x-3.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_contribute_to_code.imageset/to_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_contribute_to_code.imageset/to_code.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_crashlytics.imageset/crashlytics@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_crashlytics.imageset/crashlytics@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_crashlytics.imageset/crashlytics@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_crashlytics.imageset/crashlytics@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_email.imageset/row_email 18-58-57-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_email.imageset/row_email 18-58-57-57.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_free-tokens.imageset/row_free-tokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_free-tokens.imageset/row_free-tokens.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_whitepapper.imageset/row_whitepapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_whitepapper.imageset/row_whitepapper.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_FaceID.imageset/Stripe_FaceID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_FaceID.imageset/Stripe_FaceID.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_Pinpad.imageset/stripe_pinpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_Pinpad.imageset/stripe_pinpad.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_TouchID.imageset/Stripe_TouchID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_TouchID.imageset/Stripe_TouchID.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Swipe actions/swipe_block.imageset/cross@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Swipe actions/swipe_block.imageset/cross@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Swipe actions/swipe_block.imageset/cross@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Swipe actions/swipe_block.imageset/cross@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Swipe actions/swipe_more.imageset/swipe_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Swipe actions/swipe_more.imageset/swipe_more.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage1.imageset/img-infocards-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage1.imageset/img-infocards-1.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage2.imageset/img-infocards-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage2.imageset/img-infocards-2.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage3.imageset/img-infocards-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage3.imageset/img-infocards-3.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage4.imageset/img-infocards-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage4.imageset/img-infocards-4.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage5.imageset/img-infocards-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage5.imageset/img-infocards-5.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/checkMarkIcon.imageset/checkMarkIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/checkMarkIcon.imageset/checkMarkIcon@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/checkMarkIcon.imageset/checkMarkIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/checkMarkIcon.imageset/checkMarkIcon@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/downloadIcon.imageset/downloadIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/downloadIcon.imageset/downloadIcon@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/downloadIcon.imageset/downloadIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/downloadIcon.imageset/downloadIcon@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/playVideoIcon.imageset/playVideoIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/playVideoIcon.imageset/playVideoIcon@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/playVideoIcon.imageset/playVideoIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/playVideoIcon.imageset/playVideoIcon@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/floki_wallet.imageset/floki_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/floki_wallet.imageset/floki_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/floki_wallet.imageset/floki_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/floki_wallet.imageset/floki_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/gt_wallet_row.imageset/gt_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/gt_wallet_row.imageset/gt_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/matic_wallet.imageset/matic_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/matic_wallet.imageset/matic_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/matic_wallet.imageset/matic_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/matic_wallet.imageset/matic_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/storj_wallet.imageset/storj_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/storj_wallet.imageset/storj_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/storj_wallet.imageset/storj_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/storj_wallet.imageset/storj_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/verse_wallet.imageset/verse_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/verse_wallet.imageset/verse_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/verse_wallet.imageset/verse_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/verse_wallet.imageset/verse_wallet@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_chat_adamant.imageset/row_chat_adamant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_chat_adamant.imageset/row_chat_adamant.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_contribute_to_code.imageset/to_code@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_contribute_to_code.imageset/to_code@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_contribute_to_code.imageset/to_code@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_contribute_to_code.imageset/to_code@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_free-tokens.imageset/row_free-tokens@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_free-tokens.imageset/row_free-tokens@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_free-tokens.imageset/row_free-tokens@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_free-tokens.imageset/row_free-tokens@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_whitepapper.imageset/row_whitepapper@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_whitepapper.imageset/row_whitepapper@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_whitepapper.imageset/row_whitepapper@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_whitepapper.imageset/row_whitepapper@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_FaceID.imageset/Stripe_FaceID@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_FaceID.imageset/Stripe_FaceID@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_FaceID.imageset/Stripe_FaceID@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_FaceID.imageset/Stripe_FaceID@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_Pinpad.imageset/stripe_pinpad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_Pinpad.imageset/stripe_pinpad@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_Pinpad.imageset/stripe_pinpad@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_Pinpad.imageset/stripe_pinpad@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Swipe actions/swipe_more.imageset/swipe_more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Swipe actions/swipe_more.imageset/swipe_more@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Swipe actions/swipe_more.imageset/swipe_more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Swipe actions/swipe_more.imageset/swipe_more@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/TransactionStatus/status_failed.imageset/Failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/TransactionStatus/status_failed.imageset/Failed.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage1.imageset/img-infocards-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage1.imageset/img-infocards-1@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage1.imageset/img-infocards-1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage1.imageset/img-infocards-1@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage2.imageset/img-infocards-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage2.imageset/img-infocards-2@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage2.imageset/img-infocards-2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage2.imageset/img-infocards-2@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage3.imageset/img-infocards-3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage3.imageset/img-infocards-3@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage3.imageset/img-infocards-3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage3.imageset/img-infocards-3@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage4.imageset/img-infocards-4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage4.imageset/img-infocards-4@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage4.imageset/img-infocards-4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage4.imageset/img-infocards-4@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage5.imageset/img-infocards-5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage5.imageset/img-infocards-5@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage5.imageset/img-infocards-5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Welcome/SlideImage5.imageset/img-infocards-5@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/defaultFileIcon.imageset/file-default-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/defaultFileIcon.imageset/file-default-box.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/adamant_wallet.imageset/adamant_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/adamant_wallet.imageset/adamant_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bitcoin_wallet.imageset/bitcoin_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bitcoin_wallet.imageset/bitcoin_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bnb_wallet_row.imageset/bnb_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bnb_wallet_row.imageset/bnb_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/busd_wallet_row.imageset/busd_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/busd_wallet_row.imageset/busd_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bzz_wallet_row.imageset/bzz_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bzz_wallet_row.imageset/bzz_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dai_wallet_row.imageset/dai_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dai_wallet_row.imageset/dai_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dash_wallet_row.imageset/dash_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dash_wallet_row.imageset/dash_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/doge_wallet_row.imageset/doge_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/doge_wallet_row.imageset/doge_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ens_wallet_row.imageset/ens_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ens_wallet_row.imageset/ens_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ethereum_wallet.imageset/ethereum_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ethereum_wallet.imageset/ethereum_wallet.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/flux_wallet_row.imageset/flux_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/flux_wallet_row.imageset/flux_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/gt_notification.imageset/gt_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/gt_notification.imageset/gt_notification.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/gt_wallet_row.imageset/gt_wallet_row@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/gt_wallet_row.imageset/gt_wallet_row@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/gt_wallet_row.imageset/gt_wallet_row@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/gt_wallet_row.imageset/gt_wallet_row@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/hot_wallet_row.imageset/hot_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/hot_wallet_row.imageset/hot_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/inj_wallet_row.imageset/inj_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/inj_wallet_row.imageset/inj_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/link_wallet_row.imageset/link_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/link_wallet_row.imageset/link_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/mana_wallet_row.imageset/mana_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/mana_wallet_row.imageset/mana_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/paxg_wallet_row.imageset/paxg_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/paxg_wallet_row.imageset/paxg_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/qnt_wallet.imageset/qnt_wallet_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/qnt_wallet.imageset/qnt_wallet_dark@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/qnt_wallet.imageset/qnt_wallet_dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/qnt_wallet.imageset/qnt_wallet_dark@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/qnt_wallet_row.imageset/qnt_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/qnt_wallet_row.imageset/qnt_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ren_wallet.imageset/ren_wallet_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ren_wallet.imageset/ren_wallet_dark@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ren_wallet.imageset/ren_wallet_dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ren_wallet.imageset/ren_wallet_dark@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ren_wallet_row.imageset/ren_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ren_wallet_row.imageset/ren_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/skl_wallet.imageset/skl_wallet_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/skl_wallet.imageset/skl_wallet_dark@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/skl_wallet.imageset/skl_wallet_dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/skl_wallet.imageset/skl_wallet_dark@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/skl_wallet_row.imageset/skl_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/skl_wallet_row.imageset/skl_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snt_wallet_row.imageset/snt_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snt_wallet_row.imageset/snt_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snx_wallet.imageset/snx_wallet_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snx_wallet.imageset/snx_wallet_dark@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snx_wallet.imageset/snx_wallet_dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snx_wallet.imageset/snx_wallet_dark@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snx_wallet_row.imageset/snx_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snx_wallet_row.imageset/snx_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/tusd_wallet_row.imageset/tusd_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/tusd_wallet_row.imageset/tusd_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/uni_wallet_row.imageset/uni_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/uni_wallet_row.imageset/uni_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdc_wallet_row.imageset/usdc_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdc_wallet_row.imageset/usdc_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdp_wallet_row.imageset/usdp_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdp_wallet_row.imageset/usdp_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usds_wallet_row.imageset/usds_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usds_wallet_row.imageset/usds_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdt_wallet_row.imageset/usdt_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/usdt_wallet_row.imageset/usdt_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/woo_wallet.imageset/woo_wallet_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/woo_wallet.imageset/woo_wallet_dark@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/woo_wallet.imageset/woo_wallet_dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/woo_wallet.imageset/woo_wallet_dark@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/woo_wallet_row.imageset/woo_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/woo_wallet_row.imageset/woo_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/xcn_wallet.imageset/xcn_wallet_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/xcn_wallet.imageset/xcn_wallet_dark@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/xcn_wallet.imageset/xcn_wallet_dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/xcn_wallet.imageset/xcn_wallet_dark@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/xcn_wallet_row.imageset/xcn_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/xcn_wallet_row.imageset/xcn_wallet_row.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Share_button_small.imageset/Share_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Share_button_small.imageset/Share_button.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Income_Outcome/Income_arrow.imageset/Income_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Income_Outcome/Income_arrow.imageset/Income_arrow.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_Notifications.imageset/row_Notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_Notifications.imageset/row_Notifications.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_chat_adamant.imageset/row_chat_adamant@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_chat_adamant.imageset/row_chat_adamant@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_chat_adamant.imageset/row_chat_adamant@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_chat_adamant.imageset/row_chat_adamant@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_email.imageset/row_email@2x 18-58-55-322.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_email.imageset/row_email@2x 18-58-55-322.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_email.imageset/row_email@3x 18-58-53-518.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_email.imageset/row_email@3x 18-58-53-518.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_vote-delegates.imageset/row_vote-delegates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_vote-delegates.imageset/row_vote-delegates.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_QRCamera.imageset/stripe_qr-camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_QRCamera.imageset/stripe_qr-camera.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_QRLibrary.imageset/stripe_qr-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_QRLibrary.imageset/stripe_qr-library.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_TouchID.imageset/Stripe_TouchID@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_TouchID.imageset/Stripe_TouchID@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_TouchID.imageset/Stripe_TouchID@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_TouchID.imageset/Stripe_TouchID@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/TransactionStatus/status_failed.imageset/Failed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/TransactionStatus/status_failed.imageset/Failed@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/TransactionStatus/status_failed.imageset/Failed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/TransactionStatus/status_failed.imageset/Failed@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/TransactionStatus/status_pending.imageset/Pending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/TransactionStatus/status_pending.imageset/Pending.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/TransactionStatus/status_success.imageset/Success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/TransactionStatus/status_success.imageset/Success.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Transfers/transfer-in_bot.imageset/transfer-in_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Transfers/transfer-in_bot.imageset/transfer-in_bot.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Transfers/transfer-in_top.imageset/transfer-in_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Transfers/transfer-in_top.imageset/transfer-in_top.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/download-circular.imageset/download-circular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/files/download-circular.imageset/download-circular.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/adamant_wallet.imageset/adamant_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/adamant_wallet.imageset/adamant_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/adamant_wallet.imageset/adamant_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/adamant_wallet.imageset/adamant_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bitcoin_wallet.imageset/bitcoin_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bitcoin_wallet.imageset/bitcoin_wallet@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bitcoin_wallet.imageset/bitcoin_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bitcoin_wallet.imageset/bitcoin_wallet@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bnb_notification.imageset/bnb_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bnb_notification.imageset/bnb_notification.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bnb_wallet_row.imageset/bnb_wallet_row@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bnb_wallet_row.imageset/bnb_wallet_row@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bnb_wallet_row.imageset/bnb_wallet_row@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bnb_wallet_row.imageset/bnb_wallet_row@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bzz_notification.imageset/bzz_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bzz_notification.imageset/bzz_notification.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bzz_wallet_row.imageset/bzz_wallet_row@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bzz_wallet_row.imageset/bzz_wallet_row@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bzz_wallet_row.imageset/bzz_wallet_row@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bzz_wallet_row.imageset/bzz_wallet_row@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dai_notification.imageset/dai_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dai_notification.imageset/dai_notification.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dai_wallet_row.imageset/dai_wallet_row@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dai_wallet_row.imageset/dai_wallet_row@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dai_wallet_row.imageset/dai_wallet_row@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dai_wallet_row.imageset/dai_wallet_row@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ens_notification.imageset/ens_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ens_notification.imageset/ens_notification.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ens_wallet_row.imageset/ens_wallet_row@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ens_wallet_row.imageset/ens_wallet_row@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ens_wallet_row.imageset/ens_wallet_row@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ens_wallet_row.imageset/ens_wallet_row@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/floki_wallet_row.imageset/floki_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/floki_wallet_row.imageset/floki_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/hot_notification.imageset/hot_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/hot_notification.imageset/hot_notification.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/hot_wallet_row.imageset/hot_wallet_row@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/hot_wallet_row.imageset/hot_wallet_row@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/hot_wallet_row.imageset/hot_wallet_row@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/hot_wallet_row.imageset/hot_wallet_row@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/inj_notification.imageset/inj_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/inj_notification.imageset/inj_notification.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/inj_wallet_row.imageset/inj_wallet_row@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/inj_wallet_row.imageset/inj_wallet_row@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/inj_wallet_row.imageset/inj_wallet_row@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/inj_wallet_row.imageset/inj_wallet_row@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/matic_wallet_row.imageset/matic_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/matic_wallet_row.imageset/matic_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/qnt_notification.imageset/qnt_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/qnt_notification.imageset/qnt_notification.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/qnt_wallet_row.imageset/qnt_wallet_row@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/qnt_wallet_row.imageset/qnt_wallet_row@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/qnt_wallet_row.imageset/qnt_wallet_row@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/qnt_wallet_row.imageset/qnt_wallet_row@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ren_notification.imageset/ren_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ren_notification.imageset/ren_notification.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ren_wallet_row.imageset/ren_wallet_row@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ren_wallet_row.imageset/ren_wallet_row@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ren_wallet_row.imageset/ren_wallet_row@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ren_wallet_row.imageset/ren_wallet_row@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/skl_notification.imageset/skl_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/skl_notification.imageset/skl_notification.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/skl_wallet_row.imageset/skl_wallet_row@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/skl_wallet_row.imageset/skl_wallet_row@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/skl_wallet_row.imageset/skl_wallet_row@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/skl_wallet_row.imageset/skl_wallet_row@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snt_notification.imageset/snt_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snt_notification.imageset/snt_notification.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snt_wallet_row.imageset/snt_wallet_row@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snt_wallet_row.imageset/snt_wallet_row@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snt_wallet_row.imageset/snt_wallet_row@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snt_wallet_row.imageset/snt_wallet_row@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snx_notification.imageset/snx_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snx_notification.imageset/snx_notification.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snx_wallet_row.imageset/snx_wallet_row@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snx_wallet_row.imageset/snx_wallet_row@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snx_wallet_row.imageset/snx_wallet_row@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/snx_wallet_row.imageset/snx_wallet_row@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/storj_wallet_row.imageset/storj_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/storj_wallet_row.imageset/storj_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/uni_notification.imageset/uni_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/uni_notification.imageset/uni_notification.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/uni_wallet_row.imageset/uni_wallet_row@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/uni_wallet_row.imageset/uni_wallet_row@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/uni_wallet_row.imageset/uni_wallet_row@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/uni_wallet_row.imageset/uni_wallet_row@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/verse_wallet_row.imageset/verse_wallet_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/verse_wallet_row.imageset/verse_wallet_row.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/woo_notification.imageset/woo_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/woo_notification.imageset/woo_notification.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/woo_wallet_row.imageset/woo_wallet_row@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/woo_wallet_row.imageset/woo_wallet_row@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/woo_wallet_row.imageset/woo_wallet_row@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/woo_wallet_row.imageset/woo_wallet_row@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/xcn_notification.imageset/xcn_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/xcn_notification.imageset/xcn_notification.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/xcn_wallet_row.imageset/xcn_wallet_row@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/xcn_wallet_row.imageset/xcn_wallet_row@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/xcn_wallet_row.imageset/xcn_wallet_row@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/xcn_wallet_row.imageset/xcn_wallet_row@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Share_button_small.imageset/Share_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Share_button_small.imageset/Share_button@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Share_button_small.imageset/Share_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Buttons/Share_button_small.imageset/Share_button@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Income_Outcome/Income_arrow.imageset/Income_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Income_Outcome/Income_arrow.imageset/Income_arrow@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Income_Outcome/Income_arrow.imageset/Income_arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Income_Outcome/Income_arrow.imageset/Income_arrow@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Income_Outcome/Outcome_arrow.imageset/Outcome_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Income_Outcome/Outcome_arrow.imageset/Outcome_arrow.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_Notifications.imageset/row_Notifications@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_Notifications.imageset/row_Notifications@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_Notifications.imageset/row_Notifications@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Row/row_Notifications.imageset/row_Notifications@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_QRCamera.imageset/stripe_qr-camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_QRCamera.imageset/stripe_qr-camera@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_QRCamera.imageset/stripe_qr-camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Stripe/Stripe_QRCamera.imageset/stripe_qr-camera@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/TransactionStatus/status_pending.imageset/Pending@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/TransactionStatus/status_pending.imageset/Pending@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/TransactionStatus/status_pending.imageset/Pending@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/TransactionStatus/status_pending.imageset/Pending@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/TransactionStatus/status_success.imageset/Success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/TransactionStatus/status_success.imageset/Success@2x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/TransactionStatus/status_success.imageset/Success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/TransactionStatus/status_success.imageset/Success@3x.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/TransactionStatus/status_updating.imageset/Updating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/TransactionStatus/status_updating.imageset/Updating.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Transfers/transfer-out_bot.imageset/transfer-out_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Transfers/transfer-out_bot.imageset/transfer-out_bot.png -------------------------------------------------------------------------------- /CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Transfers/transfer-out_top.imageset/transfer-out_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/CommonKit/Sources/CommonKit/Assets/Shared.xcassets/Transfers/transfer-out_top.imageset/transfer-out_top.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bnb_notification.imageset/bnb_notification@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bnb_notification.imageset/bnb_notification@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bnb_notification.imageset/bnb_notification@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bnb_notification.imageset/bnb_notification@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/busd_notification.imageset/busd_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/busd_notification.imageset/busd_notification.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/busd_wallet_row.imageset/busd_wallet_row@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/busd_wallet_row.imageset/busd_wallet_row@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/busd_wallet_row.imageset/busd_wallet_row@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/busd_wallet_row.imageset/busd_wallet_row@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bzz_notification.imageset/bzz_notification@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bzz_notification.imageset/bzz_notification@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bzz_notification.imageset/bzz_notification@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/bzz_notification.imageset/bzz_notification@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dai_notification.imageset/dai_notification@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dai_notification.imageset/dai_notification@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dai_notification.imageset/dai_notification@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dai_notification.imageset/dai_notification@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dash_notification.imageset/dash_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dash_notification.imageset/dash_notification.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dash_wallet_row.imageset/dash_wallet_row@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dash_wallet_row.imageset/dash_wallet_row@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dash_wallet_row.imageset/dash_wallet_row@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/dash_wallet_row.imageset/dash_wallet_row@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/doge_notification.imageset/doge_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/doge_notification.imageset/doge_notification.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/doge_wallet_row.imageset/doge_wallet_row@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/doge_wallet_row.imageset/doge_wallet_row@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/doge_wallet_row.imageset/doge_wallet_row@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/doge_wallet_row.imageset/doge_wallet_row@3x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ens_notification.imageset/ens_notification@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ens_notification.imageset/ens_notification@2x.png -------------------------------------------------------------------------------- /AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ens_notification.imageset/ens_notification@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adamant-im/adamant-iOS/HEAD/AdamantWalletsKit/Sources/AdamantWalletsKit/Wallets.xcassets/ens_notification.imageset/ens_notification@3x.png --------------------------------------------------------------------------------