├── .circleci └── config.yml ├── .gitignore ├── .prettierignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CONTRIBUTING.md ├── CSP.md ├── LICENSE ├── README.md ├── angular.json ├── app-template ├── afterPack-template.js ├── apply.js ├── bitpay │ ├── GoogleService-Info.plist │ ├── appConfig.json │ ├── google-services.json │ ├── img │ │ ├── 128x128.png │ │ ├── 16x16.png │ │ ├── 24x24.png │ │ ├── 256x256.png │ │ ├── 32x32.png │ │ ├── 48x48.png │ │ ├── 64x64.png │ │ ├── 96x96.png │ │ ├── favicon.ico │ │ ├── icon-flat.svg │ │ ├── icon.png │ │ ├── logo-negative.png │ │ ├── logo-negative.svg │ │ ├── logo.ico │ │ ├── logo.png │ │ ├── logo.svg │ │ └── onboarding │ │ │ ├── backup-warning.svg │ │ │ ├── push-notifications.svg │ │ │ ├── tour-control.svg │ │ │ ├── tour-currency.svg │ │ │ ├── tour-phone.svg │ │ │ └── warning.svg │ └── sass │ │ └── overrides.scss ├── config-template.xml ├── copay │ ├── GoogleService-Info.plist │ ├── appConfig.json │ ├── google-services.json │ ├── img │ │ ├── 128x128.png │ │ ├── 16x16.png │ │ ├── 24x24.png │ │ ├── 256x256.png │ │ ├── 32x32.png │ │ ├── 48x48.png │ │ ├── 512x512.png │ │ ├── 64x64.png │ │ ├── 96x96.png │ │ ├── favicon.ico │ │ ├── icon-bitcoin.svg │ │ ├── icon-flat.svg │ │ ├── icon.png │ │ ├── logo-negative.png │ │ ├── logo-negative.svg │ │ ├── logo.icns │ │ ├── logo.ico │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── onboarding │ │ │ ├── backup-warning.svg │ │ │ ├── push-notifications.svg │ │ │ ├── tour-control.svg │ │ │ ├── tour-currency.svg │ │ │ ├── tour-phone.svg │ │ │ └── warning.svg │ │ └── tab-icons │ │ │ ├── ico-home-selected.svg │ │ │ ├── ico-home.svg │ │ │ ├── ico-receive-selected.svg │ │ │ ├── ico-receive.svg │ │ │ ├── ico-scan-selected.svg │ │ │ ├── ico-scan.svg │ │ │ ├── ico-send-selected.svg │ │ │ ├── ico-send.svg │ │ │ ├── ico-settings-selected.svg │ │ │ └── ico-settings.svg │ └── sass │ │ └── overrides.scss ├── index-template.html ├── ionic.config-template.json ├── manifest.ionic-template.json ├── particl-dev │ ├── GoogleService-Info.plist │ ├── appConfig.json │ ├── google-services.json │ ├── img │ │ ├── 128x128.png │ │ ├── 16x16.png │ │ ├── 24x24.png │ │ ├── 256x256.png │ │ ├── 32x32.png │ │ ├── 48x48.png │ │ ├── 512x512.png │ │ ├── 64x64.png │ │ ├── 96x96.png │ │ ├── favicon.ico │ │ ├── icon-bitcoin.svg │ │ ├── icon-flat.svg │ │ ├── icon.png │ │ ├── logo-negative.png │ │ ├── logo-negative.svg │ │ ├── logo.icns │ │ ├── logo.ico │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── onboarding │ │ │ ├── backup-warning.svg │ │ │ ├── push-notifications.svg │ │ │ ├── tour-control.svg │ │ │ ├── tour-currency.svg │ │ │ ├── tour-phone.svg │ │ │ └── warning.svg │ │ └── tab-icons │ │ │ ├── ico-home-selected.svg │ │ │ ├── ico-home.svg │ │ │ ├── ico-receive-selected.svg │ │ │ ├── ico-receive.svg │ │ │ ├── ico-scan-selected.svg │ │ │ ├── ico-scan.svg │ │ │ ├── ico-send-selected.svg │ │ │ ├── ico-send.svg │ │ │ ├── ico-settings-selected.svg │ │ │ └── ico-settings.svg │ └── sass │ │ └── overrides.scss ├── particl │ ├── GoogleService-Info.plist │ ├── appConfig.json │ ├── google-services.json │ ├── img │ │ ├── 128x128.png │ │ ├── 16x16.png │ │ ├── 24x24.png │ │ ├── 256x256.png │ │ ├── 32x32.png │ │ ├── 48x48.png │ │ ├── 512x512.png │ │ ├── 64x64.png │ │ ├── 96x96.png │ │ ├── favicon.ico │ │ ├── icon-bitcoin.svg │ │ ├── icon-flat.svg │ │ ├── icon.png │ │ ├── logo-negative.png │ │ ├── logo-negative.svg │ │ ├── logo.icns │ │ ├── logo.ico │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── onboarding │ │ │ ├── backup-warning.svg │ │ │ ├── push-notifications.svg │ │ │ ├── tour-control.svg │ │ │ ├── tour-currency.svg │ │ │ ├── tour-phone.svg │ │ │ └── warning.svg │ │ └── tab-icons │ │ │ ├── ico-home-selected.svg │ │ │ ├── ico-home.svg │ │ │ ├── ico-receive-selected.svg │ │ │ ├── ico-receive.svg │ │ │ ├── ico-scan-selected.svg │ │ │ ├── ico-scan.svg │ │ │ ├── ico-send-selected.svg │ │ │ ├── ico-send.svg │ │ │ ├── ico-settings-selected.svg │ │ │ └── ico-settings.svg │ └── sass │ │ └── overrides.scss └── setup-win.iss ├── backupRecovery.md ├── electron └── main.js ├── i18n ├── crowdin_download.js ├── crowdin_update.js ├── docs │ ├── appstore_de.txt │ ├── appstore_en.txt │ ├── appstore_es.txt │ ├── appstore_fr.txt │ ├── appstore_it.txt │ ├── appstore_ja.txt │ ├── appstore_ko.txt │ ├── appstore_nl.txt │ ├── appstore_pl.txt │ ├── appstore_pt.txt │ ├── appstore_ru.txt │ ├── appstore_zh.txt │ ├── updateinfo_de.txt │ ├── updateinfo_en.txt │ ├── updateinfo_es.txt │ ├── updateinfo_fr.txt │ ├── updateinfo_it.txt │ ├── updateinfo_ja.txt │ ├── updateinfo_ko.txt │ ├── updateinfo_nl.txt │ ├── updateinfo_pl.txt │ ├── updateinfo_pt.txt │ ├── updateinfo_ru.txt │ └── updateinfo_zh.txt └── template.pot ├── package-lock.json ├── package.json ├── protractor.conf.js ├── resources ├── bitpay │ ├── android │ │ ├── app-store │ │ │ ├── fcm_push_icon.png │ │ │ ├── feature-graphic-1024.png │ │ │ ├── icon-1024x1024.png │ │ │ └── icon-512x512.png │ │ ├── icon │ │ │ ├── drawable-hdpi │ │ │ │ └── fcm_push_icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── fcm_push_icon.png │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable-xhdpi │ │ │ │ └── fcm_push_icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── fcm_push_icon.png │ │ │ ├── drawable-xxxhdpi │ │ │ │ └── fcm_push_icon.png │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ │ └── ic_launcher_background.xml │ │ └── splash │ │ │ ├── drawable-land-hdpi-screen.png │ │ │ ├── drawable-land-ldpi-screen.png │ │ │ ├── drawable-land-mdpi-screen.png │ │ │ ├── drawable-land-xhdpi-screen.png │ │ │ ├── drawable-land-xxhdpi-screen.png │ │ │ ├── drawable-land-xxxhdpi-screen.png │ │ │ ├── drawable-port-hdpi-screen.png │ │ │ ├── drawable-port-ldpi-screen.png │ │ │ ├── drawable-port-mdpi-screen.png │ │ │ ├── drawable-port-xhdpi-screen.png │ │ │ ├── drawable-port-xxhdpi-screen.png │ │ │ └── drawable-port-xxxhdpi-screen.png │ ├── ios │ │ ├── app-store │ │ │ └── icon-1024.png │ │ ├── icon │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-50.png │ │ │ ├── icon-50@2x.png │ │ │ ├── icon-60.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ ├── icon-83.5@2x.png │ │ │ ├── icon-small.png │ │ │ ├── icon-small@2x.png │ │ │ ├── icon-small@3x.png │ │ │ ├── icon.png │ │ │ └── icon@2x.png │ │ └── splash │ │ │ ├── Default@2x~universal~anyany.png │ │ │ └── Default@3x~universal~anyany.png │ ├── linux │ │ ├── favicon.ico │ │ └── icon.png │ ├── mac │ │ ├── app.icns │ │ ├── dmg-background.tiff │ │ └── volume-icon.icns │ └── windows │ │ ├── app-store │ │ └── icon-300x300.png │ │ ├── icon.ico │ │ ├── icon │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-240.png │ │ ├── Square30x30Logo.scale-100.png │ │ ├── Square310x310Logo.scale-100.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-240.png │ │ ├── Square70x70Logo.scale-100.png │ │ ├── Square71x71Logo.scale-100.png │ │ ├── Square71x71Logo.scale-240.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-240.png │ │ ├── Wide310x150Logo.scale-100.png │ │ └── Wide310x150Logo.scale-240.png │ │ └── splash │ │ ├── SplashScreen.scale-100.png │ │ └── SplashScreenPhone.scale-240.png ├── copay │ ├── android │ │ ├── app-store │ │ │ ├── fcm_push_icon.png │ │ │ ├── feature-graphic-1024.png │ │ │ ├── icon-1024x1024.png │ │ │ └── icon-512x512.png │ │ ├── icon │ │ │ ├── drawable-hdpi │ │ │ │ └── fcm_push_icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── fcm_push_icon.png │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable-xhdpi │ │ │ │ └── fcm_push_icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── fcm_push_icon.png │ │ │ ├── drawable-xxxhdpi │ │ │ │ └── fcm_push_icon.png │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ │ └── ic_launcher_background.xml │ │ └── splash │ │ │ ├── drawable-land-hdpi-screen.png │ │ │ ├── drawable-land-ldpi-screen.png │ │ │ ├── drawable-land-mdpi-screen.png │ │ │ ├── drawable-land-xhdpi-screen.png │ │ │ ├── drawable-land-xxhdpi-screen.png │ │ │ ├── drawable-land-xxxhdpi-screen.png │ │ │ ├── drawable-port-hdpi-screen.png │ │ │ ├── drawable-port-ldpi-screen.png │ │ │ ├── drawable-port-mdpi-screen.png │ │ │ ├── drawable-port-xhdpi-screen.png │ │ │ ├── drawable-port-xxhdpi-screen.png │ │ │ └── drawable-port-xxxhdpi-screen.png │ ├── ios │ │ ├── app-store │ │ │ └── icon-1024.png │ │ ├── icon │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-50.png │ │ │ ├── icon-50@2x.png │ │ │ ├── icon-60.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ ├── icon-83.5@2x.png │ │ │ ├── icon-small.png │ │ │ ├── icon-small@2x.png │ │ │ ├── icon-small@3x.png │ │ │ ├── icon.png │ │ │ └── icon@2x.png │ │ └── splash │ │ │ ├── Default@2x~universal~anyany.png │ │ │ └── Default@3x~universal~anyany.png │ ├── linux │ │ ├── favicon.ico │ │ └── icon.png │ ├── mac │ │ ├── app.icns │ │ ├── dmg-background.tiff │ │ └── volume-icon.icns │ └── windows │ │ ├── app-store │ │ └── icon-300x300.png │ │ ├── icon.ico │ │ ├── icon │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-240.png │ │ ├── Square30x30Logo.scale-100.png │ │ ├── Square310x310Logo.scale-100.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-240.png │ │ ├── Square70x70Logo.scale-100.png │ │ ├── Square71x71Logo.scale-100.png │ │ ├── Square71x71Logo.scale-240.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-240.png │ │ ├── Wide310x150Logo.scale-100.png │ │ └── Wide310x150Logo.scale-240.png │ │ └── splash │ │ ├── SplashScreen.scale-100.png │ │ └── SplashScreenPhone.scale-240.png ├── generate.sh ├── install.sh ├── particl-copay-dev │ ├── android │ │ ├── app-store │ │ │ ├── fcm_push_icon.png │ │ │ ├── feature-graphic-1024.png │ │ │ ├── icon-1024x1024.png │ │ │ └── icon-512x512.png │ │ ├── icon │ │ │ ├── drawable-hdpi │ │ │ │ └── fcm_push_icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── fcm_push_icon.png │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable-xhdpi │ │ │ │ └── fcm_push_icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── fcm_push_icon.png │ │ │ ├── drawable-xxxhdpi │ │ │ │ └── fcm_push_icon.png │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ │ └── ic_launcher_background.xml │ │ └── splash │ │ │ ├── drawable-land-hdpi-screen.png │ │ │ ├── drawable-land-ldpi-screen.png │ │ │ ├── drawable-land-mdpi-screen.png │ │ │ ├── drawable-land-xhdpi-screen.png │ │ │ ├── drawable-land-xxhdpi-screen.png │ │ │ ├── drawable-land-xxxhdpi-screen.png │ │ │ ├── drawable-port-hdpi-screen.png │ │ │ ├── drawable-port-ldpi-screen.png │ │ │ ├── drawable-port-mdpi-screen.png │ │ │ ├── drawable-port-xhdpi-screen.png │ │ │ ├── drawable-port-xxhdpi-screen.png │ │ │ └── drawable-port-xxxhdpi-screen.png │ ├── ios │ │ ├── app-store │ │ │ └── icon-1024.png │ │ ├── icon │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-50.png │ │ │ ├── icon-50@2x.png │ │ │ ├── icon-60.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ ├── icon-83.5@2x.png │ │ │ ├── icon-small.png │ │ │ ├── icon-small@2x.png │ │ │ ├── icon-small@3x.png │ │ │ ├── icon.png │ │ │ └── icon@2x.png │ │ └── splash │ │ │ ├── Default@2x~universal~anyany.png │ │ │ └── Default@3x~universal~anyany.png │ ├── linux │ │ ├── favicon.ico │ │ └── icon.png │ ├── mac │ │ ├── app.icns │ │ ├── dmg-background.tiff │ │ └── volume-icon.icns │ └── windows │ │ ├── app-store │ │ └── icon-300x300.png │ │ ├── icon.ico │ │ ├── icon │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-240.png │ │ ├── Square30x30Logo.scale-100.png │ │ ├── Square310x310Logo.scale-100.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-240.png │ │ ├── Square70x70Logo.scale-100.png │ │ ├── Square71x71Logo.scale-100.png │ │ ├── Square71x71Logo.scale-240.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-240.png │ │ ├── Wide310x150Logo.scale-100.png │ │ └── Wide310x150Logo.scale-240.png │ │ └── splash │ │ ├── SplashScreen.scale-100.png │ │ └── SplashScreenPhone.scale-240.png ├── particl-copay │ ├── android │ │ ├── app-store │ │ │ ├── feature-graphic-1024.png │ │ │ ├── icon-1024x1024.png │ │ │ └── icon-512x512.png │ │ ├── icon │ │ │ ├── drawable-hdpi │ │ │ │ └── fcm_push_icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── fcm_push_icon.png │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable-xhdpi │ │ │ │ └── fcm_push_icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── fcm_push_icon.png │ │ │ ├── drawable-xxxhdpi │ │ │ │ └── fcm_push_icon.png │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ │ └── ic_launcher_background.xml │ │ └── splash │ │ │ ├── drawable-land-hdpi-screen.png │ │ │ ├── drawable-land-ldpi-screen.png │ │ │ ├── drawable-land-mdpi-screen.png │ │ │ ├── drawable-land-xhdpi-screen.png │ │ │ ├── drawable-land-xxhdpi-screen.png │ │ │ ├── drawable-land-xxxhdpi-screen.png │ │ │ ├── drawable-port-hdpi-screen.png │ │ │ ├── drawable-port-ldpi-screen.png │ │ │ ├── drawable-port-mdpi-screen.png │ │ │ ├── drawable-port-xhdpi-screen.png │ │ │ ├── drawable-port-xxhdpi-screen.png │ │ │ └── drawable-port-xxxhdpi-screen.png │ ├── ios │ │ ├── app-store │ │ │ └── icon-1024.png │ │ ├── icon │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-50.png │ │ │ ├── icon-50@2x.png │ │ │ ├── icon-60.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ ├── icon-83.5@2x.png │ │ │ ├── icon-small.png │ │ │ ├── icon-small@2x.png │ │ │ ├── icon-small@3x.png │ │ │ ├── icon.png │ │ │ └── icon@2x.png │ │ └── splash │ │ │ ├── Default@2x~universal~anyany.png │ │ │ └── Default@3x~universal~anyany.png │ ├── linux │ │ ├── favicon.ico │ │ └── icon.png │ ├── mac │ │ ├── app.icns │ │ ├── dmg-background.tiff │ │ └── volume-icon.icns │ └── windows │ │ ├── app-store │ │ └── icon-300x300.png │ │ ├── icon.ico │ │ ├── icon │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-240.png │ │ ├── Square30x30Logo.scale-100.png │ │ ├── Square310x310Logo.scale-100.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-240.png │ │ ├── Square70x70Logo.scale-100.png │ │ ├── Square71x71Logo.scale-100.png │ │ ├── Square71x71Logo.scale-240.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-240.png │ │ ├── Wide310x150Logo.scale-100.png │ │ └── Wide310x150Logo.scale-240.png │ │ └── splash │ │ ├── SplashScreen.scale-100.png │ │ └── SplashScreenPhone.scale-240.png ├── readme.md └── src.sketch ├── src ├── app │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.html │ ├── app.module.ts │ ├── app.scss │ └── main.ts ├── assets │ ├── fonts │ │ ├── AmazonEmberDisplay_Bd.ttf │ │ ├── AmazonEmberDisplay_He.ttf │ │ ├── AmazonEmberDisplay_Lt.ttf │ │ ├── AmazonEmberDisplay_Md.ttf │ │ ├── AmazonEmberDisplay_Rg.ttf │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-Medium.woff │ │ ├── Roboto-Medium.woff2 │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Regular.woff │ │ ├── Roboto-Regular.woff2 │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ ├── icomoon.woff │ │ ├── ionicons.scss │ │ ├── noto-sans-bold.ttf │ │ ├── noto-sans-bold.woff │ │ ├── noto-sans-regular.ttf │ │ ├── noto-sans-regular.woff │ │ ├── noto-sans.scss │ │ ├── roboto-bold.ttf │ │ ├── roboto-bold.woff │ │ ├── roboto-bold.woff2 │ │ ├── roboto-light.ttf │ │ ├── roboto-light.woff │ │ ├── roboto-light.woff2 │ │ └── roboto.scss │ ├── i18n │ │ ├── de.po │ │ ├── en.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ko.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt.po │ │ ├── ru.po │ │ └── zh.po │ └── img │ │ ├── address-book-add.svg │ │ ├── backup │ │ ├── backup-warning.svg │ │ ├── no-screenshot.svg │ │ └── success.svg │ │ ├── bitcoin-cash-logo.svg │ │ ├── bitpay-card │ │ ├── bitpay-card-visa.svg │ │ └── icon-bitpay.svg │ │ ├── bitpay-wallet-qr-scan-guides.svg │ │ ├── bought-pending.svg │ │ ├── bought.svg │ │ ├── button-back.svg │ │ ├── buy-bitcoin.svg │ │ ├── check-white.svg │ │ ├── coinbase │ │ ├── coinbase-icon.png │ │ ├── coinbase-logo-white.svg │ │ └── coinbase-logo.png │ │ ├── contact-placeholder.svg │ │ ├── controls-ico-search.svg │ │ ├── disappointed-face.svg │ │ ├── favicon.ico │ │ ├── ghost-straight-face.svg │ │ ├── ghost-tongue-out.svg │ │ ├── gift-cards │ │ ├── amazon │ │ │ ├── amazon-gift-card.png │ │ │ ├── amazon-icon.svg │ │ │ ├── amazon-japan-gift-card.png │ │ │ └── amazon-logo.png │ │ ├── carnival-cruise-line │ │ │ ├── carnival-cruise-line-card.png │ │ │ ├── carnival-cruise-line-icon.png │ │ │ ├── carnival-cruise-line-icon.svg │ │ │ └── carnival-cruise-line-logo.svg │ │ ├── delta │ │ │ ├── delta-gift-card-white.png │ │ │ ├── delta-gift-card.png │ │ │ ├── delta-icon-white.svg │ │ │ ├── delta-icon.png │ │ │ ├── delta-logo-white.svg │ │ │ └── delta-logo.png │ │ ├── gift-cards-icon.svg │ │ ├── google-play │ │ │ ├── google-play-gift-card.png │ │ │ ├── google-play-icon.png │ │ │ └── google-play-logo.svg │ │ ├── home-depot │ │ │ ├── home-depot-card.png │ │ │ ├── home-depot-icon.svg │ │ │ └── home-depot-logo.svg │ │ ├── hotels.com │ │ │ ├── hotels.com-card.png │ │ │ ├── hotels.com-icon.svg │ │ │ └── hotels.com-logo.svg │ │ ├── mercado-libre │ │ │ ├── mercado-livre-card.png │ │ │ ├── mercado-livre-icon.svg │ │ │ └── mercado-livre-logo.png │ │ ├── royal-caribbean │ │ │ ├── royal-caribbean-card.png │ │ │ ├── royal-caribbean-icon.svg │ │ │ └── royal-caribbean-logo.svg │ │ ├── uber-eats │ │ │ ├── uber-eats-card.png │ │ │ ├── uber-eats-icon.svg │ │ │ └── uber-eats-logo.svg │ │ └── uber │ │ │ ├── uber-gift-card.png │ │ │ ├── uber-icon-large.svg │ │ │ ├── uber-icon.svg │ │ │ └── uber-logo.png │ │ ├── glidera │ │ ├── glidera-icon.png │ │ └── glidera-logo.png │ │ ├── green-check-circled.svg │ │ ├── happy-face.svg │ │ ├── ico-bug.svg │ │ ├── ico-chat.svg │ │ ├── ico-link.svg │ │ ├── ico-positive-feedback.svg │ │ ├── ico-receive.svg │ │ ├── ico-star-filled.svg │ │ ├── ico-star.svg │ │ ├── icon-arrow-right.svg │ │ ├── icon-bch-small.svg │ │ ├── icon-bch-symbol.svg │ │ ├── icon-bch-white.svg │ │ ├── icon-bitcoin-small.svg │ │ ├── icon-bitcoin-symbol.svg │ │ ├── icon-bitcoin-white.svg │ │ ├── icon-bitcoin.svg │ │ ├── icon-broadcasted.svg │ │ ├── icon-btc-small.svg │ │ ├── icon-btc-symbol.svg │ │ ├── icon-btc-white.svg │ │ ├── icon-bws-white.svg │ │ ├── icon-camera-toggle.svg │ │ ├── icon-card.svg │ │ ├── icon-check-selected.svg │ │ ├── icon-confirming-clear.svg │ │ ├── icon-contacts.svg │ │ ├── icon-credit-card.svg │ │ ├── icon-danger.svg │ │ ├── icon-delete.svg │ │ ├── icon-flash.svg │ │ ├── icon-heart.svg │ │ ├── icon-help-support.svg │ │ ├── icon-import.svg │ │ ├── icon-info-blue.svg │ │ ├── icon-link-external.svg │ │ ├── icon-lock-green.svg │ │ ├── icon-lock-white.svg │ │ ├── icon-lock-x.svg │ │ ├── icon-lock.svg │ │ ├── icon-minus.svg │ │ ├── icon-next.svg │ │ ├── icon-paperclip.svg │ │ ├── icon-part-small.svg │ │ ├── icon-part-symbol.svg │ │ ├── icon-part-white.svg │ │ ├── icon-particl.svg │ │ ├── icon-plus.svg │ │ ├── icon-proposal-pending.svg │ │ ├── icon-question-help.svg │ │ ├── icon-read-only.svg │ │ ├── icon-send-alt.svg │ │ ├── icon-settings.svg │ │ ├── icon-share.svg │ │ ├── icon-sigma.svg │ │ ├── icon-staking-white.svg │ │ ├── icon-star-review.svg │ │ ├── icon-swap.svg │ │ ├── icon-text-auditable.svg │ │ ├── icon-text-read-only.svg │ │ ├── icon-text-staking.svg │ │ ├── icon-text-testnet.svg │ │ ├── icon-tx-sent-outline.svg │ │ ├── icon-unlink.svg │ │ ├── icon-update.svg │ │ ├── icon-wallet-reverse.svg │ │ ├── icon-wallet-testnet.svg │ │ ├── icon-wallet.svg │ │ ├── icon-warning-circled.svg │ │ ├── icon-warning.png │ │ ├── icon-warning.svg │ │ ├── illustration-send-feedback.png │ │ ├── invoice-icon.svg │ │ ├── item-ico-addwallet.svg │ │ ├── item-ico-import.svg │ │ ├── mcc-icons │ │ ├── airplane.svg │ │ ├── art.svg │ │ ├── bicycle.svg │ │ ├── bitcoin-topup.svg │ │ ├── boat.svg │ │ ├── books.svg │ │ ├── bowling.svg │ │ ├── bug.svg │ │ ├── bus.svg │ │ ├── camera.svg │ │ ├── car.svg │ │ ├── clean.svg │ │ ├── clock.svg │ │ ├── cocktail.svg │ │ ├── coins.svg │ │ ├── computer.svg │ │ ├── default.svg │ │ ├── diamond-ring.svg │ │ ├── dollar-topup.svg │ │ ├── euro-topup.svg │ │ ├── film.svg │ │ ├── food.svg │ │ ├── football.svg │ │ ├── furniture.svg │ │ ├── game.svg │ │ ├── gas.svg │ │ ├── golf.svg │ │ ├── hotel.svg │ │ ├── law.svg │ │ ├── mail.svg │ │ ├── medical.svg │ │ ├── money.svg │ │ ├── motorcycle.svg │ │ ├── music.svg │ │ ├── newspaper.svg │ │ ├── park.svg │ │ ├── people.svg │ │ ├── pet.svg │ │ ├── plant.svg │ │ ├── purchase.svg │ │ ├── repair.svg │ │ ├── sadface.svg │ │ ├── scissors.svg │ │ ├── search.svg │ │ ├── shirt.svg │ │ ├── shoes.svg │ │ ├── smiley-face.svg │ │ ├── suitcase.svg │ │ ├── telephone.svg │ │ ├── television.svg │ │ ├── tent.svg │ │ ├── ticket.svg │ │ ├── toy.svg │ │ ├── truck.svg │ │ └── watch.svg │ │ ├── no-screenshot.svg │ │ ├── notebook.svg │ │ ├── onboarding-success.svg │ │ ├── onboarding-welcome-bg.png │ │ ├── paste-clipboard.svg │ │ ├── preferences.svg │ │ ├── right.svg │ │ ├── satisfied-face.svg │ │ ├── scan-ico.svg │ │ ├── search.svg │ │ ├── sell-bitcoin.svg │ │ ├── settings-icons │ │ ├── icon-about.svg │ │ ├── icon-address-book.svg │ │ ├── icon-advanced.svg │ │ ├── icon-alternative-currency.svg │ │ ├── icon-heart.svg │ │ ├── icon-help-support.svg │ │ ├── icon-language.svg │ │ ├── icon-link.svg │ │ ├── icon-network.svg │ │ ├── icon-notifications.svg │ │ ├── icon-send-feedback.svg │ │ ├── icon-text-testnet-white.svg │ │ └── mercado-libre │ │ │ ├── 24px.svg │ │ │ ├── giftcard-pt.svg │ │ │ ├── icon-ml.svg │ │ │ ├── meli-card-24px.png │ │ │ └── mlbr.svg │ │ ├── shapeshift │ │ ├── icon-shapeshift.svg │ │ ├── logo-shapeshift.svg │ │ └── shapeshift_background.jpg │ │ ├── single-folded-content.svg │ │ ├── social-icons │ │ ├── ico-social-email.svg │ │ ├── ico-social-facebook.svg │ │ ├── ico-social-googleplus.svg │ │ ├── ico-social-message.svg │ │ ├── ico-social-twitter.svg │ │ └── ico-social-whatsapp.svg │ │ ├── sold-pending.svg │ │ ├── sold.svg │ │ ├── specific-amount.svg │ │ ├── spinner.png │ │ ├── staking-disabled.svg │ │ ├── staking-enabled.svg │ │ ├── tab-icons │ │ ├── ico-activity.svg │ │ ├── ico-receive.svg │ │ ├── ico-scan.svg │ │ └── ico-send.svg │ │ ├── tail-left.svg │ │ ├── tx-action │ │ ├── icon-confirming.svg │ │ ├── icon-moved.svg │ │ ├── icon-received.svg │ │ ├── icon-sent.svg │ │ └── icon-staked.svg │ │ └── warning.svg ├── components │ ├── action-card │ │ ├── action-card.html │ │ ├── action-card.scss │ │ └── action-card.ts │ ├── action-sheet │ │ ├── action-sheet-parent.ts │ │ ├── action-sheet.html │ │ ├── action-sheet.scss │ │ └── action-sheet.ts │ ├── action-sheets.ts │ ├── amount-picker │ │ ├── amount-picker.html │ │ ├── amount-picker.scss │ │ └── amount-picker.ts │ ├── clipboard-card │ │ ├── clipboard-card.html │ │ ├── clipboard-card.scss │ │ └── clipboard-card.ts │ ├── components.ts │ ├── editable-item │ │ ├── editable-item.html │ │ ├── editable-item.scss │ │ ├── editable-item.spec.ts │ │ └── editable-item.ts │ ├── expandable-header │ │ ├── expandable-header.scss │ │ ├── expandable-header.spec.ts │ │ └── expandable-header.ts │ ├── incoming-data-menu │ │ ├── incoming-data-menu.html │ │ └── incoming-data-menu.ts │ ├── info-sheet │ │ ├── info-sheet-template.html │ │ ├── info-sheet-template.ts │ │ ├── info-sheet.html │ │ ├── info-sheet.scss │ │ └── info-sheet.ts │ ├── label-tip │ │ ├── label-tip.scss │ │ └── label-tip.ts │ ├── options-sheet │ │ ├── options-sheet.html │ │ ├── options-sheet.scss │ │ └── options-sheet.ts │ ├── search-bar │ │ ├── search-bar.scss │ │ └── search-bar.ts │ └── wallet-selector │ │ ├── wallet-selector.html │ │ ├── wallet-selector.scss │ │ └── wallet-selector.ts ├── directives │ ├── animate │ │ ├── animate.scss │ │ └── animate.ts │ ├── copy-to-clipboard │ │ └── copy-to-clipboard.ts │ ├── externalize-links │ │ └── externalize-links.ts │ ├── fixed-scroll-bg-color │ │ ├── fixed-scroll-bg-color.spec.ts │ │ └── fixed-scroll-bg-color.ts │ ├── ion-content-background-color │ │ └── ion-content-background-color.ts │ ├── long-press │ │ └── long-press.ts │ ├── navbar-bg │ │ ├── navbar-bg.spec.ts │ │ └── navbar-bg.ts │ ├── no-low-fee │ │ └── no-low-fee.ts │ └── reveal-at-scroll-pos │ │ └── reveal-at-scroll-pos.ts ├── environments │ ├── dev.ts │ ├── e2e.ts │ ├── prod.ts │ └── schema.ts ├── models │ └── profile │ │ └── profile.model.ts ├── pages │ ├── add │ │ ├── add.html │ │ ├── add.scss │ │ ├── add.ts │ │ ├── copayers │ │ │ ├── copayers.html │ │ │ ├── copayers.scss │ │ │ └── copayers.ts │ │ ├── create-wallet │ │ │ ├── create-wallet.html │ │ │ ├── create-wallet.scss │ │ │ ├── create-wallet.spec.ts │ │ │ └── create-wallet.ts │ │ ├── import-wallet │ │ │ ├── import-wallet.html │ │ │ ├── import-wallet.scss │ │ │ ├── import-wallet.spec.ts │ │ │ └── import-wallet.ts │ │ └── join-wallet │ │ │ ├── join-wallet.html │ │ │ ├── join-wallet.scss │ │ │ └── join-wallet.ts │ ├── backup │ │ ├── backup-game │ │ │ ├── backup-game.html │ │ │ ├── backup-game.scss │ │ │ └── backup-game.ts │ │ └── backup-warning │ │ │ ├── backup-warning.html │ │ │ ├── backup-warning.scss │ │ │ └── backup-warning.ts │ ├── cold-staking │ │ ├── cold-staking.html │ │ ├── cold-staking.scss │ │ ├── cold-staking.ts │ │ └── enable │ │ │ ├── enable.html │ │ │ ├── enable.scss │ │ │ └── enable.ts │ ├── feedback │ │ └── send-feedback │ │ │ ├── send-feedback.html │ │ │ ├── send-feedback.scss │ │ │ ├── send-feedback.spec.ts │ │ │ └── send-feedback.ts │ ├── fingerprint │ │ ├── fingerprint.html │ │ ├── fingerprint.scss │ │ └── fingerprint.ts │ ├── finish │ │ ├── finish.html │ │ ├── finish.scss │ │ └── finish.ts │ ├── home │ │ ├── activity │ │ │ ├── activity.html │ │ │ ├── activity.scss │ │ │ └── activity.ts │ │ ├── home.html │ │ ├── home.scss │ │ ├── home.spec.ts │ │ ├── home.ts │ │ └── proposals │ │ │ ├── proposals.html │ │ │ ├── proposals.scss │ │ │ └── proposals.ts │ ├── includes │ │ ├── card-item │ │ │ ├── card-item.html │ │ │ ├── card-item.scss │ │ │ └── card-item.ts │ │ ├── feedback-card │ │ │ ├── feedback-card.html │ │ │ ├── feedback-card.scss │ │ │ └── feedback-card.ts │ │ ├── gravatar │ │ │ ├── gravatar.html │ │ │ ├── gravatar.scss │ │ │ └── gravatar.ts │ │ ├── multiple-outputs │ │ │ ├── multiple-outputs.html │ │ │ ├── multiple-outputs.scss │ │ │ └── multiple-outputs.ts │ │ ├── txp │ │ │ ├── txp.html │ │ │ ├── txp.scss │ │ │ └── txp.ts │ │ └── wallet-activity │ │ │ ├── wallet-activity.html │ │ │ ├── wallet-activity.scss │ │ │ └── wallet-activity.ts │ ├── integrations │ │ ├── bitpay-card │ │ │ ├── bitpay-card-intro │ │ │ │ ├── bitpay-card-intro.html │ │ │ │ ├── bitpay-card-intro.scss │ │ │ │ └── bitpay-card-intro.ts │ │ │ ├── bitpay-card-topup │ │ │ │ ├── bitpay-card-topup.html │ │ │ │ ├── bitpay-card-topup.scss │ │ │ │ └── bitpay-card-topup.ts │ │ │ ├── bitpay-card.html │ │ │ ├── bitpay-card.scss │ │ │ ├── bitpay-card.ts │ │ │ └── bitpay-settings │ │ │ │ ├── bitpay-settings.html │ │ │ │ ├── bitpay-settings.scss │ │ │ │ └── bitpay-settings.ts │ │ ├── coinbase │ │ │ ├── buy-coinbase │ │ │ │ ├── buy-coinbase.html │ │ │ │ ├── buy-coinbase.scss │ │ │ │ └── buy-coinbase.ts │ │ │ ├── coinbase-settings │ │ │ │ ├── coinbase-settings.html │ │ │ │ ├── coinbase-settings.scss │ │ │ │ └── coinbase-settings.ts │ │ │ ├── coinbase-tx-details │ │ │ │ ├── coinbase-tx-details.html │ │ │ │ ├── coinbase-tx-details.scss │ │ │ │ └── coinbase-tx-details.ts │ │ │ ├── coinbase.html │ │ │ ├── coinbase.scss │ │ │ ├── coinbase.ts │ │ │ └── sell-coinbase │ │ │ │ ├── sell-coinbase.html │ │ │ │ ├── sell-coinbase.scss │ │ │ │ └── sell-coinbase.ts │ │ ├── gift-cards │ │ │ ├── buy-card │ │ │ │ ├── buy-card.html │ │ │ │ ├── buy-card.scss │ │ │ │ ├── buy-card.ts │ │ │ │ └── card-description │ │ │ │ │ ├── card-description.html │ │ │ │ │ ├── card-description.scss │ │ │ │ │ └── card-description.ts │ │ │ ├── card-catalog │ │ │ │ ├── card-catalog.html │ │ │ │ ├── card-catalog.scss │ │ │ │ └── card-catalog.ts │ │ │ ├── card-details │ │ │ │ ├── card-details.html │ │ │ │ ├── card-details.scss │ │ │ │ ├── card-details.ts │ │ │ │ └── redeem-instructions │ │ │ │ │ ├── redeem-instructions.html │ │ │ │ │ ├── redeem-instructions.scss │ │ │ │ │ └── redeem-instructions.ts │ │ │ ├── card-terms │ │ │ │ ├── card-terms.html │ │ │ │ ├── card-terms.scss │ │ │ │ └── card-terms.ts │ │ │ ├── confirm-card-purchase │ │ │ │ ├── confirm-card-purchase.html │ │ │ │ ├── confirm-card-purchase.scss │ │ │ │ └── confirm-card-purchase.ts │ │ │ ├── gift-card-settings │ │ │ │ ├── gift-card-settings.html │ │ │ │ ├── gift-card-settings.scss │ │ │ │ └── gift-card-settings.ts │ │ │ ├── gift-cards-settings │ │ │ │ ├── gift-cards-settings.html │ │ │ │ ├── gift-cards-settings.scss │ │ │ │ └── gift-cards-settings.ts │ │ │ ├── gift-cards.scss │ │ │ ├── gift-cards.ts │ │ │ ├── home-gift-cards │ │ │ │ ├── gift-card-item │ │ │ │ │ ├── gift-card-item.scss │ │ │ │ │ └── gift-card-item.ts │ │ │ │ ├── home-gift-cards.html │ │ │ │ └── home-gift-cards.ts │ │ │ ├── preload-card-images │ │ │ │ └── preload-card-images.ts │ │ │ ├── purchased-cards │ │ │ │ ├── card-list-item │ │ │ │ │ ├── card-list-item.scss │ │ │ │ │ └── card-list-item.ts │ │ │ │ ├── purchased-cards.html │ │ │ │ ├── purchased-cards.spec.ts │ │ │ │ └── purchased-cards.ts │ │ │ └── readme.md │ │ ├── glidera │ │ │ ├── buy-glidera │ │ │ │ ├── buy-glidera.html │ │ │ │ ├── buy-glidera.scss │ │ │ │ └── buy-glidera.ts │ │ │ ├── glidera-settings │ │ │ │ ├── glidera-settings.html │ │ │ │ ├── glidera-settings.scss │ │ │ │ └── glidera-settings.ts │ │ │ ├── glidera-tx-details │ │ │ │ ├── glidera-tx-details.html │ │ │ │ ├── glidera-tx-details.scss │ │ │ │ └── glidera-tx-details.ts │ │ │ ├── glidera.html │ │ │ ├── glidera.scss │ │ │ ├── glidera.ts │ │ │ └── sell-glidera │ │ │ │ ├── sell-glidera.html │ │ │ │ ├── sell-glidera.scss │ │ │ │ └── sell-glidera.ts │ │ ├── integrations.ts │ │ └── shapeshift │ │ │ ├── shapeshift-confirm │ │ │ ├── shapeshift-confirm.html │ │ │ ├── shapeshift-confirm.scss │ │ │ └── shapeshift-confirm.ts │ │ │ ├── shapeshift-details │ │ │ ├── shapeshift-details.html │ │ │ ├── shapeshift-details.scss │ │ │ └── shapeshift-details.ts │ │ │ ├── shapeshift-settings │ │ │ ├── shapeshift-settings.html │ │ │ ├── shapeshift-settings.scss │ │ │ └── shapeshift-settings.ts │ │ │ ├── shapeshift-shift │ │ │ ├── shapeshift-shift.html │ │ │ ├── shapeshift-shift.scss │ │ │ └── shapeshift-shift.ts │ │ │ ├── shapeshift.html │ │ │ ├── shapeshift.scss │ │ │ └── shapeshift.ts │ ├── onboarding │ │ ├── backup-request │ │ │ ├── backup-request.html │ │ │ ├── backup-request.scss │ │ │ └── backup-request.ts │ │ ├── collect-email │ │ │ ├── collect-email.html │ │ │ ├── collect-email.scss │ │ │ └── collect-email.ts │ │ ├── disclaimer │ │ │ ├── disclaimer.html │ │ │ ├── disclaimer.scss │ │ │ └── disclaimer.ts │ │ ├── onboarding.html │ │ ├── onboarding.scss │ │ ├── onboarding.ts │ │ └── tour │ │ │ ├── tour.html │ │ │ ├── tour.scss │ │ │ └── tour.ts │ ├── pages.ts │ ├── paper-wallet │ │ ├── paper-wallet.html │ │ ├── paper-wallet.scss │ │ └── paper-wallet.ts │ ├── paypro │ │ ├── paypro.html │ │ ├── paypro.scss │ │ └── paypro.ts │ ├── pin │ │ ├── pin-dots │ │ │ ├── pin-dots.component.ts │ │ │ └── pin-dots.scss │ │ ├── pin-modal │ │ │ ├── pin-modal.html │ │ │ ├── pin-modal.scss │ │ │ ├── pin-modal.spec.ts │ │ │ └── pin-modal.ts │ │ ├── pin-pad │ │ │ ├── pin-pad.component.ts │ │ │ └── pin-pad.scss │ │ └── pin.ts │ ├── receive │ │ ├── custom-amount │ │ │ ├── custom-amount.html │ │ │ ├── custom-amount.scss │ │ │ └── custom-amount.ts │ │ ├── receive.html │ │ ├── receive.scss │ │ └── receive.ts │ ├── scan │ │ ├── scan.html │ │ ├── scan.scss │ │ └── scan.ts │ ├── send │ │ ├── amount │ │ │ ├── amount.html │ │ │ ├── amount.scss │ │ │ ├── amount.spec.ts │ │ │ └── amount.ts │ │ ├── choose-fee-level │ │ │ ├── choose-fee-level.html │ │ │ ├── choose-fee-level.scss │ │ │ └── choose-fee-level.ts │ │ ├── confirm │ │ │ ├── confirm.html │ │ │ ├── confirm.scss │ │ │ ├── confirm.spec.ts │ │ │ └── confirm.ts │ │ ├── multi-send │ │ │ ├── multi-send.html │ │ │ ├── multi-send.scss │ │ │ └── multi-send.ts │ │ ├── send.html │ │ ├── send.scss │ │ ├── send.spec.ts │ │ ├── send.ts │ │ ├── transfer-to-modal │ │ │ ├── transfer-to-modal.html │ │ │ ├── transfer-to-modal.scss │ │ │ └── transfer-to-modal.ts │ │ └── transfer-to │ │ │ ├── transfer-to.html │ │ │ ├── transfer-to.scss │ │ │ ├── transfer-to.spec.ts │ │ │ └── transfer-to.ts │ ├── settings │ │ ├── about │ │ │ ├── about.html │ │ │ ├── about.scss │ │ │ ├── about.spec.ts │ │ │ ├── about.ts │ │ │ └── session-log │ │ │ │ ├── session-log.html │ │ │ │ ├── session-log.scss │ │ │ │ ├── session-log.spec.ts │ │ │ │ └── session-log.ts │ │ ├── addressbook │ │ │ ├── add │ │ │ │ ├── add.html │ │ │ │ ├── add.scss │ │ │ │ └── add.ts │ │ │ ├── addressbook.html │ │ │ ├── addressbook.scss │ │ │ ├── addressbook.ts │ │ │ └── view │ │ │ │ ├── view.html │ │ │ │ ├── view.scss │ │ │ │ └── view.ts │ │ ├── advanced │ │ │ ├── advanced.html │ │ │ ├── advanced.scss │ │ │ └── advanced.ts │ │ ├── alt-currency │ │ │ ├── alt-currency.html │ │ │ ├── alt-currency.scss │ │ │ └── alt-currency.ts │ │ ├── fee-policy │ │ │ ├── fee-policy.html │ │ │ ├── fee-policy.scss │ │ │ ├── fee-policy.spec.ts │ │ │ └── fee-policy.ts │ │ ├── language │ │ │ ├── language.html │ │ │ ├── language.scss │ │ │ ├── language.spec.ts │ │ │ └── language.ts │ │ ├── lock │ │ │ ├── lock.html │ │ │ ├── lock.scss │ │ │ └── lock.ts │ │ ├── notifications │ │ │ ├── notifications.html │ │ │ ├── notifications.scss │ │ │ ├── notifications.spec.ts │ │ │ └── notifications.ts │ │ ├── settings.html │ │ ├── settings.scss │ │ ├── settings.ts │ │ ├── share │ │ │ ├── share.html │ │ │ ├── share.scss │ │ │ └── share.ts │ │ └── wallet-settings │ │ │ ├── wallet-color │ │ │ ├── wallet-color.html │ │ │ ├── wallet-color.scss │ │ │ └── wallet-color.ts │ │ │ ├── wallet-name │ │ │ ├── wallet-name.html │ │ │ ├── wallet-name.scss │ │ │ └── wallet-name.ts │ │ │ ├── wallet-settings-advanced │ │ │ ├── wallet-addresses │ │ │ │ ├── all-addresses │ │ │ │ │ ├── all-addresses.html │ │ │ │ │ ├── all-addresses.scss │ │ │ │ │ └── all-addresses.ts │ │ │ │ ├── wallet-addresses.html │ │ │ │ ├── wallet-addresses.scss │ │ │ │ └── wallet-addresses.ts │ │ │ ├── wallet-delete │ │ │ │ ├── wallet-delete.html │ │ │ │ ├── wallet-delete.scss │ │ │ │ └── wallet-delete.ts │ │ │ ├── wallet-export │ │ │ │ ├── wallet-export.html │ │ │ │ ├── wallet-export.scss │ │ │ │ └── wallet-export.ts │ │ │ ├── wallet-information │ │ │ │ ├── wallet-extended-private-key │ │ │ │ │ ├── wallet-extended-private-key.html │ │ │ │ │ ├── wallet-extended-private-key.scss │ │ │ │ │ └── wallet-extended-private-key.ts │ │ │ │ ├── wallet-information.html │ │ │ │ ├── wallet-information.scss │ │ │ │ └── wallet-information.ts │ │ │ ├── wallet-service-url │ │ │ │ ├── wallet-service-url.html │ │ │ │ ├── wallet-service-url.scss │ │ │ │ └── wallet-service-url.ts │ │ │ └── wallet-transaction-history │ │ │ │ ├── wallet-transaction-history.html │ │ │ │ ├── wallet-transaction-history.scss │ │ │ │ └── wallet-transaction-history.ts │ │ │ ├── wallet-settings.html │ │ │ ├── wallet-settings.scss │ │ │ └── wallet-settings.ts │ ├── slide-to-accept │ │ ├── slide-to-accept.html │ │ ├── slide-to-accept.scss │ │ └── slide-to-accept.ts │ ├── tabs │ │ ├── tabs.html │ │ └── tabs.ts │ ├── templates │ │ └── wide-header-page │ │ │ ├── wide-header-bar-button.ts │ │ │ ├── wide-header-page.html │ │ │ ├── wide-header-page.scss │ │ │ └── wide-header-page.ts │ ├── tx-details │ │ ├── tx-details.html │ │ ├── tx-details.scss │ │ ├── tx-details.spec.ts │ │ └── tx-details.ts │ ├── txp-details │ │ ├── txp-details.html │ │ ├── txp-details.scss │ │ └── txp-details.ts │ ├── wallet-details │ │ ├── search-tx-modal │ │ │ ├── search-tx-modal.html │ │ │ ├── search-tx-modal.scss │ │ │ └── search-tx-modal.ts │ │ ├── wallet-balance │ │ │ ├── wallet-balance.html │ │ │ ├── wallet-balance.scss │ │ │ └── wallet-balance.ts │ │ ├── wallet-details.html │ │ ├── wallet-details.scss │ │ ├── wallet-details.spec.ts │ │ └── wallet-details.ts │ └── wallet-tabs │ │ ├── wallet-tabs-child.ts │ │ ├── wallet-tabs.provider.ts │ │ └── wallet-tabs.ts ├── pipes │ ├── fiatToUnit.ts │ ├── format-currency.ts │ ├── keys.ts │ ├── order-by.ts │ ├── satToFiat.ts │ └── satToUnit.ts ├── polyfills.ts ├── providers │ ├── action-sheet │ │ └── action-sheet.ts │ ├── address-book │ │ └── address-book.ts │ ├── address │ │ ├── address.spec.ts │ │ └── address.ts │ ├── app-identity │ │ └── app-identity.ts │ ├── app │ │ ├── app.spec.ts │ │ └── app.ts │ ├── backup │ │ └── backup.ts │ ├── bitpay-account │ │ └── bitpay-account.ts │ ├── bitpay-card │ │ └── bitpay-card.ts │ ├── bitpay │ │ └── bitpay.ts │ ├── bwc-error │ │ └── bwc-error.ts │ ├── bwc │ │ └── bwc.ts │ ├── clipboard │ │ └── clipboard.ts │ ├── coinbase │ │ └── coinbase.ts │ ├── config │ │ ├── config.spec.ts │ │ └── config.ts │ ├── derivation-path-helper │ │ ├── derivation-path-helper.spec.ts │ │ ├── derivation-path-helper.ts │ │ └── mercadoLibreService.js │ ├── dom │ │ ├── dom.mock.ts │ │ └── dom.ts │ ├── download │ │ └── download.ts │ ├── electron │ │ └── electron.ts │ ├── email-notifications │ │ ├── email-notifications.spec.ts │ │ └── email-notifications.ts │ ├── external-link │ │ ├── external-link.spec.ts │ │ └── external-link.ts │ ├── fee │ │ └── fee.ts │ ├── feedback │ │ └── feedback.ts │ ├── filter │ │ ├── filter.spec.ts │ │ └── filter.ts │ ├── gift-card │ │ ├── gift-card.spec.ts │ │ ├── gift-card.ts │ │ ├── gift-card.types.ts │ │ └── offered-cards.ts │ ├── glidera │ │ └── glidera.ts │ ├── home-integrations │ │ └── home-integrations.ts │ ├── incoming-data │ │ ├── incoming-data.spec.ts │ │ └── incoming-data.ts │ ├── index.ts │ ├── language-loader │ │ └── language-loader.ts │ ├── language │ │ └── language.ts │ ├── logger │ │ ├── logger.mock.ts │ │ ├── logger.spec.ts │ │ └── logger.ts │ ├── on-going-process │ │ └── on-going-process.ts │ ├── paypro │ │ └── paypro.ts │ ├── persistence │ │ ├── persistence.spec.ts │ │ ├── persistence.ts │ │ └── storage │ │ │ ├── file-storage.ts │ │ │ ├── istorage.ts │ │ │ ├── local-storage.ts │ │ │ └── ram-storage.ts │ ├── platform │ │ ├── platform.spec.ts │ │ └── platform.ts │ ├── popup │ │ ├── popup.spec.ts │ │ └── popup.ts │ ├── profile │ │ ├── profile.spec.ts │ │ └── profile.ts │ ├── providers.module.ts │ ├── push-notifications │ │ └── push-notifications.ts │ ├── rate │ │ ├── rate.spec.ts │ │ └── rate.ts │ ├── replace-parameters │ │ ├── replace-parameters.spec.ts │ │ └── replace-parameters.ts │ ├── scan │ │ └── scan.ts │ ├── shapeshift │ │ └── shapeshift.ts │ ├── time │ │ ├── time.spec.ts │ │ └── time.ts │ ├── touchid │ │ ├── touchid.spec.ts │ │ └── touchid.ts │ ├── tx-confirm-notification │ │ └── tx-confirm-notification.ts │ ├── tx-format │ │ ├── tx-format.spec.ts │ │ └── tx-format.ts │ └── wallet │ │ ├── mocks │ │ ├── pending-txp.mock.ts │ │ └── wallet.mock.ts │ │ ├── wallet.spec.ts │ │ └── wallet.ts ├── test.ts ├── theme │ ├── icons.scss │ ├── lists.scss │ ├── mixins.scss │ ├── modals.scss │ ├── variables.scss │ └── zero-state.scss ├── tsconfig.spec.json ├── typings.d.ts └── validators │ ├── address.ts │ ├── coldstaking.ts │ └── email.ts ├── test ├── e2e │ ├── fixtures │ │ ├── schema.ts │ │ └── test-wallets.ts │ ├── mockAPI.ts │ ├── mocks │ │ ├── bitpay.com_api_rates.json │ │ └── bitpay.com_api_rates_bch.json │ ├── readme.md │ ├── scenarios │ │ ├── onboarding │ │ │ ├── get-started.e2e-spec.ts │ │ │ ├── import-wallet.e2e-spec.ts │ │ │ └── onboarding.e2e-spec.ts │ │ └── scan.e2e-spec.ts │ ├── tsconfig.e2e.json │ └── utils.ts ├── karma.conf.js ├── tsconfig.ng-cli.json └── visual │ ├── Dockerfile │ └── readme.md ├── tsconfig.json └── tslint.json /.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | package-lock.json 3 | package-template.json 4 | google-services.json 5 | app-template/bitpay/google-services.json 6 | app-template/copay/google-services.json 7 | .sourcemaps/ 8 | coverage/ 9 | platforms/ 10 | plugins/ 11 | www/ 12 | src/assets/*.json 13 | *.html -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "msjsdiag.debugger-for-chrome", 4 | "esbenp.prettier-vscode", 5 | "eg2.tslint", 6 | "shinnn.stylelint" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "typescript.tsdk": "node_modules/typescript/lib", 3 | "editor.formatOnSave": true, 4 | "tslint.autoFixOnSave": true, 5 | "editor.tabSize": 2, 6 | "editor.detectIndentation": false 7 | // "typescript.implementationsCodeLens.enabled": true 8 | // "typescript.referencesCodeLens.enabled": true 9 | } 10 | -------------------------------------------------------------------------------- /app-template/afterPack-template.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const fse = require('fs-extra'); 3 | const path = require('path'); 4 | module.exports = function(params) { 5 | const unpackFile = path.join( 6 | params.appOutDir, 7 | '*NAMECASENOSPACE*.app/Contents/Resources/app.asar.unpacked' 8 | ); 9 | fse.removeSync(unpackFile); 10 | }; 11 | -------------------------------------------------------------------------------- /app-template/bitpay/img/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/bitpay/img/128x128.png -------------------------------------------------------------------------------- /app-template/bitpay/img/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/bitpay/img/16x16.png -------------------------------------------------------------------------------- /app-template/bitpay/img/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/bitpay/img/24x24.png -------------------------------------------------------------------------------- /app-template/bitpay/img/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/bitpay/img/256x256.png -------------------------------------------------------------------------------- /app-template/bitpay/img/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/bitpay/img/32x32.png -------------------------------------------------------------------------------- /app-template/bitpay/img/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/bitpay/img/48x48.png -------------------------------------------------------------------------------- /app-template/bitpay/img/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/bitpay/img/64x64.png -------------------------------------------------------------------------------- /app-template/bitpay/img/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/bitpay/img/96x96.png -------------------------------------------------------------------------------- /app-template/bitpay/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/bitpay/img/favicon.ico -------------------------------------------------------------------------------- /app-template/bitpay/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/bitpay/img/icon.png -------------------------------------------------------------------------------- /app-template/bitpay/img/logo-negative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/bitpay/img/logo-negative.png -------------------------------------------------------------------------------- /app-template/bitpay/img/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/bitpay/img/logo.ico -------------------------------------------------------------------------------- /app-template/bitpay/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/bitpay/img/logo.png -------------------------------------------------------------------------------- /app-template/copay/img/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/copay/img/128x128.png -------------------------------------------------------------------------------- /app-template/copay/img/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/copay/img/16x16.png -------------------------------------------------------------------------------- /app-template/copay/img/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/copay/img/24x24.png -------------------------------------------------------------------------------- /app-template/copay/img/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/copay/img/256x256.png -------------------------------------------------------------------------------- /app-template/copay/img/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/copay/img/32x32.png -------------------------------------------------------------------------------- /app-template/copay/img/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/copay/img/48x48.png -------------------------------------------------------------------------------- /app-template/copay/img/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/copay/img/512x512.png -------------------------------------------------------------------------------- /app-template/copay/img/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/copay/img/64x64.png -------------------------------------------------------------------------------- /app-template/copay/img/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/copay/img/96x96.png -------------------------------------------------------------------------------- /app-template/copay/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/copay/img/favicon.ico -------------------------------------------------------------------------------- /app-template/copay/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/copay/img/icon.png -------------------------------------------------------------------------------- /app-template/copay/img/logo-negative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/copay/img/logo-negative.png -------------------------------------------------------------------------------- /app-template/copay/img/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/copay/img/logo.icns -------------------------------------------------------------------------------- /app-template/copay/img/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/copay/img/logo.ico -------------------------------------------------------------------------------- /app-template/copay/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/copay/img/logo.png -------------------------------------------------------------------------------- /app-template/copay/img/tab-icons/ico-home-selected.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app-template/copay/img/tab-icons/ico-home.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app-template/copay/img/tab-icons/ico-send.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app-template/ionic.config-template.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "*USERVISIBLENAME*", 3 | "app_id": "io.particl.*BUNDLENAME*", 4 | "type": "ionic-angular", 5 | "integrations": { 6 | "cordova": {} 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /app-template/manifest.ionic-template.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "*PACKAGEDESCRIPTION*", 3 | "short_name": "*NAMECASE*", 4 | "start_url": "index.html", 5 | "display": "standalone", 6 | "icons": [ 7 | { 8 | "src": "assets/img/app/logo.png", 9 | "sizes": "150x65", 10 | "type": "image/png" 11 | } 12 | ], 13 | "background_color": "*THEMECOLOR*", 14 | "theme_color": "*THEMECOLOR*" 15 | } 16 | -------------------------------------------------------------------------------- /app-template/particl-dev/img/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl-dev/img/128x128.png -------------------------------------------------------------------------------- /app-template/particl-dev/img/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl-dev/img/16x16.png -------------------------------------------------------------------------------- /app-template/particl-dev/img/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl-dev/img/24x24.png -------------------------------------------------------------------------------- /app-template/particl-dev/img/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl-dev/img/256x256.png -------------------------------------------------------------------------------- /app-template/particl-dev/img/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl-dev/img/32x32.png -------------------------------------------------------------------------------- /app-template/particl-dev/img/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl-dev/img/48x48.png -------------------------------------------------------------------------------- /app-template/particl-dev/img/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl-dev/img/512x512.png -------------------------------------------------------------------------------- /app-template/particl-dev/img/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl-dev/img/64x64.png -------------------------------------------------------------------------------- /app-template/particl-dev/img/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl-dev/img/96x96.png -------------------------------------------------------------------------------- /app-template/particl-dev/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl-dev/img/favicon.ico -------------------------------------------------------------------------------- /app-template/particl-dev/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl-dev/img/icon.png -------------------------------------------------------------------------------- /app-template/particl-dev/img/logo-negative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl-dev/img/logo-negative.png -------------------------------------------------------------------------------- /app-template/particl-dev/img/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl-dev/img/logo.icns -------------------------------------------------------------------------------- /app-template/particl-dev/img/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl-dev/img/logo.ico -------------------------------------------------------------------------------- /app-template/particl-dev/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl-dev/img/logo.png -------------------------------------------------------------------------------- /app-template/particl-dev/img/tab-icons/ico-home.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app-template/particl-dev/img/tab-icons/ico-send.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app-template/particl/img/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl/img/128x128.png -------------------------------------------------------------------------------- /app-template/particl/img/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl/img/16x16.png -------------------------------------------------------------------------------- /app-template/particl/img/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl/img/24x24.png -------------------------------------------------------------------------------- /app-template/particl/img/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl/img/256x256.png -------------------------------------------------------------------------------- /app-template/particl/img/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl/img/32x32.png -------------------------------------------------------------------------------- /app-template/particl/img/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl/img/48x48.png -------------------------------------------------------------------------------- /app-template/particl/img/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl/img/512x512.png -------------------------------------------------------------------------------- /app-template/particl/img/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl/img/64x64.png -------------------------------------------------------------------------------- /app-template/particl/img/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl/img/96x96.png -------------------------------------------------------------------------------- /app-template/particl/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl/img/favicon.ico -------------------------------------------------------------------------------- /app-template/particl/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl/img/icon.png -------------------------------------------------------------------------------- /app-template/particl/img/logo-negative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl/img/logo-negative.png -------------------------------------------------------------------------------- /app-template/particl/img/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl/img/logo.icns -------------------------------------------------------------------------------- /app-template/particl/img/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl/img/logo.ico -------------------------------------------------------------------------------- /app-template/particl/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/app-template/particl/img/logo.png -------------------------------------------------------------------------------- /app-template/particl/img/tab-icons/ico-home-selected.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app-template/particl/img/tab-icons/ico-home.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app-template/particl/img/tab-icons/ico-send.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /i18n/docs/updateinfo_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/i18n/docs/updateinfo_de.txt -------------------------------------------------------------------------------- /i18n/docs/updateinfo_en.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /i18n/docs/updateinfo_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/i18n/docs/updateinfo_es.txt -------------------------------------------------------------------------------- /i18n/docs/updateinfo_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/i18n/docs/updateinfo_fr.txt -------------------------------------------------------------------------------- /i18n/docs/updateinfo_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/i18n/docs/updateinfo_it.txt -------------------------------------------------------------------------------- /i18n/docs/updateinfo_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/i18n/docs/updateinfo_ja.txt -------------------------------------------------------------------------------- /i18n/docs/updateinfo_ko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/i18n/docs/updateinfo_ko.txt -------------------------------------------------------------------------------- /i18n/docs/updateinfo_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/i18n/docs/updateinfo_nl.txt -------------------------------------------------------------------------------- /i18n/docs/updateinfo_pl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/i18n/docs/updateinfo_pl.txt -------------------------------------------------------------------------------- /i18n/docs/updateinfo_pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/i18n/docs/updateinfo_pt.txt -------------------------------------------------------------------------------- /i18n/docs/updateinfo_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/i18n/docs/updateinfo_ru.txt -------------------------------------------------------------------------------- /i18n/docs/updateinfo_zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/i18n/docs/updateinfo_zh.txt -------------------------------------------------------------------------------- /resources/bitpay/android/app-store/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/app-store/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/bitpay/android/app-store/feature-graphic-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/app-store/feature-graphic-1024.png -------------------------------------------------------------------------------- /resources/bitpay/android/app-store/icon-1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/app-store/icon-1024x1024.png -------------------------------------------------------------------------------- /resources/bitpay/android/app-store/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/app-store/icon-512x512.png -------------------------------------------------------------------------------- /resources/bitpay/android/icon/drawable-hdpi/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/icon/drawable-hdpi/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/bitpay/android/icon/drawable-mdpi/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/icon/drawable-mdpi/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/bitpay/android/icon/drawable-xhdpi/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/icon/drawable-xhdpi/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/bitpay/android/icon/drawable-xxhdpi/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/icon/drawable-xxhdpi/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/bitpay/android/icon/drawable-xxxhdpi/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/icon/drawable-xxxhdpi/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/bitpay/android/icon/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/icon/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/bitpay/android/icon/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/icon/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /resources/bitpay/android/icon/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/icon/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /resources/bitpay/android/icon/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/icon/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/bitpay/android/icon/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/icon/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /resources/bitpay/android/icon/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/icon/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /resources/bitpay/android/icon/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/icon/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/bitpay/android/icon/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/icon/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /resources/bitpay/android/icon/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/icon/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /resources/bitpay/android/icon/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/icon/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/bitpay/android/icon/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/icon/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /resources/bitpay/android/icon/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/icon/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /resources/bitpay/android/icon/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/icon/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/bitpay/android/icon/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/icon/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /resources/bitpay/android/icon/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/icon/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /resources/bitpay/android/icon/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /resources/bitpay/android/splash/drawable-land-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/splash/drawable-land-hdpi-screen.png -------------------------------------------------------------------------------- /resources/bitpay/android/splash/drawable-land-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/splash/drawable-land-ldpi-screen.png -------------------------------------------------------------------------------- /resources/bitpay/android/splash/drawable-land-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/splash/drawable-land-mdpi-screen.png -------------------------------------------------------------------------------- /resources/bitpay/android/splash/drawable-land-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/splash/drawable-land-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/bitpay/android/splash/drawable-land-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/splash/drawable-land-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/bitpay/android/splash/drawable-land-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/splash/drawable-land-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/bitpay/android/splash/drawable-port-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/splash/drawable-port-hdpi-screen.png -------------------------------------------------------------------------------- /resources/bitpay/android/splash/drawable-port-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/splash/drawable-port-ldpi-screen.png -------------------------------------------------------------------------------- /resources/bitpay/android/splash/drawable-port-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/splash/drawable-port-mdpi-screen.png -------------------------------------------------------------------------------- /resources/bitpay/android/splash/drawable-port-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/splash/drawable-port-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/bitpay/android/splash/drawable-port-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/splash/drawable-port-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/bitpay/android/splash/drawable-port-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/android/splash/drawable-port-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/bitpay/ios/app-store/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/ios/app-store/icon-1024.png -------------------------------------------------------------------------------- /resources/bitpay/ios/icon/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/ios/icon/icon-40.png -------------------------------------------------------------------------------- /resources/bitpay/ios/icon/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/ios/icon/icon-40@2x.png -------------------------------------------------------------------------------- /resources/bitpay/ios/icon/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/ios/icon/icon-50.png -------------------------------------------------------------------------------- /resources/bitpay/ios/icon/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/ios/icon/icon-50@2x.png -------------------------------------------------------------------------------- /resources/bitpay/ios/icon/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/ios/icon/icon-60.png -------------------------------------------------------------------------------- /resources/bitpay/ios/icon/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/ios/icon/icon-60@2x.png -------------------------------------------------------------------------------- /resources/bitpay/ios/icon/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/ios/icon/icon-60@3x.png -------------------------------------------------------------------------------- /resources/bitpay/ios/icon/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/ios/icon/icon-72.png -------------------------------------------------------------------------------- /resources/bitpay/ios/icon/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/ios/icon/icon-72@2x.png -------------------------------------------------------------------------------- /resources/bitpay/ios/icon/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/ios/icon/icon-76.png -------------------------------------------------------------------------------- /resources/bitpay/ios/icon/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/ios/icon/icon-76@2x.png -------------------------------------------------------------------------------- /resources/bitpay/ios/icon/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/ios/icon/icon-83.5@2x.png -------------------------------------------------------------------------------- /resources/bitpay/ios/icon/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/ios/icon/icon-small.png -------------------------------------------------------------------------------- /resources/bitpay/ios/icon/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/ios/icon/icon-small@2x.png -------------------------------------------------------------------------------- /resources/bitpay/ios/icon/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/ios/icon/icon-small@3x.png -------------------------------------------------------------------------------- /resources/bitpay/ios/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/ios/icon/icon.png -------------------------------------------------------------------------------- /resources/bitpay/ios/icon/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/ios/icon/icon@2x.png -------------------------------------------------------------------------------- /resources/bitpay/ios/splash/Default@2x~universal~anyany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/ios/splash/Default@2x~universal~anyany.png -------------------------------------------------------------------------------- /resources/bitpay/ios/splash/Default@3x~universal~anyany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/ios/splash/Default@3x~universal~anyany.png -------------------------------------------------------------------------------- /resources/bitpay/linux/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/linux/favicon.ico -------------------------------------------------------------------------------- /resources/bitpay/linux/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/linux/icon.png -------------------------------------------------------------------------------- /resources/bitpay/mac/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/mac/app.icns -------------------------------------------------------------------------------- /resources/bitpay/mac/dmg-background.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/mac/dmg-background.tiff -------------------------------------------------------------------------------- /resources/bitpay/mac/volume-icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/mac/volume-icon.icns -------------------------------------------------------------------------------- /resources/bitpay/windows/app-store/icon-300x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/windows/app-store/icon-300x300.png -------------------------------------------------------------------------------- /resources/bitpay/windows/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/windows/icon.ico -------------------------------------------------------------------------------- /resources/bitpay/windows/icon/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/windows/icon/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /resources/bitpay/windows/icon/Square150x150Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/windows/icon/Square150x150Logo.scale-240.png -------------------------------------------------------------------------------- /resources/bitpay/windows/icon/Square30x30Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/windows/icon/Square30x30Logo.scale-100.png -------------------------------------------------------------------------------- /resources/bitpay/windows/icon/Square310x310Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/windows/icon/Square310x310Logo.scale-100.png -------------------------------------------------------------------------------- /resources/bitpay/windows/icon/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/windows/icon/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /resources/bitpay/windows/icon/Square44x44Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/windows/icon/Square44x44Logo.scale-240.png -------------------------------------------------------------------------------- /resources/bitpay/windows/icon/Square70x70Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/windows/icon/Square70x70Logo.scale-100.png -------------------------------------------------------------------------------- /resources/bitpay/windows/icon/Square71x71Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/windows/icon/Square71x71Logo.scale-100.png -------------------------------------------------------------------------------- /resources/bitpay/windows/icon/Square71x71Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/windows/icon/Square71x71Logo.scale-240.png -------------------------------------------------------------------------------- /resources/bitpay/windows/icon/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/windows/icon/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /resources/bitpay/windows/icon/StoreLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/windows/icon/StoreLogo.scale-240.png -------------------------------------------------------------------------------- /resources/bitpay/windows/icon/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/windows/icon/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /resources/bitpay/windows/icon/Wide310x150Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/windows/icon/Wide310x150Logo.scale-240.png -------------------------------------------------------------------------------- /resources/bitpay/windows/splash/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/windows/splash/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /resources/bitpay/windows/splash/SplashScreenPhone.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/bitpay/windows/splash/SplashScreenPhone.scale-240.png -------------------------------------------------------------------------------- /resources/copay/android/app-store/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/app-store/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/copay/android/app-store/feature-graphic-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/app-store/feature-graphic-1024.png -------------------------------------------------------------------------------- /resources/copay/android/app-store/icon-1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/app-store/icon-1024x1024.png -------------------------------------------------------------------------------- /resources/copay/android/app-store/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/app-store/icon-512x512.png -------------------------------------------------------------------------------- /resources/copay/android/icon/drawable-hdpi/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/icon/drawable-hdpi/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/copay/android/icon/drawable-mdpi/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/icon/drawable-mdpi/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/copay/android/icon/drawable-xhdpi/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/icon/drawable-xhdpi/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/copay/android/icon/drawable-xxhdpi/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/icon/drawable-xxhdpi/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/copay/android/icon/drawable-xxxhdpi/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/icon/drawable-xxxhdpi/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/copay/android/icon/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/icon/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/copay/android/icon/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/icon/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /resources/copay/android/icon/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/icon/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /resources/copay/android/icon/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/icon/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/copay/android/icon/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/icon/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /resources/copay/android/icon/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/icon/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /resources/copay/android/icon/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/icon/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/copay/android/icon/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/icon/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /resources/copay/android/icon/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/icon/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /resources/copay/android/icon/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/icon/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/copay/android/icon/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/icon/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /resources/copay/android/icon/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/icon/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /resources/copay/android/icon/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/icon/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/copay/android/icon/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/icon/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /resources/copay/android/icon/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/icon/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /resources/copay/android/icon/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /resources/copay/android/splash/drawable-land-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/splash/drawable-land-hdpi-screen.png -------------------------------------------------------------------------------- /resources/copay/android/splash/drawable-land-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/splash/drawable-land-ldpi-screen.png -------------------------------------------------------------------------------- /resources/copay/android/splash/drawable-land-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/splash/drawable-land-mdpi-screen.png -------------------------------------------------------------------------------- /resources/copay/android/splash/drawable-land-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/splash/drawable-land-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/copay/android/splash/drawable-land-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/splash/drawable-land-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/copay/android/splash/drawable-land-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/splash/drawable-land-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/copay/android/splash/drawable-port-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/splash/drawable-port-hdpi-screen.png -------------------------------------------------------------------------------- /resources/copay/android/splash/drawable-port-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/splash/drawable-port-ldpi-screen.png -------------------------------------------------------------------------------- /resources/copay/android/splash/drawable-port-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/splash/drawable-port-mdpi-screen.png -------------------------------------------------------------------------------- /resources/copay/android/splash/drawable-port-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/splash/drawable-port-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/copay/android/splash/drawable-port-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/splash/drawable-port-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/copay/android/splash/drawable-port-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/android/splash/drawable-port-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/copay/ios/app-store/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/ios/app-store/icon-1024.png -------------------------------------------------------------------------------- /resources/copay/ios/icon/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/ios/icon/icon-40.png -------------------------------------------------------------------------------- /resources/copay/ios/icon/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/ios/icon/icon-40@2x.png -------------------------------------------------------------------------------- /resources/copay/ios/icon/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/ios/icon/icon-50.png -------------------------------------------------------------------------------- /resources/copay/ios/icon/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/ios/icon/icon-50@2x.png -------------------------------------------------------------------------------- /resources/copay/ios/icon/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/ios/icon/icon-60.png -------------------------------------------------------------------------------- /resources/copay/ios/icon/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/ios/icon/icon-60@2x.png -------------------------------------------------------------------------------- /resources/copay/ios/icon/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/ios/icon/icon-60@3x.png -------------------------------------------------------------------------------- /resources/copay/ios/icon/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/ios/icon/icon-72.png -------------------------------------------------------------------------------- /resources/copay/ios/icon/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/ios/icon/icon-72@2x.png -------------------------------------------------------------------------------- /resources/copay/ios/icon/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/ios/icon/icon-76.png -------------------------------------------------------------------------------- /resources/copay/ios/icon/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/ios/icon/icon-76@2x.png -------------------------------------------------------------------------------- /resources/copay/ios/icon/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/ios/icon/icon-83.5@2x.png -------------------------------------------------------------------------------- /resources/copay/ios/icon/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/ios/icon/icon-small.png -------------------------------------------------------------------------------- /resources/copay/ios/icon/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/ios/icon/icon-small@2x.png -------------------------------------------------------------------------------- /resources/copay/ios/icon/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/ios/icon/icon-small@3x.png -------------------------------------------------------------------------------- /resources/copay/ios/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/ios/icon/icon.png -------------------------------------------------------------------------------- /resources/copay/ios/icon/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/ios/icon/icon@2x.png -------------------------------------------------------------------------------- /resources/copay/ios/splash/Default@2x~universal~anyany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/ios/splash/Default@2x~universal~anyany.png -------------------------------------------------------------------------------- /resources/copay/ios/splash/Default@3x~universal~anyany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/ios/splash/Default@3x~universal~anyany.png -------------------------------------------------------------------------------- /resources/copay/linux/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/linux/favicon.ico -------------------------------------------------------------------------------- /resources/copay/linux/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/linux/icon.png -------------------------------------------------------------------------------- /resources/copay/mac/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/mac/app.icns -------------------------------------------------------------------------------- /resources/copay/mac/dmg-background.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/mac/dmg-background.tiff -------------------------------------------------------------------------------- /resources/copay/mac/volume-icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/mac/volume-icon.icns -------------------------------------------------------------------------------- /resources/copay/windows/app-store/icon-300x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/windows/app-store/icon-300x300.png -------------------------------------------------------------------------------- /resources/copay/windows/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/windows/icon.ico -------------------------------------------------------------------------------- /resources/copay/windows/icon/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/windows/icon/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /resources/copay/windows/icon/Square150x150Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/windows/icon/Square150x150Logo.scale-240.png -------------------------------------------------------------------------------- /resources/copay/windows/icon/Square30x30Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/windows/icon/Square30x30Logo.scale-100.png -------------------------------------------------------------------------------- /resources/copay/windows/icon/Square310x310Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/windows/icon/Square310x310Logo.scale-100.png -------------------------------------------------------------------------------- /resources/copay/windows/icon/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/windows/icon/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /resources/copay/windows/icon/Square44x44Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/windows/icon/Square44x44Logo.scale-240.png -------------------------------------------------------------------------------- /resources/copay/windows/icon/Square70x70Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/windows/icon/Square70x70Logo.scale-100.png -------------------------------------------------------------------------------- /resources/copay/windows/icon/Square71x71Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/windows/icon/Square71x71Logo.scale-100.png -------------------------------------------------------------------------------- /resources/copay/windows/icon/Square71x71Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/windows/icon/Square71x71Logo.scale-240.png -------------------------------------------------------------------------------- /resources/copay/windows/icon/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/windows/icon/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /resources/copay/windows/icon/StoreLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/windows/icon/StoreLogo.scale-240.png -------------------------------------------------------------------------------- /resources/copay/windows/icon/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/windows/icon/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /resources/copay/windows/icon/Wide310x150Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/windows/icon/Wide310x150Logo.scale-240.png -------------------------------------------------------------------------------- /resources/copay/windows/splash/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/windows/splash/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /resources/copay/windows/splash/SplashScreenPhone.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/copay/windows/splash/SplashScreenPhone.scale-240.png -------------------------------------------------------------------------------- /resources/install.sh: -------------------------------------------------------------------------------- 1 | echo "Installing imagemagick... (This requires Homebrew)" 2 | # This requires Homebrew: http://brew.sh/ 3 | brew install imagemagick 4 | # imagemagick provides the `convert` utility, used to generate ICO files 5 | -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/app-store/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/app-store/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/app-store/feature-graphic-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/app-store/feature-graphic-1024.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/app-store/icon-1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/app-store/icon-1024x1024.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/app-store/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/app-store/icon-512x512.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/icon/drawable-hdpi/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/icon/drawable-hdpi/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/icon/drawable-mdpi/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/icon/drawable-mdpi/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/icon/drawable-xhdpi/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/icon/drawable-xhdpi/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/icon/drawable-xxhdpi/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/icon/drawable-xxhdpi/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/icon/drawable-xxxhdpi/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/icon/drawable-xxxhdpi/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/icon/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/icon/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/icon/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/icon/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/icon/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/icon/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/icon/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/icon/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/icon/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/icon/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/icon/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/icon/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/icon/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/icon/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/icon/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/icon/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/icon/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/icon/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/icon/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/icon/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/icon/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/icon/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/icon/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/icon/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/icon/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/icon/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/icon/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/icon/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/icon/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/icon/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/icon/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/splash/drawable-land-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/splash/drawable-land-hdpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/splash/drawable-land-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/splash/drawable-land-ldpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/splash/drawable-land-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/splash/drawable-land-mdpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/splash/drawable-land-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/splash/drawable-land-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/splash/drawable-land-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/splash/drawable-land-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/splash/drawable-land-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/splash/drawable-land-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/splash/drawable-port-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/splash/drawable-port-hdpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/splash/drawable-port-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/splash/drawable-port-ldpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/splash/drawable-port-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/splash/drawable-port-mdpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/splash/drawable-port-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/splash/drawable-port-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/splash/drawable-port-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/splash/drawable-port-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/android/splash/drawable-port-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/android/splash/drawable-port-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/ios/app-store/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/ios/app-store/icon-1024.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/ios/icon/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/ios/icon/icon-40.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/ios/icon/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/ios/icon/icon-40@2x.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/ios/icon/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/ios/icon/icon-50.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/ios/icon/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/ios/icon/icon-50@2x.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/ios/icon/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/ios/icon/icon-60.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/ios/icon/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/ios/icon/icon-60@2x.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/ios/icon/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/ios/icon/icon-60@3x.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/ios/icon/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/ios/icon/icon-72.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/ios/icon/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/ios/icon/icon-72@2x.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/ios/icon/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/ios/icon/icon-76.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/ios/icon/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/ios/icon/icon-76@2x.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/ios/icon/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/ios/icon/icon-83.5@2x.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/ios/icon/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/ios/icon/icon-small.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/ios/icon/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/ios/icon/icon-small@2x.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/ios/icon/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/ios/icon/icon-small@3x.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/ios/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/ios/icon/icon.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/ios/icon/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/ios/icon/icon@2x.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/ios/splash/Default@2x~universal~anyany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/ios/splash/Default@2x~universal~anyany.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/ios/splash/Default@3x~universal~anyany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/ios/splash/Default@3x~universal~anyany.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/linux/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/linux/favicon.ico -------------------------------------------------------------------------------- /resources/particl-copay-dev/linux/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/linux/icon.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/mac/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/mac/app.icns -------------------------------------------------------------------------------- /resources/particl-copay-dev/mac/dmg-background.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/mac/dmg-background.tiff -------------------------------------------------------------------------------- /resources/particl-copay-dev/mac/volume-icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/mac/volume-icon.icns -------------------------------------------------------------------------------- /resources/particl-copay-dev/windows/app-store/icon-300x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/windows/app-store/icon-300x300.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/windows/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/windows/icon.ico -------------------------------------------------------------------------------- /resources/particl-copay-dev/windows/icon/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/windows/icon/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/windows/icon/Square150x150Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/windows/icon/Square150x150Logo.scale-240.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/windows/icon/Square30x30Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/windows/icon/Square30x30Logo.scale-100.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/windows/icon/Square310x310Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/windows/icon/Square310x310Logo.scale-100.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/windows/icon/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/windows/icon/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/windows/icon/Square44x44Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/windows/icon/Square44x44Logo.scale-240.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/windows/icon/Square70x70Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/windows/icon/Square70x70Logo.scale-100.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/windows/icon/Square71x71Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/windows/icon/Square71x71Logo.scale-100.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/windows/icon/Square71x71Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/windows/icon/Square71x71Logo.scale-240.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/windows/icon/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/windows/icon/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/windows/icon/StoreLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/windows/icon/StoreLogo.scale-240.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/windows/icon/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/windows/icon/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/windows/icon/Wide310x150Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/windows/icon/Wide310x150Logo.scale-240.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/windows/splash/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/windows/splash/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /resources/particl-copay-dev/windows/splash/SplashScreenPhone.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay-dev/windows/splash/SplashScreenPhone.scale-240.png -------------------------------------------------------------------------------- /resources/particl-copay/android/app-store/feature-graphic-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/app-store/feature-graphic-1024.png -------------------------------------------------------------------------------- /resources/particl-copay/android/app-store/icon-1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/app-store/icon-1024x1024.png -------------------------------------------------------------------------------- /resources/particl-copay/android/app-store/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/app-store/icon-512x512.png -------------------------------------------------------------------------------- /resources/particl-copay/android/icon/drawable-hdpi/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/icon/drawable-hdpi/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/particl-copay/android/icon/drawable-mdpi/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/icon/drawable-mdpi/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/particl-copay/android/icon/drawable-xhdpi/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/icon/drawable-xhdpi/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/particl-copay/android/icon/drawable-xxhdpi/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/icon/drawable-xxhdpi/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/particl-copay/android/icon/drawable-xxxhdpi/fcm_push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/icon/drawable-xxxhdpi/fcm_push_icon.png -------------------------------------------------------------------------------- /resources/particl-copay/android/icon/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/icon/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/particl-copay/android/icon/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/icon/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /resources/particl-copay/android/icon/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/icon/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /resources/particl-copay/android/icon/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/icon/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/particl-copay/android/icon/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/icon/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /resources/particl-copay/android/icon/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/icon/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /resources/particl-copay/android/icon/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/icon/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/particl-copay/android/icon/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/icon/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /resources/particl-copay/android/icon/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/icon/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /resources/particl-copay/android/icon/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/icon/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/particl-copay/android/icon/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/icon/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /resources/particl-copay/android/icon/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/icon/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /resources/particl-copay/android/icon/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/icon/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /resources/particl-copay/android/icon/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/icon/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /resources/particl-copay/android/icon/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/icon/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /resources/particl-copay/android/icon/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /resources/particl-copay/android/splash/drawable-land-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/splash/drawable-land-hdpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay/android/splash/drawable-land-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/splash/drawable-land-ldpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay/android/splash/drawable-land-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/splash/drawable-land-mdpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay/android/splash/drawable-land-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/splash/drawable-land-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay/android/splash/drawable-land-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/splash/drawable-land-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay/android/splash/drawable-land-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/splash/drawable-land-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay/android/splash/drawable-port-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/splash/drawable-port-hdpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay/android/splash/drawable-port-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/splash/drawable-port-ldpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay/android/splash/drawable-port-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/splash/drawable-port-mdpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay/android/splash/drawable-port-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/splash/drawable-port-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay/android/splash/drawable-port-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/splash/drawable-port-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay/android/splash/drawable-port-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/android/splash/drawable-port-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/particl-copay/ios/app-store/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/ios/app-store/icon-1024.png -------------------------------------------------------------------------------- /resources/particl-copay/ios/icon/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/ios/icon/icon-40.png -------------------------------------------------------------------------------- /resources/particl-copay/ios/icon/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/ios/icon/icon-40@2x.png -------------------------------------------------------------------------------- /resources/particl-copay/ios/icon/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/ios/icon/icon-50.png -------------------------------------------------------------------------------- /resources/particl-copay/ios/icon/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/ios/icon/icon-50@2x.png -------------------------------------------------------------------------------- /resources/particl-copay/ios/icon/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/ios/icon/icon-60.png -------------------------------------------------------------------------------- /resources/particl-copay/ios/icon/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/ios/icon/icon-60@2x.png -------------------------------------------------------------------------------- /resources/particl-copay/ios/icon/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/ios/icon/icon-60@3x.png -------------------------------------------------------------------------------- /resources/particl-copay/ios/icon/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/ios/icon/icon-72.png -------------------------------------------------------------------------------- /resources/particl-copay/ios/icon/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/ios/icon/icon-72@2x.png -------------------------------------------------------------------------------- /resources/particl-copay/ios/icon/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/ios/icon/icon-76.png -------------------------------------------------------------------------------- /resources/particl-copay/ios/icon/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/ios/icon/icon-76@2x.png -------------------------------------------------------------------------------- /resources/particl-copay/ios/icon/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/ios/icon/icon-83.5@2x.png -------------------------------------------------------------------------------- /resources/particl-copay/ios/icon/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/ios/icon/icon-small.png -------------------------------------------------------------------------------- /resources/particl-copay/ios/icon/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/ios/icon/icon-small@2x.png -------------------------------------------------------------------------------- /resources/particl-copay/ios/icon/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/ios/icon/icon-small@3x.png -------------------------------------------------------------------------------- /resources/particl-copay/ios/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/ios/icon/icon.png -------------------------------------------------------------------------------- /resources/particl-copay/ios/icon/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/ios/icon/icon@2x.png -------------------------------------------------------------------------------- /resources/particl-copay/ios/splash/Default@2x~universal~anyany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/ios/splash/Default@2x~universal~anyany.png -------------------------------------------------------------------------------- /resources/particl-copay/ios/splash/Default@3x~universal~anyany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/ios/splash/Default@3x~universal~anyany.png -------------------------------------------------------------------------------- /resources/particl-copay/linux/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/linux/favicon.ico -------------------------------------------------------------------------------- /resources/particl-copay/linux/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/linux/icon.png -------------------------------------------------------------------------------- /resources/particl-copay/mac/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/mac/app.icns -------------------------------------------------------------------------------- /resources/particl-copay/mac/dmg-background.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/mac/dmg-background.tiff -------------------------------------------------------------------------------- /resources/particl-copay/mac/volume-icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/mac/volume-icon.icns -------------------------------------------------------------------------------- /resources/particl-copay/windows/app-store/icon-300x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/windows/app-store/icon-300x300.png -------------------------------------------------------------------------------- /resources/particl-copay/windows/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/windows/icon.ico -------------------------------------------------------------------------------- /resources/particl-copay/windows/icon/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/windows/icon/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /resources/particl-copay/windows/icon/Square150x150Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/windows/icon/Square150x150Logo.scale-240.png -------------------------------------------------------------------------------- /resources/particl-copay/windows/icon/Square30x30Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/windows/icon/Square30x30Logo.scale-100.png -------------------------------------------------------------------------------- /resources/particl-copay/windows/icon/Square310x310Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/windows/icon/Square310x310Logo.scale-100.png -------------------------------------------------------------------------------- /resources/particl-copay/windows/icon/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/windows/icon/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /resources/particl-copay/windows/icon/Square44x44Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/windows/icon/Square44x44Logo.scale-240.png -------------------------------------------------------------------------------- /resources/particl-copay/windows/icon/Square70x70Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/windows/icon/Square70x70Logo.scale-100.png -------------------------------------------------------------------------------- /resources/particl-copay/windows/icon/Square71x71Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/windows/icon/Square71x71Logo.scale-100.png -------------------------------------------------------------------------------- /resources/particl-copay/windows/icon/Square71x71Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/windows/icon/Square71x71Logo.scale-240.png -------------------------------------------------------------------------------- /resources/particl-copay/windows/icon/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/windows/icon/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /resources/particl-copay/windows/icon/StoreLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/windows/icon/StoreLogo.scale-240.png -------------------------------------------------------------------------------- /resources/particl-copay/windows/icon/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/windows/icon/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /resources/particl-copay/windows/icon/Wide310x150Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/windows/icon/Wide310x150Logo.scale-240.png -------------------------------------------------------------------------------- /resources/particl-copay/windows/splash/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/windows/splash/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /resources/particl-copay/windows/splash/SplashScreenPhone.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/particl-copay/windows/splash/SplashScreenPhone.scale-240.png -------------------------------------------------------------------------------- /resources/src.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/resources/src.sketch -------------------------------------------------------------------------------- /src/app/app.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/main.ts: -------------------------------------------------------------------------------- 1 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; 2 | // tslint:disable-next-line:no-submodule-imports 3 | import 'web-animations-js/web-animations.min'; 4 | 5 | import { AppModule } from './app.module'; 6 | 7 | platformBrowserDynamic().bootstrapModule(AppModule); 8 | -------------------------------------------------------------------------------- /src/assets/fonts/AmazonEmberDisplay_Bd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/AmazonEmberDisplay_Bd.ttf -------------------------------------------------------------------------------- /src/assets/fonts/AmazonEmberDisplay_He.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/AmazonEmberDisplay_He.ttf -------------------------------------------------------------------------------- /src/assets/fonts/AmazonEmberDisplay_Lt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/AmazonEmberDisplay_Lt.ttf -------------------------------------------------------------------------------- /src/assets/fonts/AmazonEmberDisplay_Md.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/AmazonEmberDisplay_Md.ttf -------------------------------------------------------------------------------- /src/assets/fonts/AmazonEmberDisplay_Rg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/AmazonEmberDisplay_Rg.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/Roboto-Medium.woff -------------------------------------------------------------------------------- /src/assets/fonts/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/Roboto-Regular.woff -------------------------------------------------------------------------------- /src/assets/fonts/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/icomoon.eot -------------------------------------------------------------------------------- /src/assets/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/icomoon.ttf -------------------------------------------------------------------------------- /src/assets/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/icomoon.woff -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/noto-sans-bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/noto-sans-bold.woff -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/noto-sans-regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/noto-sans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/noto-sans-regular.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/roboto-bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/roboto-bold.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/roboto-bold.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/roboto-light.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/roboto-light.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto-light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/fonts/roboto-light.woff2 -------------------------------------------------------------------------------- /src/assets/img/coinbase/coinbase-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/coinbase/coinbase-icon.png -------------------------------------------------------------------------------- /src/assets/img/coinbase/coinbase-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/coinbase/coinbase-logo.png -------------------------------------------------------------------------------- /src/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/favicon.ico -------------------------------------------------------------------------------- /src/assets/img/gift-cards/amazon/amazon-gift-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/gift-cards/amazon/amazon-gift-card.png -------------------------------------------------------------------------------- /src/assets/img/gift-cards/amazon/amazon-japan-gift-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/gift-cards/amazon/amazon-japan-gift-card.png -------------------------------------------------------------------------------- /src/assets/img/gift-cards/amazon/amazon-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/gift-cards/amazon/amazon-logo.png -------------------------------------------------------------------------------- /src/assets/img/gift-cards/carnival-cruise-line/carnival-cruise-line-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/gift-cards/carnival-cruise-line/carnival-cruise-line-card.png -------------------------------------------------------------------------------- /src/assets/img/gift-cards/carnival-cruise-line/carnival-cruise-line-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/gift-cards/carnival-cruise-line/carnival-cruise-line-icon.png -------------------------------------------------------------------------------- /src/assets/img/gift-cards/delta/delta-gift-card-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/gift-cards/delta/delta-gift-card-white.png -------------------------------------------------------------------------------- /src/assets/img/gift-cards/delta/delta-gift-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/gift-cards/delta/delta-gift-card.png -------------------------------------------------------------------------------- /src/assets/img/gift-cards/delta/delta-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/gift-cards/delta/delta-icon.png -------------------------------------------------------------------------------- /src/assets/img/gift-cards/delta/delta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/gift-cards/delta/delta-logo.png -------------------------------------------------------------------------------- /src/assets/img/gift-cards/google-play/google-play-gift-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/gift-cards/google-play/google-play-gift-card.png -------------------------------------------------------------------------------- /src/assets/img/gift-cards/google-play/google-play-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/gift-cards/google-play/google-play-icon.png -------------------------------------------------------------------------------- /src/assets/img/gift-cards/home-depot/home-depot-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/gift-cards/home-depot/home-depot-card.png -------------------------------------------------------------------------------- /src/assets/img/gift-cards/hotels.com/hotels.com-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/gift-cards/hotels.com/hotels.com-card.png -------------------------------------------------------------------------------- /src/assets/img/gift-cards/mercado-libre/mercado-livre-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/gift-cards/mercado-libre/mercado-livre-card.png -------------------------------------------------------------------------------- /src/assets/img/gift-cards/mercado-libre/mercado-livre-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/gift-cards/mercado-libre/mercado-livre-logo.png -------------------------------------------------------------------------------- /src/assets/img/gift-cards/royal-caribbean/royal-caribbean-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/gift-cards/royal-caribbean/royal-caribbean-card.png -------------------------------------------------------------------------------- /src/assets/img/gift-cards/uber-eats/uber-eats-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/gift-cards/uber-eats/uber-eats-card.png -------------------------------------------------------------------------------- /src/assets/img/gift-cards/uber/uber-gift-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/gift-cards/uber/uber-gift-card.png -------------------------------------------------------------------------------- /src/assets/img/gift-cards/uber/uber-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/gift-cards/uber/uber-logo.png -------------------------------------------------------------------------------- /src/assets/img/glidera/glidera-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/glidera/glidera-icon.png -------------------------------------------------------------------------------- /src/assets/img/glidera/glidera-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/glidera/glidera-logo.png -------------------------------------------------------------------------------- /src/assets/img/ico-link.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/assets/img/icon-flash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/assets/img/icon-heart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/img/icon-import.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/assets/img/icon-wallet.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 9 | 10 | -------------------------------------------------------------------------------- /src/assets/img/icon-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/icon-warning.png -------------------------------------------------------------------------------- /src/assets/img/illustration-send-feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/illustration-send-feedback.png -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/art.svg: -------------------------------------------------------------------------------- 1 | art -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/bicycle.svg: -------------------------------------------------------------------------------- 1 | bicycle -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/boat.svg: -------------------------------------------------------------------------------- 1 | boat -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/books.svg: -------------------------------------------------------------------------------- 1 | books -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/bowling.svg: -------------------------------------------------------------------------------- 1 | bowling -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/bus.svg: -------------------------------------------------------------------------------- 1 | bus -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/clean.svg: -------------------------------------------------------------------------------- 1 | clean -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/clock.svg: -------------------------------------------------------------------------------- 1 | clock -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/diamond-ring.svg: -------------------------------------------------------------------------------- 1 | diamond-ring -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/film.svg: -------------------------------------------------------------------------------- 1 | film -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/football.svg: -------------------------------------------------------------------------------- 1 | football -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/furniture.svg: -------------------------------------------------------------------------------- 1 | furniture -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/golf.svg: -------------------------------------------------------------------------------- 1 | golf -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/law.svg: -------------------------------------------------------------------------------- 1 | law -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/mail.svg: -------------------------------------------------------------------------------- 1 | mail -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/medical.svg: -------------------------------------------------------------------------------- 1 | medical -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/money.svg: -------------------------------------------------------------------------------- 1 | money -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/motorcycle.svg: -------------------------------------------------------------------------------- 1 | motorcycle -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/music.svg: -------------------------------------------------------------------------------- 1 | music -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/newspaper.svg: -------------------------------------------------------------------------------- 1 | newspaper -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/park.svg: -------------------------------------------------------------------------------- 1 | park -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/people.svg: -------------------------------------------------------------------------------- 1 | people -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/purchase.svg: -------------------------------------------------------------------------------- 1 | purchase -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/repair.svg: -------------------------------------------------------------------------------- 1 | repair -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/sadface.svg: -------------------------------------------------------------------------------- 1 | sadface -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/scissors.svg: -------------------------------------------------------------------------------- 1 | scissors -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/search.svg: -------------------------------------------------------------------------------- 1 | search -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/shirt.svg: -------------------------------------------------------------------------------- 1 | shirt -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/shoes.svg: -------------------------------------------------------------------------------- 1 | shoes -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/smiley-face.svg: -------------------------------------------------------------------------------- 1 | smiley-face -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/television.svg: -------------------------------------------------------------------------------- 1 | television -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/tent.svg: -------------------------------------------------------------------------------- 1 | tent -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/ticket.svg: -------------------------------------------------------------------------------- 1 | ticket -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/toy.svg: -------------------------------------------------------------------------------- 1 | toy -------------------------------------------------------------------------------- /src/assets/img/mcc-icons/watch.svg: -------------------------------------------------------------------------------- 1 | watch -------------------------------------------------------------------------------- /src/assets/img/onboarding-welcome-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/onboarding-welcome-bg.png -------------------------------------------------------------------------------- /src/assets/img/paste-clipboard.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/assets/img/settings-icons/mercado-libre/meli-card-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/settings-icons/mercado-libre/meli-card-24px.png -------------------------------------------------------------------------------- /src/assets/img/shapeshift/shapeshift_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/shapeshift/shapeshift_background.jpg -------------------------------------------------------------------------------- /src/assets/img/social-icons/ico-social-facebook.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /src/assets/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/assets/img/spinner.png -------------------------------------------------------------------------------- /src/components/action-card/action-card.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |
5 | 6 |
7 |
8 | 9 |
10 |
11 | 12 |
-------------------------------------------------------------------------------- /src/components/action-card/action-card.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | host: { class: 'card' }, 5 | selector: 'action-card', 6 | templateUrl: 'action-card.html' 7 | }) 8 | export class ActionCardComponent {} 9 | -------------------------------------------------------------------------------- /src/components/action-sheet/action-sheet.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
-------------------------------------------------------------------------------- /src/components/action-sheets.ts: -------------------------------------------------------------------------------- 1 | import { ActionSheetComponent } from './action-sheet/action-sheet'; 2 | import { IncomingDataMenuComponent } from './incoming-data-menu/incoming-data-menu'; 3 | import { INFO_SHEET_COMPONENTS } from './info-sheet/info-sheet'; 4 | import { OptionsSheetComponent } from './options-sheet/options-sheet'; 5 | import { WalletSelectorComponent } from './wallet-selector/wallet-selector'; 6 | 7 | export const ACTION_SHEET_COMPONENTS = [ 8 | ActionSheetComponent, 9 | INFO_SHEET_COMPONENTS, 10 | OptionsSheetComponent, 11 | IncomingDataMenuComponent, 12 | WalletSelectorComponent 13 | ]; 14 | -------------------------------------------------------------------------------- /src/components/clipboard-card/clipboard-card.ts: -------------------------------------------------------------------------------- 1 | import { Component, Input } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'page-clipboard-card', 5 | templateUrl: 'clipboard-card.html' 6 | }) 7 | export class ClipboardCardPage { 8 | @Input() 9 | validDataFromClipboard; 10 | @Input() 11 | payProDetailsData; 12 | @Input() 13 | remainingTimeStr; 14 | 15 | constructor() {} 16 | } 17 | -------------------------------------------------------------------------------- /src/components/expandable-header/expandable-header.scss: -------------------------------------------------------------------------------- 1 | expandable-header { 2 | display: block; 3 | overflow: hidden; 4 | } 5 | -------------------------------------------------------------------------------- /src/components/options-sheet/options-sheet.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | import { ActionSheetParent } from '../action-sheet/action-sheet-parent'; 3 | 4 | @Component({ 5 | selector: 'options-sheet', 6 | templateUrl: 'options-sheet.html' 7 | }) 8 | export class OptionsSheetComponent extends ActionSheetParent { 9 | constructor() { 10 | super(); 11 | } 12 | 13 | public optionClicked(option): void { 14 | this.dismiss(option); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/directives/animate/animate.ts: -------------------------------------------------------------------------------- 1 | import { Directive, ElementRef, Renderer } from '@angular/core'; 2 | 3 | @Directive({ 4 | selector: '[animate]' 5 | }) 6 | export class Animate { 7 | constructor(public el: ElementRef, public renderer: Renderer) {} 8 | 9 | animate(animationName: string) { 10 | this.renderer.setElementClass(this.el.nativeElement, animationName, true); 11 | setTimeout(() => { 12 | this.renderer.setElementClass( 13 | this.el.nativeElement, 14 | animationName, 15 | false 16 | ); 17 | }, 600); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/environments/dev.ts: -------------------------------------------------------------------------------- 1 | import production from './prod'; 2 | import { EnvironmentSchema } from './schema'; 3 | 4 | /** 5 | * Environment: dev 6 | */ 7 | const env: EnvironmentSchema = { 8 | // Start with production config, 9 | ...production, 10 | // override for development: 11 | name: 'development' 12 | }; 13 | 14 | export default env; 15 | -------------------------------------------------------------------------------- /src/environments/prod.ts: -------------------------------------------------------------------------------- 1 | import { EnvironmentSchema } from './schema'; 2 | 3 | /** 4 | * Environment: prod 5 | */ 6 | const env: EnvironmentSchema = { 7 | name: 'production', 8 | enableAnimations: true, 9 | ratesAPI: { 10 | btc: 'https://bitpay.com/api/rates', 11 | bch: 'https://bitpay.com/api/rates/bch', 12 | part: 'https://api.coinmarketcap.com/v1/ticker/particl/' 13 | }, 14 | activateScanner: true 15 | }; 16 | 17 | export default env; 18 | -------------------------------------------------------------------------------- /src/environments/schema.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copay does not yet build with Angular CLI, but our environment system works 3 | * the same way. 4 | */ 5 | export interface EnvironmentSchema { 6 | name: 'production' | 'development' | 'e2e'; 7 | enableAnimations: boolean; 8 | ratesAPI: { 9 | btc: string; 10 | bch: string; 11 | part: string; 12 | }; 13 | activateScanner: boolean; 14 | } 15 | -------------------------------------------------------------------------------- /src/pages/add/add.scss: -------------------------------------------------------------------------------- 1 | page-add { 2 | .list-button { 3 | margin-top: 1rem; 4 | padding-top: 10px; 5 | padding-bottom: 10px; 6 | .item-inner { 7 | border: none !important; 8 | } 9 | } 10 | .join-icon { 11 | img { 12 | padding: 6px; 13 | } 14 | } 15 | .import-icon { 16 | img { 17 | padding: 0px; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/pages/add/copayers/copayers.scss: -------------------------------------------------------------------------------- 1 | page-copayers { 2 | .qr-container { 3 | padding: 30px; 4 | height: 50%; 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/pages/add/create-wallet/create-wallet.scss: -------------------------------------------------------------------------------- 1 | page-create-wallet { 2 | } 3 | -------------------------------------------------------------------------------- /src/pages/add/join-wallet/join-wallet.scss: -------------------------------------------------------------------------------- 1 | page-join-wallet { 2 | .scanner-icon { 3 | z-index: 99; 4 | font-size: 28px; 5 | color: color($colors, primary); 6 | } 7 | .check { 8 | font-size: 22px; 9 | padding-top: 3px; 10 | &.success { 11 | color: color($colors, success); 12 | } 13 | &.fail { 14 | color: color($colors, danger); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/pages/cold-staking/enable/enable.scss: -------------------------------------------------------------------------------- 1 | page-cold-staking-enable { 2 | .error-text { 3 | color: color($colors, error); 4 | } 5 | .scanner-icon { 6 | z-index: 99; 7 | font-size: 28px; 8 | color: color($colors, primary); 9 | } 10 | .check { 11 | font-size: 22px; 12 | padding-top: 3px; 13 | &.success { 14 | color: color($colors, success); 15 | } 16 | &.fail { 17 | color: color($colors, danger); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/pages/home/activity/activity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/pages/home/activity/activity.scss -------------------------------------------------------------------------------- /src/pages/home/proposals/proposals.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{'Pending Proposals'|translate}} 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | No pending proposals 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/pages/home/proposals/proposals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particl/copay/35b9d5ad2b2df647ce1f99b96bf46120ca9bc24e/src/pages/home/proposals/proposals.scss -------------------------------------------------------------------------------- /src/pages/includes/gravatar/gravatar.html: -------------------------------------------------------------------------------- 1 | {{ name }} -------------------------------------------------------------------------------- /src/pages/includes/gravatar/gravatar.scss: -------------------------------------------------------------------------------- 1 | gravatar { 2 | img { 3 | background-color: white; 4 | border-radius: 50px; 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/pages/includes/gravatar/gravatar.ts: -------------------------------------------------------------------------------- 1 | import { Component, Input } from '@angular/core'; 2 | import { Md5 } from 'ts-md5/dist/md5'; 3 | 4 | @Component({ 5 | selector: 'gravatar', 6 | templateUrl: 'gravatar.html' 7 | }) 8 | export class GravatarPage { 9 | public emailHash; 10 | 11 | @Input() 12 | email: string; 13 | @Input() 14 | name: string; 15 | @Input() 16 | height: number; 17 | @Input() 18 | width: number; 19 | 20 | constructor() {} 21 | 22 | ngOnInit() { 23 | if (typeof this.email === 'string') { 24 | this.emailHash = Md5.hashStr(this.email.toLowerCase() || ''); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/pages/includes/wallet-activity/wallet-activity.scss: -------------------------------------------------------------------------------- 1 | page-wallet-activity { 2 | ion-note { 3 | text-align: end; 4 | .amount { 5 | color: color($colors, dark); 6 | } 7 | .date { 8 | font-size: 12.5px; 9 | } 10 | } 11 | .activity-container { 12 | border-left: 2px solid color($colors, primary); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/pages/includes/wallet-activity/wallet-activity.ts: -------------------------------------------------------------------------------- 1 | import { Component, Input } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'page-wallet-activity', 5 | templateUrl: 'wallet-activity.html' 6 | }) 7 | export class WalletActivityPage { 8 | private _notification; 9 | 10 | @Input() 11 | set notification(notification) { 12 | this._notification = notification; 13 | } 14 | 15 | get notification() { 16 | return this._notification; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/pages/integrations/bitpay-card/bitpay-settings/bitpay-settings.scss: -------------------------------------------------------------------------------- 1 | page-bitpay-settings { 2 | } 3 | -------------------------------------------------------------------------------- /src/pages/integrations/coinbase/coinbase-settings/coinbase-settings.scss: -------------------------------------------------------------------------------- 1 | page-coinbase-settings { 2 | } 3 | -------------------------------------------------------------------------------- /src/pages/integrations/coinbase/coinbase-tx-details/coinbase-tx-details.scss: -------------------------------------------------------------------------------- 1 | page-coinbase-tx-details { 2 | ion-card img { 3 | width: 90px; 4 | margin: 0 auto; 5 | } 6 | .title { 7 | font-size: 22px; 8 | } 9 | .price { 10 | font-size: 12.5px; 11 | } 12 | .alternative-price { 13 | font-size: 12.5px; 14 | font-weight: 500; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/pages/integrations/coinbase/coinbase.scss: -------------------------------------------------------------------------------- 1 | page-coinbase { 2 | .center-header { 3 | text-align: center; 4 | height: 100%; 5 | display: flex; 6 | flex-direction: column; 7 | align-items: center; 8 | justify-content: center; 9 | } 10 | .main-header { 11 | position: relative; 12 | padding: 20px 0; 13 | text-align: center; 14 | background: #0667d0; 15 | ion-spinner { 16 | position: absolute; 17 | bottom: 5px; 18 | right: 5px; 19 | * { 20 | stroke: color($colors, light); 21 | } 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/pages/integrations/gift-cards/buy-card/card-description/card-description.scss: -------------------------------------------------------------------------------- 1 | card-description { 2 | > div > div > div { 3 | margin: 20px 0; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/pages/integrations/gift-cards/buy-card/card-description/card-description.ts: -------------------------------------------------------------------------------- 1 | import { Component, Input } from '@angular/core'; 2 | import { 3 | CardConfig, 4 | CardName 5 | } from '../../../../../providers/gift-card/gift-card.types'; 6 | 7 | @Component({ 8 | selector: 'card-description', 9 | templateUrl: 'card-description.html' 10 | }) 11 | export class CardDescriptionComponent { 12 | CardName = CardName; 13 | 14 | @Input() 15 | cardConfig: CardConfig; 16 | 17 | prepForMarkdown(markdown: string) { 18 | return markdown && markdown.replace(/•/gm, '-'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/pages/integrations/gift-cards/card-catalog/card-catalog.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | {{'Brands' | translate}} 6 | 7 | 8 | 9 |
10 |
-------------------------------------------------------------------------------- /src/pages/integrations/gift-cards/card-catalog/card-catalog.scss: -------------------------------------------------------------------------------- 1 | card-catalog-page { 2 | .settings-list { 3 | position: relative; 4 | z-index: 0; 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/pages/integrations/gift-cards/card-details/redeem-instructions/redeem-instructions.scss: -------------------------------------------------------------------------------- 1 | redeem-instructions { 2 | span { 3 | p:first-child { 4 | margin-top: 0; 5 | } 6 | 7 | p:last-child { 8 | margin-bottom: 0; 9 | } 10 | } 11 | 12 | li { 13 | margin: 10px 0; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/pages/integrations/gift-cards/card-details/redeem-instructions/redeem-instructions.ts: -------------------------------------------------------------------------------- 1 | import { Component, Input } from '@angular/core'; 2 | import { 3 | CardConfig, 4 | CardName 5 | } from '../../../../../providers/gift-card/gift-card.types'; 6 | 7 | @Component({ 8 | selector: 'redeem-instructions', 9 | templateUrl: 'redeem-instructions.html' 10 | }) 11 | export class RedeemInstructionsComponent { 12 | CardName = CardName; 13 | 14 | @Input() 15 | cardConfig: CardConfig; 16 | 17 | @Input() 18 | params: any; 19 | } 20 | -------------------------------------------------------------------------------- /src/pages/integrations/gift-cards/card-terms/card-terms.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/integrations/gift-cards/card-terms/card-terms.scss: -------------------------------------------------------------------------------- 1 | card-terms { 2 | display: block; 3 | margin-top: 30px; 4 | margin-bottom: 40px; 5 | 6 | .terms * { 7 | font-size: 12px; 8 | line-height: 18px; 9 | color: rgba(58, 58, 58, 0.5); 10 | } 11 | 12 | .terms p { 13 | margin-bottom: 20px; 14 | margin-top: 20px; 15 | 16 | &:first-child { 17 | margin-top: 0; 18 | } 19 | } 20 | 21 | .terms { 22 | ol, 23 | ul { 24 | text-align: left; 25 | } 26 | } 27 | } 28 | 29 | a { 30 | text-decoration: none; 31 | } 32 | -------------------------------------------------------------------------------- /src/pages/integrations/gift-cards/gift-card-settings/gift-card-settings.scss: -------------------------------------------------------------------------------- 1 | gift-card-settings-page { 2 | .receipt-email { 3 | margin-top: 40px; 4 | margin-bottom: 10px; 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/pages/integrations/gift-cards/gift-cards-settings/gift-cards-settings.scss: -------------------------------------------------------------------------------- 1 | gift-cards-settings-page { 2 | card-list-item { 3 | ion-note { 4 | display: none; 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/pages/integrations/glidera/glidera-settings/glidera-settings.scss: -------------------------------------------------------------------------------- 1 | page-glidera-settings { 2 | } 3 | -------------------------------------------------------------------------------- /src/pages/integrations/glidera/glidera-tx-details/glidera-tx-details.scss: -------------------------------------------------------------------------------- 1 | page-glidera-tx-details { 2 | ion-card img { 3 | width: 90px; 4 | margin: 0 auto; 5 | } 6 | .title { 7 | font-size: 22px; 8 | } 9 | .price { 10 | font-size: 12.5px; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/pages/integrations/glidera/glidera-tx-details/glidera-tx-details.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | import { NavParams, ViewController } from 'ionic-angular'; 3 | 4 | @Component({ 5 | selector: 'page-glidera-tx-details', 6 | templateUrl: 'glidera-tx-details.html' 7 | }) 8 | export class GlideraTxDetailsPage { 9 | public tx; 10 | 11 | constructor(private navParams: NavParams, private viewCtrl: ViewController) { 12 | this.tx = this.navParams.data.tx; 13 | } 14 | 15 | public close(): void { 16 | this.viewCtrl.dismiss(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/pages/integrations/integrations.ts: -------------------------------------------------------------------------------- 1 | export function setPrice(isFiat: boolean, amount: number) { 2 | return { 3 | fiat: isFiat ? amount : undefined, 4 | qty: isFiat ? undefined : amount 5 | }; 6 | } 7 | 8 | export interface Price { 9 | qty?: number; 10 | amount?: number; 11 | } 12 | -------------------------------------------------------------------------------- /src/pages/integrations/shapeshift/shapeshift-settings/shapeshift-settings.scss: -------------------------------------------------------------------------------- 1 | page-shapeshift-settings { 2 | ion-label, 3 | .item-title { 4 | white-space: normal; 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | display: -webkit-box; 8 | line-clamp: 2; 9 | -webkit-line-clamp: 2; 10 | box-orient: vertical; 11 | -webkit-box-orient: vertical; 12 | } 13 | ion-spinner { 14 | position: fixed; 15 | top: 50%; 16 | left: 50%; 17 | margin-left: -1em; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/pages/paper-wallet/paper-wallet.scss: -------------------------------------------------------------------------------- 1 | page-paper-wallet { 2 | ion-content { 3 | .fixed-content, 4 | .scroll-content { 5 | margin-bottom: 90px; 6 | } 7 | } 8 | .message { 9 | text-align: center; 10 | background: color($colors, warning); 11 | color: white; 12 | } 13 | .title { 14 | padding: 10px; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/pages/paypro/paypro.scss: -------------------------------------------------------------------------------- 1 | page-payrpo { 2 | .amount-label { 3 | padding-top: 1rem; 4 | .amount { 5 | font-size: 3.5rem; 6 | } 7 | .alternative { 8 | margin-top: 0.5rem; 9 | color: color($colors, grey); 10 | } 11 | } 12 | .comment, 13 | .certified { 14 | margin-top: 1rem; 15 | color: color($colors, grey); 16 | } 17 | ion-icon { 18 | padding-right: 0.5rem; 19 | } 20 | .danger { 21 | ion-icon { 22 | color: color($colors, danger); 23 | } 24 | } 25 | .warning { 26 | ion-icon, 27 | span { 28 | color: color($colors, warning); 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/pages/pin/pin.ts: -------------------------------------------------------------------------------- 1 | import { PinDots } from './pin-dots/pin-dots.component'; 2 | import { PinModalPage } from './pin-modal/pin-modal'; 3 | import { PinPad } from './pin-pad/pin-pad.component'; 4 | 5 | export const PIN_COMPONENTS = [PinModalPage, PinDots, PinPad]; 6 | -------------------------------------------------------------------------------- /src/pages/send/choose-fee-level/choose-fee-level.scss: -------------------------------------------------------------------------------- 1 | page-choose-fee-level { 2 | .testnet-warning { 3 | width: 100%; 4 | height: 3rem; 5 | background-color: #ffc900; 6 | display: flex; 7 | justify-content: center; 8 | align-items: center; 9 | color: white; 10 | } 11 | 12 | .fee-custom { 13 | .fee-error { 14 | font-size: 12.5px; 15 | color: red; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/pages/send/transfer-to-modal/transfer-to-modal.scss: -------------------------------------------------------------------------------- 1 | page-transfer-to-modal { 2 | } 3 | -------------------------------------------------------------------------------- /src/pages/send/transfer-to-modal/transfer-to-modal.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | import { NavParams, ViewController } from 'ionic-angular'; 3 | 4 | @Component({ 5 | selector: 'page-transfer-to-modal', 6 | templateUrl: 'transfer-to-modal.html' 7 | }) 8 | export class TransferToModalPage { 9 | public search: string = ''; 10 | public wallet; 11 | 12 | constructor(private navParams: NavParams, private viewCtrl: ViewController) { 13 | this.wallet = this.navParams.data.wallet; 14 | } 15 | 16 | public close(): void { 17 | this.viewCtrl.dismiss(); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/pages/send/transfer-to/transfer-to.scss: -------------------------------------------------------------------------------- 1 | page-transfer-to { 2 | .show-more { 3 | display: flex; 4 | text-align: center; 5 | } 6 | .title { 7 | font-weight: 500; 8 | img { 9 | vertical-align: sub; 10 | margin-right: 5px; 11 | } 12 | } 13 | .wallet-warning { 14 | ion-label { 15 | white-space: inherit; 16 | } 17 | } 18 | .wallet-disabled { 19 | background-color: #fbfbfb; 20 | ion-icon { 21 | img { 22 | background-color: #d4d4d4 !important; 23 | } 24 | } 25 | .item-title { 26 | color: #d4d4d4; 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/pages/settings/about/about.scss: -------------------------------------------------------------------------------- 1 | page-about { 2 | .commit-hash { 3 | cursor: pointer; 4 | } 5 | .item-without-title { 6 | margin-top: 0; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/pages/settings/addressbook/add/add.scss: -------------------------------------------------------------------------------- 1 | page-addressbook-add { 2 | .scanner-icon { 3 | z-index: 99; 4 | font-size: 28px; 5 | color: color($colors, primary); 6 | } 7 | .check { 8 | font-size: 22px; 9 | padding-top: 3px; 10 | &.success { 11 | color: color($colors, success); 12 | } 13 | &.fail { 14 | color: color($colors, danger); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/pages/settings/addressbook/view/view.scss: -------------------------------------------------------------------------------- 1 | page-addressbook-view { 2 | .contact-view-header { 3 | position: relative; 4 | height: 70px; 5 | background-color: $toolbar-background; 6 | padding-top: 20px; 7 | margin-bottom: 50px; 8 | text-align: center; 9 | .gravatar { 10 | display: inline-block; 11 | } 12 | } 13 | .btn-send { 14 | color: color($colors, primary); 15 | } 16 | .btn-remove { 17 | color: color($colors, danger); 18 | } 19 | .comment { 20 | color: color($colors, grey); 21 | padding-top: 10px; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/pages/settings/advanced/advanced.scss: -------------------------------------------------------------------------------- 1 | page-advanced { 2 | } 3 | -------------------------------------------------------------------------------- /src/pages/settings/alt-currency/alt-currency.scss: -------------------------------------------------------------------------------- 1 | page-alt-currency { 2 | .loading { 3 | width: 100%; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/pages/settings/fee-policy/fee-policy.scss: -------------------------------------------------------------------------------- 1 | page-fee-policy { 2 | .explanation { 3 | margin: 1rem 0; 4 | } 5 | .description { 6 | margin: 1rem 0; 7 | font-size: 12px; 8 | color: color($colors, grey); 9 | } 10 | .estimates { 11 | padding-bottom: 10px; 12 | } 13 | .fee-minutes, 14 | .fee-rate { 15 | font-weight: bold; 16 | } 17 | .error { 18 | color: color($colors, danger); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/pages/settings/language/language.scss: -------------------------------------------------------------------------------- 1 | page-language { 2 | } 3 | -------------------------------------------------------------------------------- /src/pages/settings/lock/lock.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{'Lock'|translate}} 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | {{opt.label}} 13 | 14 | 15 | 16 | 17 |
18 | {{needsBackupMsg}} 19 |
20 |
-------------------------------------------------------------------------------- /src/pages/settings/lock/lock.scss: -------------------------------------------------------------------------------- 1 | page-lock { 2 | .msg-container { 3 | text-align: center; 4 | margin: 4rem; 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/pages/settings/notifications/notifications.scss: -------------------------------------------------------------------------------- 1 | page-notifications { 2 | } 3 | -------------------------------------------------------------------------------- /src/pages/settings/settings.scss: -------------------------------------------------------------------------------- 1 | page-settings { 2 | ion-label, 3 | .item-title { 4 | white-space: normal; 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | display: -webkit-box; 8 | line-clamp: 2; 9 | -webkit-line-clamp: 2; 10 | box-orient: vertical; 11 | -webkit-box-orient: vertical; 12 | } 13 | .icon-wallet, 14 | .icon-services { 15 | width: 25px; 16 | height: 25px; 17 | } 18 | .icon-card { 19 | width: 25px; 20 | height: 25px; 21 | } 22 | .icon-services { 23 | box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2); 24 | padding: 0rem; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/pages/settings/wallet-settings/wallet-color/wallet-color.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{'Wallet Color' | translate}} 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/pages/settings/wallet-settings/wallet-name/wallet-name.scss: -------------------------------------------------------------------------------- 1 | page-wallet-name { 2 | .settings-explanation { 3 | padding: 16px; 4 | .settings-heading { 5 | font-size: 17px; 6 | margin: 1rem 0; 7 | } 8 | .settings-description { 9 | font-size: 12px; 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/pages/settings/wallet-settings/wallet-settings-advanced/wallet-addresses/all-addresses/all-addresses.scss: -------------------------------------------------------------------------------- 1 | page-all-addresses { 2 | .item { 3 | cursor: pointer; 4 | .info { 5 | color: color($colors, primary) !important; 6 | margin-top: 1px; 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/pages/settings/wallet-settings/wallet-settings-advanced/wallet-delete/wallet-delete.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{'Delete Wallet' | translate}} 4 | 5 | 6 | 7 |

Warning!

8 |

9 | Permanently delete this wallet. 10 |

11 |

12 | THIS ACTION CANNOT BE REVERSED 13 |

14 | 17 |
-------------------------------------------------------------------------------- /src/pages/settings/wallet-settings/wallet-settings-advanced/wallet-delete/wallet-delete.scss: -------------------------------------------------------------------------------- 1 | page-wallet-delete { 2 | text-align: center; 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/settings/wallet-settings/wallet-settings-advanced/wallet-export/wallet-export.scss: -------------------------------------------------------------------------------- 1 | page-wallet-export { 2 | .qrCode { 3 | text-align: center; 4 | padding: 10px; 5 | .aclass > img { 6 | width: 220px; 7 | border: 1px solid #e9e9e9; 8 | border-radius: 4px; 9 | } 10 | } 11 | .not-supported-message { 12 | margin-top: 5rem; 13 | text-align: center; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/pages/settings/wallet-settings/wallet-settings-advanced/wallet-information/wallet-extended-private-key/wallet-extended-private-key.scss: -------------------------------------------------------------------------------- 1 | page-wallet-extended-private-key { 2 | .container { 3 | h3 { 4 | color: color($colors, danger); 5 | } 6 | text-align: center; 7 | .warning-message { 8 | line-height: 18px; 9 | padding: 0 10px; 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/pages/settings/wallet-settings/wallet-settings-advanced/wallet-information/wallet-information.scss: -------------------------------------------------------------------------------- 1 | page-wallet-information { 2 | } 3 | -------------------------------------------------------------------------------- /src/pages/settings/wallet-settings/wallet-settings-advanced/wallet-service-url/wallet-service-url.scss: -------------------------------------------------------------------------------- 1 | page-wallet-service-url { 2 | } 3 | -------------------------------------------------------------------------------- /src/pages/settings/wallet-settings/wallet-settings-advanced/wallet-transaction-history/wallet-transaction-history.scss: -------------------------------------------------------------------------------- 1 | page-wallet-transaction-history { 2 | } 3 | -------------------------------------------------------------------------------- /src/pages/settings/wallet-settings/wallet-settings.scss: -------------------------------------------------------------------------------- 1 | page-wallet-settings { 2 | .assertive { 3 | color: color($colors, danger); 4 | ion-label { 5 | white-space: inherit; 6 | } 7 | } 8 | .item-text { 9 | font-size: 12.5px; 10 | } 11 | .settings-color-block { 12 | display: inline-block; 13 | width: 15px; 14 | height: 15px; 15 | border-radius: 50%; 16 | float: left; 17 | margin: 1rem; 18 | background-color: color($colors, primary); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/pages/tabs/tabs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/pages/tabs/tabs.ts: -------------------------------------------------------------------------------- 1 | import { Component, ViewChild } from '@angular/core'; 2 | import { HomePage } from '../home/home'; 3 | import { ScanPage } from '../scan/scan'; 4 | 5 | @Component({ 6 | templateUrl: 'tabs.html' 7 | }) 8 | export class TabsPage { 9 | @ViewChild('tabs') 10 | tabs; 11 | 12 | homeRoot = HomePage; 13 | scanRoot = ScanPage; 14 | } 15 | -------------------------------------------------------------------------------- /src/pages/templates/wide-header-page/wide-header-page.ts: -------------------------------------------------------------------------------- 1 | import { Component, Input, ViewChild } from '@angular/core'; 2 | import { Content } from 'ionic-angular'; 3 | import { PlatformProvider } from '../../../providers/platform/platform'; 4 | 5 | @Component({ 6 | selector: 'wide-header-page', 7 | templateUrl: 'wide-header-page.html' 8 | }) 9 | export class WideHeaderPage { 10 | @Input() 11 | headerColor: string; 12 | @Input() 13 | title: string; 14 | 15 | @ViewChild(Content) 16 | scrollArea: Content; 17 | 18 | constructor(public platformProvider: PlatformProvider) {} 19 | } 20 | -------------------------------------------------------------------------------- /src/pipes/keys.ts: -------------------------------------------------------------------------------- 1 | /* 2 | * Example use 3 | * Simple: *ngFor="let item of giftCards | keys" 4 | * With an object with objects: *ngFor="let item of (itemsObject | keys : 'date') | orderBy : ['-order']" 5 | */ 6 | 7 | import { Pipe, PipeTransform } from '@angular/core'; 8 | 9 | @Pipe({ 10 | name: 'keys' 11 | }) 12 | export class KeysPipe implements PipeTransform { 13 | transform(value, orderBy?: string) { 14 | let keys = []; 15 | for (let key in value) { 16 | keys.push({ 17 | key, 18 | value: value[key], 19 | order: orderBy ? value[key][orderBy] : null 20 | }); 21 | } 22 | return keys; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/pipes/satToUnit.ts: -------------------------------------------------------------------------------- 1 | import { DecimalPipe } from '@angular/common'; 2 | import { Pipe, PipeTransform } from '@angular/core'; 3 | 4 | @Pipe({ 5 | name: 'satToUnit', 6 | pure: false 7 | }) 8 | export class SatToUnitPipe implements PipeTransform { 9 | constructor(private decimalPipe: DecimalPipe) {} 10 | transform(amount: number, coin: string) { 11 | return ( 12 | this.decimalPipe.transform(amount / 1e8, '1.2-6') + 13 | ' ' + 14 | coin.toUpperCase() 15 | ); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/providers/dom/dom.mock.ts: -------------------------------------------------------------------------------- 1 | import { 2 | ApplicationRef, 3 | ComponentFactoryResolver, 4 | Injectable, 5 | Injector 6 | } from '@angular/core'; 7 | import { DomProvider } from './dom'; 8 | @Injectable() 9 | export class DomProviderMock extends DomProvider { 10 | constructor( 11 | componentFactoryResolver: ComponentFactoryResolver, 12 | injector: Injector, 13 | appRef: ApplicationRef 14 | ) { 15 | super(componentFactoryResolver, injector, appRef); 16 | } 17 | 18 | appendToDom() {} 19 | } 20 | -------------------------------------------------------------------------------- /src/providers/logger/logger.mock.ts: -------------------------------------------------------------------------------- 1 | import { Injectable } from '@angular/core'; 2 | import { Logger } from './logger'; 3 | 4 | @Injectable() 5 | export class LoggerMock extends Logger { 6 | public log() {} 7 | } 8 | -------------------------------------------------------------------------------- /src/providers/persistence/storage/istorage.ts: -------------------------------------------------------------------------------- 1 | import { InjectionToken } from '@angular/core'; 2 | 3 | export interface IStorage { 4 | get(k: string): Promise; 5 | set(k: string, v): Promise; 6 | remove(k: string): Promise; 7 | create(k: string, v): Promise; 8 | } 9 | 10 | export class KeyAlreadyExistsError extends Error { 11 | constructor() { 12 | super('Key already exists'); 13 | } 14 | } 15 | 16 | export let ISTORAGE = new InjectionToken('storage'); 17 | -------------------------------------------------------------------------------- /src/theme/mixins.scss: -------------------------------------------------------------------------------- 1 | @mixin center { 2 | display: flex; 3 | align-items: center; 4 | justify-content: center; 5 | } 6 | 7 | @mixin fix-ios-bg-scroll($bottom-color: $background-color) { 8 | .scroll-content, 9 | .fixed-content { 10 | // This line prevents an ugly gap from appearing between the 11 | // navbar and page content when the user overscrolls on iOS 12 | background-image: linear-gradient( 13 | to bottom, 14 | $toolbar-background, 15 | $toolbar-background 50%, 16 | $bottom-color 50%, 17 | $bottom-color 50%, 18 | $bottom-color 50% 19 | ); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../test/tsconfig.ng-cli.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/spec", 5 | "baseUrl": "./", 6 | "module": "commonjs", 7 | "types": ["jasmine", "node", "chrome"] 8 | }, 9 | "files": ["test.ts", "polyfills.ts"], 10 | "include": ["**/*.spec.ts", "**/*.d.ts"] 11 | } 12 | -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.json' { 2 | const value: any; 3 | export default value; 4 | } 5 | -------------------------------------------------------------------------------- /src/validators/address.ts: -------------------------------------------------------------------------------- 1 | import { FormControl } from '@angular/forms'; 2 | 3 | // Providers 4 | import { AddressProvider } from '../providers/address/address'; 5 | 6 | export class AddressValidator { 7 | static addressProvider: AddressProvider; 8 | 9 | constructor(addressProvider: AddressProvider) { 10 | AddressValidator.addressProvider = addressProvider; 11 | } 12 | 13 | isValid(control: FormControl) { 14 | return AddressValidator.addressProvider.isValid(control.value) 15 | ? null 16 | : { 'Invalid Address': true }; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /test/e2e/fixtures/schema.ts: -------------------------------------------------------------------------------- 1 | export type LocalStorageData = ReadonlyArray<{ 2 | key: string; 3 | value: string; 4 | }>; 5 | -------------------------------------------------------------------------------- /test/e2e/readme.md: -------------------------------------------------------------------------------- 1 | # Notes on E2E Testing 2 | 3 | - **Don't bother `expect`ing the contents of elements on a page.** The primary E2E test should be visual difference testing, so just test the whole page with `expectPage` from `utils`. 4 | - **Don't try too hard to target an element.** If possible, just add a class of `e2e-something-relevant` directly to the html template. Extra classes aren't seen by end users and don't harm performance - by leaving e2e "hooks" in the view, we make maintenance just a little easier. 5 | -------------------------------------------------------------------------------- /test/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.ng-cli.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/e2e", 5 | "baseUrl": "./", 6 | "module": "commonjs", 7 | "target": "es2015", 8 | "types": ["jasmine", "jasminewd2", "node"] 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /test/tsconfig.ng-cli.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../dist/out-tsc", 5 | "target": "es5", 6 | "typeRoots": ["../node_modules/@types"], 7 | "lib": ["es2015", "dom"] 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /test/visual/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM circleci/node:9-browsers 2 | USER root 3 | COPY package.json /copay/package.json 4 | COPY src/environments/dev.ts /copay/src/environments/dev.ts 5 | WORKDIR /copay/ 6 | RUN npm install --unsafe-perm 7 | COPY . /copay/ 8 | CMD [ "npm", "run", "e2e:capture-latest"] --------------------------------------------------------------------------------