├── .dockerignore ├── .github └── workflows │ ├── desktop.build.yml │ ├── docker.build.yml │ └── web.build.yml ├── .gitignore ├── .vscode └── tasks.json ├── README.md ├── client ├── .docker │ ├── Dockerfile │ └── nginx │ │ └── default.conf ├── .env ├── .gitignore ├── README.md ├── config-overrides.js ├── docker-compose.yml ├── env │ ├── .env.desktop │ ├── .env.desktop.build │ ├── .env.net │ └── .env.web ├── package-lock.json ├── package.json ├── public │ ├── HavenWebWorker4.2.0.js │ ├── HavenWebWorker4.2.0.js.LICENSE.txt │ ├── HavenWebWorker4.2.0.js.map │ ├── favicon │ │ ├── android-icon-144x144.png │ │ ├── android-icon-192x192.png │ │ ├── android-icon-36x36.png │ │ ├── android-icon-48x48.png │ │ ├── android-icon-72x72.png │ │ ├── android-icon-96x96.png │ │ ├── apple-icon-114x114.png │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-144x144.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-180x180.png │ │ ├── apple-icon-57x57.png │ │ ├── apple-icon-60x60.png │ │ ├── apple-icon-72x72.png │ │ ├── apple-icon-76x76.png │ │ ├── apple-icon-precomposed.png │ │ ├── apple-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ ├── manifest.json │ │ ├── ms-icon-144x144.png │ │ ├── ms-icon-150x150.png │ │ ├── ms-icon-310x310.png │ │ └── ms-icon-70x70.png │ ├── haven_offshore4.2.0.js │ ├── haven_offshore4.2.0.wasm │ ├── index.html │ ├── manifest.json │ ├── nodes.json │ └── pwa │ │ ├── android │ │ ├── android-launchericon-144-144.png │ │ ├── android-launchericon-192-192.png │ │ ├── android-launchericon-48-48.png │ │ ├── android-launchericon-512-512.png │ │ ├── android-launchericon-72-72.png │ │ └── android-launchericon-96-96.png │ │ ├── chrome │ │ ├── chrome-extensionmanagementpage-48-48.png │ │ ├── chrome-favicon-16-16.png │ │ └── chrome-installprocess-128-128.png │ │ ├── firefox │ │ ├── firefox-general-128-128.png │ │ ├── firefox-general-16-16.png │ │ ├── firefox-general-256-256.png │ │ ├── firefox-general-32-32.png │ │ ├── firefox-general-48-48.png │ │ ├── firefox-general-64-64.png │ │ ├── firefox-general-90-90.png │ │ ├── firefox-marketplace-128-128.png │ │ └── firefox-marketplace-512-512.png │ │ ├── icons.json │ │ ├── ios │ │ ├── ios-appicon-1024-1024.png │ │ ├── ios-appicon-120-120.png │ │ ├── ios-appicon-152-152.png │ │ ├── ios-appicon-180-180.png │ │ ├── ios-appicon-76-76.png │ │ ├── ios-launchimage-1024-768.png │ │ ├── ios-launchimage-1242-2208.png │ │ ├── ios-launchimage-1334-750.png │ │ ├── ios-launchimage-1536-2048.png │ │ ├── ios-launchimage-2048-1536.png │ │ ├── ios-launchimage-2208-1242.png │ │ ├── ios-launchimage-640-1136.png │ │ ├── ios-launchimage-640-960.png │ │ ├── ios-launchimage-750-1334.png │ │ └── ios-launchimage-768-1024.png │ │ ├── windows │ │ ├── windows-smallsquare-24-24.png │ │ ├── windows-smallsquare-30-30.png │ │ ├── windows-smallsquare-42-42.png │ │ ├── windows-smallsquare-54-54.png │ │ ├── windows-splashscreen-1116-540.png │ │ ├── windows-splashscreen-620-300.png │ │ ├── windows-splashscreen-868-420.png │ │ ├── windows-squarelogo-120-120.png │ │ ├── windows-squarelogo-150-150.png │ │ ├── windows-squarelogo-210-210.png │ │ ├── windows-squarelogo-270-270.png │ │ ├── windows-storelogo-50-50.png │ │ ├── windows-storelogo-70-70.png │ │ ├── windows-storelogo-90-90.png │ │ ├── windowsphone-appicon-106-106.png │ │ ├── windowsphone-appicon-44-44.png │ │ ├── windowsphone-appicon-62-62.png │ │ ├── windowsphone-mediumtile-150-150.png │ │ ├── windowsphone-mediumtile-210-210.png │ │ ├── windowsphone-mediumtile-360-360.png │ │ ├── windowsphone-smalltile-170-170.png │ │ ├── windowsphone-smalltile-71-71.png │ │ ├── windowsphone-smalltile-99-99.png │ │ ├── windowsphone-storelogo-120-120.png │ │ ├── windowsphone-storelogo-50-50.png │ │ └── windowsphone-storelogo-70-70.png │ │ └── windows10 │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square310x310Logo.scale-100.png │ │ ├── Square310x310Logo.scale-125.png │ │ ├── Square310x310Logo.scale-150.png │ │ ├── Square310x310Logo.scale-200.png │ │ ├── Square310x310Logo.scale-400.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-16_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-256_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── Square44x44Logo.targetsize-48_altform-unplated.png │ │ ├── Square71x71Logo.scale-100.png │ │ ├── Square71x71Logo.scale-125.png │ │ ├── Square71x71Logo.scale-150.png │ │ ├── Square71x71Logo.scale-200.png │ │ ├── Square71x71Logo.scale-400.png │ │ ├── StoreLogo.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png ├── src │ ├── assets │ │ ├── backgrounds │ │ │ ├── dark.svg │ │ │ ├── light.svg │ │ │ └── sepia.svg │ │ ├── blog │ │ │ ├── b_v1.svg │ │ │ ├── b_v10.svg │ │ │ ├── b_v11.svg │ │ │ ├── b_v12.svg │ │ │ ├── b_v13.svg │ │ │ ├── b_v2.svg │ │ │ ├── b_v3.svg │ │ │ ├── b_v4.svg │ │ │ ├── b_v5.svg │ │ │ ├── b_v6.svg │ │ │ ├── b_v7.svg │ │ │ ├── b_v8.svg │ │ │ └── b_v9.svg │ │ ├── fonts │ │ │ ├── Inter-Bold.woff │ │ │ ├── Inter-Bold.woff2 │ │ │ ├── Inter-Regular.woff │ │ │ ├── Inter-Regular.woff2 │ │ │ ├── Inter-SemiBold.woff │ │ │ └── Inter-SemiBold.woff2 │ │ ├── icons │ │ │ ├── arrow-up.svg │ │ │ ├── binary.svg │ │ │ ├── chevron.svg │ │ │ ├── dropdown-chevron.svg │ │ │ ├── dropdown.svg │ │ │ ├── haven-dark.svg │ │ │ ├── haven.svg │ │ │ ├── illustration.svg │ │ │ ├── incomplete.svg │ │ │ ├── incomplete_dark.svg │ │ │ ├── options.svg │ │ │ ├── sync-solid.svg │ │ │ ├── tick.svg │ │ │ └── vault.svg │ │ ├── illustration │ │ │ ├── funnel │ │ │ │ └── xhv.svg │ │ │ ├── no_transactions.svg │ │ │ ├── old │ │ │ │ ├── how.svg │ │ │ │ ├── mining.svg │ │ │ │ ├── miningImage.svg │ │ │ │ ├── what.svg │ │ │ │ └── why.svg │ │ │ └── onboarding │ │ │ │ ├── bitcoin.svg │ │ │ │ ├── data.svg │ │ │ │ ├── incognito.svg │ │ │ │ ├── optimal.svg │ │ │ │ └── seed.svg │ │ ├── loading │ │ │ └── rounded.svg │ │ ├── logo │ │ │ ├── full-brand.svg │ │ │ └── icon.svg │ │ ├── menu │ │ │ ├── assets.svg │ │ │ ├── convert.svg │ │ │ ├── settings.svg │ │ │ └── transfer.svg │ │ ├── styles │ │ │ ├── colors.js │ │ │ ├── media.js │ │ │ ├── themes.js │ │ │ └── type.js │ │ ├── team │ │ │ ├── ahawk.png │ │ │ ├── baki.png │ │ │ ├── dweab.png │ │ │ ├── goshiz.png │ │ │ ├── jriggs.png │ │ │ ├── luge.png │ │ │ ├── mad.png │ │ │ ├── marty.png │ │ │ ├── neac.png │ │ │ ├── news.png │ │ │ ├── nick.png │ │ │ ├── pierre.png │ │ │ ├── rad.png │ │ │ ├── rare.png │ │ │ └── serpent.png │ │ └── whitepapers │ │ │ ├── wp_chinese.png │ │ │ ├── wp_chinese.svg │ │ │ ├── wp_english.png │ │ │ ├── wp_english.svg │ │ │ ├── wp_french.png │ │ │ ├── wp_french.svg │ │ │ ├── wp_spanish.png │ │ │ ├── wp_spanish.svg │ │ │ ├── wp_vietnamese.png │ │ │ └── wp_vietnamese.svg │ ├── constants │ │ ├── assets.ts │ │ ├── env.ts │ │ ├── fees.ts │ │ ├── governance.ts │ │ └── notificationList.ts │ ├── globalStyle.js │ ├── index.js │ ├── platforms │ │ ├── desktop │ │ │ ├── actions │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── localMining.ts │ │ │ │ ├── localNode.ts │ │ │ │ ├── selectNode.ts │ │ │ │ ├── storedWallets.ts │ │ │ │ └── types.ts │ │ │ ├── components │ │ │ │ ├── animation │ │ │ │ │ ├── fan.svg │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── fixedStatusContainer │ │ │ │ │ └── index.ts │ │ │ │ ├── modalContainer │ │ │ │ │ └── index.tsx │ │ │ │ ├── modals │ │ │ │ │ ├── confirmAuditModal.tsx │ │ │ │ │ ├── confirmExchangeModal.tsx │ │ │ │ │ ├── confirmTxModal.tsx │ │ │ │ │ ├── loginOnboarding.tsx │ │ │ │ │ ├── manageAddressModal.tsx │ │ │ │ │ ├── rescanBCModal.tsx │ │ │ │ │ └── showQRCode.tsx │ │ │ │ ├── navigation │ │ │ │ │ ├── alerts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── styles.js │ │ │ │ │ ├── buttons │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── styles.js │ │ │ │ │ ├── cell │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── styles.js │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── link │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── styles.js │ │ │ │ │ ├── styles.js │ │ │ │ │ └── tab │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── styles.js │ │ │ │ └── rescan │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.js │ │ │ ├── index.tsx │ │ │ ├── ipc │ │ │ │ ├── ipc-types.ts │ │ │ │ ├── localNode.ts │ │ │ │ ├── misc.ts │ │ │ │ └── wallet.ts │ │ │ ├── nodes.ts │ │ │ ├── pages │ │ │ │ ├── _auth │ │ │ │ │ ├── create │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.js │ │ │ │ │ ├── multi_create │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.js │ │ │ │ │ ├── multi_login │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.js │ │ │ │ │ ├── open │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.js │ │ │ │ │ └── restore │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.js │ │ │ │ ├── _wallet │ │ │ │ │ ├── assets │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── details │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── settings │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── node │ │ │ │ │ │ │ ├── nodeSetting.tsx │ │ │ │ │ │ │ └── options.ts │ │ │ │ │ │ └── styles.js │ │ │ │ │ └── transfer │ │ │ │ │ │ └── index.tsx │ │ │ │ └── public │ │ │ │ │ ├── create │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ │ └── login │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ ├── reducers │ │ │ │ ├── index.ts │ │ │ │ ├── localMining.ts │ │ │ │ ├── localNode.ts │ │ │ │ ├── selectedNode.ts │ │ │ │ └── storedWallets.ts │ │ │ ├── types.ts │ │ │ └── watcher.ts │ │ └── web │ │ │ ├── actions │ │ │ ├── config.ts │ │ │ ├── index.ts │ │ │ ├── storage.ts │ │ │ └── types.ts │ │ │ ├── components │ │ │ └── navigation │ │ │ │ ├── buttons │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ │ ├── cell │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ │ ├── index.tsx │ │ │ │ ├── link │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ │ ├── styles.js │ │ │ │ └── tab │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── index.tsx │ │ │ ├── nodes.ts │ │ │ ├── pages │ │ │ ├── _auth │ │ │ │ ├── create │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── multi-create │ │ │ │ │ │ ├── create │ │ │ │ │ │ └── create.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── restore │ │ │ │ │ │ └── restore.tsx │ │ │ │ │ │ └── styles.js │ │ │ │ └── login │ │ │ │ │ ├── component │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── styles.js │ │ │ │ │ └── tabLogin.tsx │ │ │ │ │ └── container │ │ │ │ │ └── index.js │ │ │ └── _wallet │ │ │ │ └── settings │ │ │ │ └── index.tsx │ │ │ ├── reducers │ │ │ └── index.ts │ │ │ └── watcher.ts │ ├── react-app-env.d.ts │ ├── shared │ │ ├── App.js │ │ ├── actions │ │ │ ├── address.ts │ │ │ ├── audit.ts │ │ │ ├── auditStatus.ts │ │ │ ├── balance.ts │ │ │ ├── blockCap.ts │ │ │ ├── blockHeaderExchangeRate.ts │ │ │ ├── circulatingSupply.ts │ │ │ ├── connection.ts │ │ │ ├── exchange.ts │ │ │ ├── havenFeature.ts │ │ │ ├── havend.ts │ │ │ ├── index.ts │ │ │ ├── modal.ts │ │ │ ├── notification.ts │ │ │ ├── prices.js │ │ │ ├── refresh.ts │ │ │ ├── theme.ts │ │ │ ├── transfer.ts │ │ │ ├── transferHistory.ts │ │ │ ├── types.ts │ │ │ ├── walletCreation.ts │ │ │ ├── walletListener.ts │ │ │ └── walletSession.ts │ │ ├── components │ │ │ ├── _animations │ │ │ │ └── dots │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ ├── _auth │ │ │ │ ├── create │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── login │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── multi-create │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── multi-restore │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ └── multi_login │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ ├── _buttons │ │ │ │ ├── button │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ └── link │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ ├── _create │ │ │ │ ├── create_seed │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── placeholder │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ └── verify_seed │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ ├── _inputs │ │ │ │ ├── addresses_dropdown │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── balances_dropdown │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── description │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── double_footer │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── dropdown │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── file-upload │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── footer │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── form │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.js │ │ │ │ ├── input │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.js │ │ │ │ ├── input_button │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.js │ │ │ │ ├── input_download │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── input_upload │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── nodes │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── radio │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── revealSeed │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── seed │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── select │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── theme │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── toggle │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ └── wallet-selection │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.js │ │ │ ├── _layout │ │ │ │ ├── balances │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.js │ │ │ │ ├── body │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── header │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── menu │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.js │ │ │ │ │ ├── thick │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── styles.js │ │ │ │ │ └── thin │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── styles.js │ │ │ │ ├── multi-balance │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.js │ │ │ │ ├── navigation │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── overview │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── page │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ └── status │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.js │ │ │ ├── _summaries │ │ │ │ ├── exchange-summary │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ └── transfer-summary │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ ├── _transactions │ │ │ │ ├── cells │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── exchange │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ └── transfer │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ ├── asset-allocation │ │ │ │ ├── allocation.tsx │ │ │ │ └── style.js │ │ │ ├── card │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── cell │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── cell_disabled │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── chart-container │ │ │ │ ├── index.tsx │ │ │ │ └── styles.js │ │ │ ├── chart-single │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── chart │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── checkbox │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── confirm │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── footer │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── haven_line_chart │ │ │ │ └── index.tsx │ │ │ ├── idle │ │ │ │ └── index.js │ │ │ ├── load-more │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── loader │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── modal │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── modal_children │ │ │ │ └── manage_addresses │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ ├── progress-bar │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── protocol_health │ │ │ │ ├── index.tsx │ │ │ │ └── style.js │ │ │ ├── qrCode │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── rescan │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── search │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── spinner │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── statistic │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── status │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── sync-bar │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── tab │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── table │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── tutorial │ │ │ │ └── login │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ └── tx-history │ │ │ │ ├── component │ │ │ │ ├── index.tsx │ │ │ │ └── styles.js │ │ │ │ └── container │ │ │ │ └── index.tsx │ │ ├── core │ │ │ ├── havend.ts │ │ │ ├── proxy.ts │ │ │ └── wallet.ts │ │ ├── pages │ │ │ ├── _auth │ │ │ │ └── create │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ └── _wallet │ │ │ │ ├── assets │ │ │ │ ├── index.tsx │ │ │ │ └── styles.js │ │ │ │ ├── audit │ │ │ │ ├── index.tsx │ │ │ │ └── styles.js │ │ │ │ ├── details │ │ │ │ ├── index.tsx │ │ │ │ └── styles.js │ │ │ │ ├── exchange │ │ │ │ ├── index.tsx │ │ │ │ └── styles.js │ │ │ │ ├── settings │ │ │ │ ├── index.tsx │ │ │ │ └── styles.js │ │ │ │ └── transfer │ │ │ │ ├── index.tsx │ │ │ │ ├── receive.tsx │ │ │ │ ├── send.tsx │ │ │ │ └── styles.js │ │ ├── reducers │ │ │ ├── address.ts │ │ │ ├── auditProcess.ts │ │ │ ├── auditStatus.ts │ │ │ ├── blockHeaderExchangeRates.ts │ │ │ ├── chain.ts │ │ │ ├── circulatingSupply.ts │ │ │ ├── currentTheme.js │ │ │ ├── exchangeProcess.ts │ │ │ ├── havenFeature.ts │ │ │ ├── modal.ts │ │ │ ├── notification.ts │ │ │ ├── priceHistory.ts │ │ │ ├── transferProcess.ts │ │ │ ├── types.ts │ │ │ ├── walletCreation.ts │ │ │ ├── walletSession.ts │ │ │ ├── xBalance.ts │ │ │ ├── xPriceHistory.ts │ │ │ └── xTransferList.ts │ │ ├── routes │ │ │ └── private │ │ │ │ └── index.js │ │ └── types │ │ │ └── types.ts │ ├── typings │ │ └── index.ts │ ├── utility │ │ ├── history.js │ │ ├── utility-encrypt.ts │ │ ├── utility.spec.js │ │ └── utility.ts │ └── vendor │ │ ├── FileSaver.js │ │ └── clipboard │ │ ├── DT.ts │ │ ├── clipboard-polyfill.ts │ │ └── dev-helper.ts └── tsconfig.json ├── haven-desktop-app ├── .gitignore ├── __tests__ │ └── index.ts ├── forge.config.js ├── icons │ ├── dmg-bg.png │ ├── dmg-bg@2x.png │ ├── dmg-bg@3x.png │ ├── icon.icns │ ├── icon.ico │ ├── icon.png │ ├── icon@2x.png │ └── icon@3x.png ├── package-lock.json ├── package.json ├── sites │ ├── dev │ │ ├── full-brand.svg │ │ ├── index.css │ │ └── index.html │ ├── maintenance │ │ ├── brand.svg │ │ ├── index.css │ │ └── index.html │ ├── preload │ │ └── preload.js │ └── shutdown │ │ ├── full-brand.svg │ │ ├── index.css │ │ └── index.html ├── src │ ├── EventBus.ts │ ├── HavenWallet.ts │ ├── config │ │ └── appConfig.ts │ ├── dev.ts │ ├── env.ts │ ├── index.ts │ ├── keys.ts │ ├── localNode │ │ ├── LocalNodeHandler.ts │ │ ├── localNodeSettings.ts │ │ └── process │ │ │ └── LocalNodeProcess.ts │ ├── menu.ts │ ├── shared │ │ ├── havend.ts │ │ ├── index.ts │ │ └── wallet.ts │ ├── types.ts │ └── wallets │ │ ├── HavenWalletListener.ts │ │ ├── WalletHandler.ts │ │ └── walletPaths.ts ├── tsconfig.json └── tslint.json └── sh ├── develop.sh ├── make.sh └── package.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .build -------------------------------------------------------------------------------- /.github/workflows/desktop.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/.github/workflows/desktop.build.yml -------------------------------------------------------------------------------- /.github/workflows/docker.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/.github/workflows/docker.build.yml -------------------------------------------------------------------------------- /.github/workflows/web.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/.github/workflows/web.build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/README.md -------------------------------------------------------------------------------- /client/.docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/.docker/Dockerfile -------------------------------------------------------------------------------- /client/.docker/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/.docker/nginx/default.conf -------------------------------------------------------------------------------- /client/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_VERSION=$npm_package_version 2 | -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/README.md -------------------------------------------------------------------------------- /client/config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/config-overrides.js -------------------------------------------------------------------------------- /client/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/docker-compose.yml -------------------------------------------------------------------------------- /client/env/.env.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/env/.env.desktop -------------------------------------------------------------------------------- /client/env/.env.desktop.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/env/.env.desktop.build -------------------------------------------------------------------------------- /client/env/.env.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/env/.env.net -------------------------------------------------------------------------------- /client/env/.env.web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/env/.env.web -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/HavenWebWorker4.2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/HavenWebWorker4.2.0.js -------------------------------------------------------------------------------- /client/public/HavenWebWorker4.2.0.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/HavenWebWorker4.2.0.js.LICENSE.txt -------------------------------------------------------------------------------- /client/public/HavenWebWorker4.2.0.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/HavenWebWorker4.2.0.js.map -------------------------------------------------------------------------------- /client/public/favicon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/android-icon-144x144.png -------------------------------------------------------------------------------- /client/public/favicon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/android-icon-192x192.png -------------------------------------------------------------------------------- /client/public/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /client/public/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /client/public/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /client/public/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /client/public/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /client/public/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /client/public/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /client/public/favicon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/apple-icon-152x152.png -------------------------------------------------------------------------------- /client/public/favicon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/apple-icon-180x180.png -------------------------------------------------------------------------------- /client/public/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /client/public/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /client/public/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /client/public/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /client/public/favicon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /client/public/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/apple-icon.png -------------------------------------------------------------------------------- /client/public/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/browserconfig.xml -------------------------------------------------------------------------------- /client/public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /client/public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /client/public/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /client/public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/favicon.ico -------------------------------------------------------------------------------- /client/public/favicon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/manifest.json -------------------------------------------------------------------------------- /client/public/favicon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/ms-icon-144x144.png -------------------------------------------------------------------------------- /client/public/favicon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/ms-icon-150x150.png -------------------------------------------------------------------------------- /client/public/favicon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/ms-icon-310x310.png -------------------------------------------------------------------------------- /client/public/favicon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/favicon/ms-icon-70x70.png -------------------------------------------------------------------------------- /client/public/haven_offshore4.2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/haven_offshore4.2.0.js -------------------------------------------------------------------------------- /client/public/haven_offshore4.2.0.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/haven_offshore4.2.0.wasm -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/nodes.json -------------------------------------------------------------------------------- /client/public/pwa/android/android-launchericon-144-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/android/android-launchericon-144-144.png -------------------------------------------------------------------------------- /client/public/pwa/android/android-launchericon-192-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/android/android-launchericon-192-192.png -------------------------------------------------------------------------------- /client/public/pwa/android/android-launchericon-48-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/android/android-launchericon-48-48.png -------------------------------------------------------------------------------- /client/public/pwa/android/android-launchericon-512-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/android/android-launchericon-512-512.png -------------------------------------------------------------------------------- /client/public/pwa/android/android-launchericon-72-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/android/android-launchericon-72-72.png -------------------------------------------------------------------------------- /client/public/pwa/android/android-launchericon-96-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/android/android-launchericon-96-96.png -------------------------------------------------------------------------------- /client/public/pwa/chrome/chrome-extensionmanagementpage-48-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/chrome/chrome-extensionmanagementpage-48-48.png -------------------------------------------------------------------------------- /client/public/pwa/chrome/chrome-favicon-16-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/chrome/chrome-favicon-16-16.png -------------------------------------------------------------------------------- /client/public/pwa/chrome/chrome-installprocess-128-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/chrome/chrome-installprocess-128-128.png -------------------------------------------------------------------------------- /client/public/pwa/firefox/firefox-general-128-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/firefox/firefox-general-128-128.png -------------------------------------------------------------------------------- /client/public/pwa/firefox/firefox-general-16-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/firefox/firefox-general-16-16.png -------------------------------------------------------------------------------- /client/public/pwa/firefox/firefox-general-256-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/firefox/firefox-general-256-256.png -------------------------------------------------------------------------------- /client/public/pwa/firefox/firefox-general-32-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/firefox/firefox-general-32-32.png -------------------------------------------------------------------------------- /client/public/pwa/firefox/firefox-general-48-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/firefox/firefox-general-48-48.png -------------------------------------------------------------------------------- /client/public/pwa/firefox/firefox-general-64-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/firefox/firefox-general-64-64.png -------------------------------------------------------------------------------- /client/public/pwa/firefox/firefox-general-90-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/firefox/firefox-general-90-90.png -------------------------------------------------------------------------------- /client/public/pwa/firefox/firefox-marketplace-128-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/firefox/firefox-marketplace-128-128.png -------------------------------------------------------------------------------- /client/public/pwa/firefox/firefox-marketplace-512-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/firefox/firefox-marketplace-512-512.png -------------------------------------------------------------------------------- /client/public/pwa/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/icons.json -------------------------------------------------------------------------------- /client/public/pwa/ios/ios-appicon-1024-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/ios/ios-appicon-1024-1024.png -------------------------------------------------------------------------------- /client/public/pwa/ios/ios-appicon-120-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/ios/ios-appicon-120-120.png -------------------------------------------------------------------------------- /client/public/pwa/ios/ios-appicon-152-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/ios/ios-appicon-152-152.png -------------------------------------------------------------------------------- /client/public/pwa/ios/ios-appicon-180-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/ios/ios-appicon-180-180.png -------------------------------------------------------------------------------- /client/public/pwa/ios/ios-appicon-76-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/ios/ios-appicon-76-76.png -------------------------------------------------------------------------------- /client/public/pwa/ios/ios-launchimage-1024-768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/ios/ios-launchimage-1024-768.png -------------------------------------------------------------------------------- /client/public/pwa/ios/ios-launchimage-1242-2208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/ios/ios-launchimage-1242-2208.png -------------------------------------------------------------------------------- /client/public/pwa/ios/ios-launchimage-1334-750.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/ios/ios-launchimage-1334-750.png -------------------------------------------------------------------------------- /client/public/pwa/ios/ios-launchimage-1536-2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/ios/ios-launchimage-1536-2048.png -------------------------------------------------------------------------------- /client/public/pwa/ios/ios-launchimage-2048-1536.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/ios/ios-launchimage-2048-1536.png -------------------------------------------------------------------------------- /client/public/pwa/ios/ios-launchimage-2208-1242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/ios/ios-launchimage-2208-1242.png -------------------------------------------------------------------------------- /client/public/pwa/ios/ios-launchimage-640-1136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/ios/ios-launchimage-640-1136.png -------------------------------------------------------------------------------- /client/public/pwa/ios/ios-launchimage-640-960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/ios/ios-launchimage-640-960.png -------------------------------------------------------------------------------- /client/public/pwa/ios/ios-launchimage-750-1334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/ios/ios-launchimage-750-1334.png -------------------------------------------------------------------------------- /client/public/pwa/ios/ios-launchimage-768-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/ios/ios-launchimage-768-1024.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windows-smallsquare-24-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windows-smallsquare-24-24.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windows-smallsquare-30-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windows-smallsquare-30-30.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windows-smallsquare-42-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windows-smallsquare-42-42.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windows-smallsquare-54-54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windows-smallsquare-54-54.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windows-splashscreen-1116-540.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windows-splashscreen-1116-540.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windows-splashscreen-620-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windows-splashscreen-620-300.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windows-splashscreen-868-420.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windows-splashscreen-868-420.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windows-squarelogo-120-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windows-squarelogo-120-120.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windows-squarelogo-150-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windows-squarelogo-150-150.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windows-squarelogo-210-210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windows-squarelogo-210-210.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windows-squarelogo-270-270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windows-squarelogo-270-270.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windows-storelogo-50-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windows-storelogo-50-50.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windows-storelogo-70-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windows-storelogo-70-70.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windows-storelogo-90-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windows-storelogo-90-90.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windowsphone-appicon-106-106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windowsphone-appicon-106-106.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windowsphone-appicon-44-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windowsphone-appicon-44-44.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windowsphone-appicon-62-62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windowsphone-appicon-62-62.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windowsphone-mediumtile-150-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windowsphone-mediumtile-150-150.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windowsphone-mediumtile-210-210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windowsphone-mediumtile-210-210.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windowsphone-mediumtile-360-360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windowsphone-mediumtile-360-360.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windowsphone-smalltile-170-170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windowsphone-smalltile-170-170.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windowsphone-smalltile-71-71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windowsphone-smalltile-71-71.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windowsphone-smalltile-99-99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windowsphone-smalltile-99-99.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windowsphone-storelogo-120-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windowsphone-storelogo-120-120.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windowsphone-storelogo-50-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windowsphone-storelogo-50-50.png -------------------------------------------------------------------------------- /client/public/pwa/windows/windowsphone-storelogo-70-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows/windowsphone-storelogo-70-70.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square310x310Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square310x310Logo.scale-100.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square310x310Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square310x310Logo.scale-125.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square310x310Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square310x310Logo.scale-150.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square310x310Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square310x310Logo.scale-200.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square310x310Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square310x310Logo.scale-400.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square44x44Logo.targetsize-16_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square44x44Logo.targetsize-16_altform-unplated.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square44x44Logo.targetsize-256_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square44x44Logo.targetsize-256_altform-unplated.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square44x44Logo.targetsize-48_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square44x44Logo.targetsize-48_altform-unplated.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square71x71Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square71x71Logo.scale-100.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square71x71Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square71x71Logo.scale-125.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square71x71Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square71x71Logo.scale-150.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square71x71Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square71x71Logo.scale-200.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Square71x71Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Square71x71Logo.scale-400.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/StoreLogo.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /client/public/pwa/windows10/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/public/pwa/windows10/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /client/src/assets/backgrounds/dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/backgrounds/dark.svg -------------------------------------------------------------------------------- /client/src/assets/backgrounds/light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/backgrounds/light.svg -------------------------------------------------------------------------------- /client/src/assets/backgrounds/sepia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/backgrounds/sepia.svg -------------------------------------------------------------------------------- /client/src/assets/blog/b_v1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/blog/b_v1.svg -------------------------------------------------------------------------------- /client/src/assets/blog/b_v10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/blog/b_v10.svg -------------------------------------------------------------------------------- /client/src/assets/blog/b_v11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/blog/b_v11.svg -------------------------------------------------------------------------------- /client/src/assets/blog/b_v12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/blog/b_v12.svg -------------------------------------------------------------------------------- /client/src/assets/blog/b_v13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/blog/b_v13.svg -------------------------------------------------------------------------------- /client/src/assets/blog/b_v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/blog/b_v2.svg -------------------------------------------------------------------------------- /client/src/assets/blog/b_v3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/blog/b_v3.svg -------------------------------------------------------------------------------- /client/src/assets/blog/b_v4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/blog/b_v4.svg -------------------------------------------------------------------------------- /client/src/assets/blog/b_v5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/blog/b_v5.svg -------------------------------------------------------------------------------- /client/src/assets/blog/b_v6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/blog/b_v6.svg -------------------------------------------------------------------------------- /client/src/assets/blog/b_v7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/blog/b_v7.svg -------------------------------------------------------------------------------- /client/src/assets/blog/b_v8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/blog/b_v8.svg -------------------------------------------------------------------------------- /client/src/assets/blog/b_v9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/blog/b_v9.svg -------------------------------------------------------------------------------- /client/src/assets/fonts/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/fonts/Inter-Bold.woff -------------------------------------------------------------------------------- /client/src/assets/fonts/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/fonts/Inter-Bold.woff2 -------------------------------------------------------------------------------- /client/src/assets/fonts/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/fonts/Inter-Regular.woff -------------------------------------------------------------------------------- /client/src/assets/fonts/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/fonts/Inter-Regular.woff2 -------------------------------------------------------------------------------- /client/src/assets/fonts/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/fonts/Inter-SemiBold.woff -------------------------------------------------------------------------------- /client/src/assets/fonts/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/fonts/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /client/src/assets/icons/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/icons/arrow-up.svg -------------------------------------------------------------------------------- /client/src/assets/icons/binary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/icons/binary.svg -------------------------------------------------------------------------------- /client/src/assets/icons/chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/icons/chevron.svg -------------------------------------------------------------------------------- /client/src/assets/icons/dropdown-chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/icons/dropdown-chevron.svg -------------------------------------------------------------------------------- /client/src/assets/icons/dropdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/icons/dropdown.svg -------------------------------------------------------------------------------- /client/src/assets/icons/haven-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/icons/haven-dark.svg -------------------------------------------------------------------------------- /client/src/assets/icons/haven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/icons/haven.svg -------------------------------------------------------------------------------- /client/src/assets/icons/illustration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/icons/illustration.svg -------------------------------------------------------------------------------- /client/src/assets/icons/incomplete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/icons/incomplete.svg -------------------------------------------------------------------------------- /client/src/assets/icons/incomplete_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/icons/incomplete_dark.svg -------------------------------------------------------------------------------- /client/src/assets/icons/options.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/icons/options.svg -------------------------------------------------------------------------------- /client/src/assets/icons/sync-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/icons/sync-solid.svg -------------------------------------------------------------------------------- /client/src/assets/icons/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/icons/tick.svg -------------------------------------------------------------------------------- /client/src/assets/icons/vault.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/icons/vault.svg -------------------------------------------------------------------------------- /client/src/assets/illustration/funnel/xhv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/illustration/funnel/xhv.svg -------------------------------------------------------------------------------- /client/src/assets/illustration/no_transactions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/illustration/no_transactions.svg -------------------------------------------------------------------------------- /client/src/assets/illustration/old/how.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/illustration/old/how.svg -------------------------------------------------------------------------------- /client/src/assets/illustration/old/mining.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/illustration/old/mining.svg -------------------------------------------------------------------------------- /client/src/assets/illustration/old/miningImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/illustration/old/miningImage.svg -------------------------------------------------------------------------------- /client/src/assets/illustration/old/what.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/illustration/old/what.svg -------------------------------------------------------------------------------- /client/src/assets/illustration/old/why.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/illustration/old/why.svg -------------------------------------------------------------------------------- /client/src/assets/illustration/onboarding/bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/illustration/onboarding/bitcoin.svg -------------------------------------------------------------------------------- /client/src/assets/illustration/onboarding/data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/illustration/onboarding/data.svg -------------------------------------------------------------------------------- /client/src/assets/illustration/onboarding/incognito.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/illustration/onboarding/incognito.svg -------------------------------------------------------------------------------- /client/src/assets/illustration/onboarding/optimal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/illustration/onboarding/optimal.svg -------------------------------------------------------------------------------- /client/src/assets/illustration/onboarding/seed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/illustration/onboarding/seed.svg -------------------------------------------------------------------------------- /client/src/assets/loading/rounded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/loading/rounded.svg -------------------------------------------------------------------------------- /client/src/assets/logo/full-brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/logo/full-brand.svg -------------------------------------------------------------------------------- /client/src/assets/logo/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/logo/icon.svg -------------------------------------------------------------------------------- /client/src/assets/menu/assets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/menu/assets.svg -------------------------------------------------------------------------------- /client/src/assets/menu/convert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/menu/convert.svg -------------------------------------------------------------------------------- /client/src/assets/menu/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/menu/settings.svg -------------------------------------------------------------------------------- /client/src/assets/menu/transfer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/menu/transfer.svg -------------------------------------------------------------------------------- /client/src/assets/styles/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/styles/colors.js -------------------------------------------------------------------------------- /client/src/assets/styles/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/styles/media.js -------------------------------------------------------------------------------- /client/src/assets/styles/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/styles/themes.js -------------------------------------------------------------------------------- /client/src/assets/styles/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/styles/type.js -------------------------------------------------------------------------------- /client/src/assets/team/ahawk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/team/ahawk.png -------------------------------------------------------------------------------- /client/src/assets/team/baki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/team/baki.png -------------------------------------------------------------------------------- /client/src/assets/team/dweab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/team/dweab.png -------------------------------------------------------------------------------- /client/src/assets/team/goshiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/team/goshiz.png -------------------------------------------------------------------------------- /client/src/assets/team/jriggs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/team/jriggs.png -------------------------------------------------------------------------------- /client/src/assets/team/luge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/team/luge.png -------------------------------------------------------------------------------- /client/src/assets/team/mad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/team/mad.png -------------------------------------------------------------------------------- /client/src/assets/team/marty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/team/marty.png -------------------------------------------------------------------------------- /client/src/assets/team/neac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/team/neac.png -------------------------------------------------------------------------------- /client/src/assets/team/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/team/news.png -------------------------------------------------------------------------------- /client/src/assets/team/nick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/team/nick.png -------------------------------------------------------------------------------- /client/src/assets/team/pierre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/team/pierre.png -------------------------------------------------------------------------------- /client/src/assets/team/rad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/team/rad.png -------------------------------------------------------------------------------- /client/src/assets/team/rare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/team/rare.png -------------------------------------------------------------------------------- /client/src/assets/team/serpent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/team/serpent.png -------------------------------------------------------------------------------- /client/src/assets/whitepapers/wp_chinese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/whitepapers/wp_chinese.png -------------------------------------------------------------------------------- /client/src/assets/whitepapers/wp_chinese.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/whitepapers/wp_chinese.svg -------------------------------------------------------------------------------- /client/src/assets/whitepapers/wp_english.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/whitepapers/wp_english.png -------------------------------------------------------------------------------- /client/src/assets/whitepapers/wp_english.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/whitepapers/wp_english.svg -------------------------------------------------------------------------------- /client/src/assets/whitepapers/wp_french.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/whitepapers/wp_french.png -------------------------------------------------------------------------------- /client/src/assets/whitepapers/wp_french.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/whitepapers/wp_french.svg -------------------------------------------------------------------------------- /client/src/assets/whitepapers/wp_spanish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/whitepapers/wp_spanish.png -------------------------------------------------------------------------------- /client/src/assets/whitepapers/wp_spanish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/whitepapers/wp_spanish.svg -------------------------------------------------------------------------------- /client/src/assets/whitepapers/wp_vietnamese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/whitepapers/wp_vietnamese.png -------------------------------------------------------------------------------- /client/src/assets/whitepapers/wp_vietnamese.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/assets/whitepapers/wp_vietnamese.svg -------------------------------------------------------------------------------- /client/src/constants/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/constants/assets.ts -------------------------------------------------------------------------------- /client/src/constants/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/constants/env.ts -------------------------------------------------------------------------------- /client/src/constants/fees.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/constants/fees.ts -------------------------------------------------------------------------------- /client/src/constants/governance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/constants/governance.ts -------------------------------------------------------------------------------- /client/src/constants/notificationList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/constants/notificationList.ts -------------------------------------------------------------------------------- /client/src/globalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/globalStyle.js -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/actions/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/actions/config.ts -------------------------------------------------------------------------------- /client/src/platforms/desktop/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/actions/index.ts -------------------------------------------------------------------------------- /client/src/platforms/desktop/actions/localMining.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/actions/localMining.ts -------------------------------------------------------------------------------- /client/src/platforms/desktop/actions/localNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/actions/localNode.ts -------------------------------------------------------------------------------- /client/src/platforms/desktop/actions/selectNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/actions/selectNode.ts -------------------------------------------------------------------------------- /client/src/platforms/desktop/actions/storedWallets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/actions/storedWallets.ts -------------------------------------------------------------------------------- /client/src/platforms/desktop/actions/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/actions/types.ts -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/animation/fan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/animation/fan.svg -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/animation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/animation/index.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/animation/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/animation/styles.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/fixedStatusContainer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/fixedStatusContainer/index.ts -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/modalContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/modalContainer/index.tsx -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/modals/confirmAuditModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/modals/confirmAuditModal.tsx -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/modals/confirmExchangeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/modals/confirmExchangeModal.tsx -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/modals/confirmTxModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/modals/confirmTxModal.tsx -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/modals/loginOnboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/modals/loginOnboarding.tsx -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/modals/manageAddressModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/modals/manageAddressModal.tsx -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/modals/rescanBCModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/modals/rescanBCModal.tsx -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/modals/showQRCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/modals/showQRCode.tsx -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/navigation/alerts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/navigation/alerts/index.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/navigation/alerts/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/navigation/alerts/styles.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/navigation/buttons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/navigation/buttons/index.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/navigation/buttons/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/navigation/buttons/styles.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/navigation/cell/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/navigation/cell/index.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/navigation/cell/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/navigation/cell/styles.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/navigation/index.tsx -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/navigation/link/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/navigation/link/index.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/navigation/link/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/navigation/link/styles.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/navigation/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/navigation/styles.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/navigation/tab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/navigation/tab/index.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/navigation/tab/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/navigation/tab/styles.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/rescan/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/rescan/index.tsx -------------------------------------------------------------------------------- /client/src/platforms/desktop/components/rescan/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/components/rescan/styles.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/index.tsx -------------------------------------------------------------------------------- /client/src/platforms/desktop/ipc/ipc-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/ipc/ipc-types.ts -------------------------------------------------------------------------------- /client/src/platforms/desktop/ipc/localNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/ipc/localNode.ts -------------------------------------------------------------------------------- /client/src/platforms/desktop/ipc/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/ipc/misc.ts -------------------------------------------------------------------------------- /client/src/platforms/desktop/ipc/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/ipc/wallet.ts -------------------------------------------------------------------------------- /client/src/platforms/desktop/nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/nodes.ts -------------------------------------------------------------------------------- /client/src/platforms/desktop/pages/_auth/create/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/pages/_auth/create/index.tsx -------------------------------------------------------------------------------- /client/src/platforms/desktop/pages/_auth/create/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/pages/_auth/create/styles.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/pages/_auth/multi_create/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/pages/_auth/multi_create/index.tsx -------------------------------------------------------------------------------- /client/src/platforms/desktop/pages/_auth/multi_create/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/pages/_auth/multi_create/styles.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/pages/_auth/multi_login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/pages/_auth/multi_login/index.tsx -------------------------------------------------------------------------------- /client/src/platforms/desktop/pages/_auth/multi_login/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/pages/_auth/multi_login/styles.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/pages/_auth/open/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/pages/_auth/open/index.tsx -------------------------------------------------------------------------------- /client/src/platforms/desktop/pages/_auth/open/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/pages/_auth/open/styles.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/pages/_auth/restore/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/pages/_auth/restore/index.tsx -------------------------------------------------------------------------------- /client/src/platforms/desktop/pages/_auth/restore/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/pages/_auth/restore/styles.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/pages/_wallet/assets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/pages/_wallet/assets/index.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/pages/_wallet/details/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/pages/_wallet/details/index.tsx -------------------------------------------------------------------------------- /client/src/platforms/desktop/pages/_wallet/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/pages/_wallet/settings/index.tsx -------------------------------------------------------------------------------- /client/src/platforms/desktop/pages/_wallet/settings/node/nodeSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/pages/_wallet/settings/node/nodeSetting.tsx -------------------------------------------------------------------------------- /client/src/platforms/desktop/pages/_wallet/settings/node/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/pages/_wallet/settings/node/options.ts -------------------------------------------------------------------------------- /client/src/platforms/desktop/pages/_wallet/settings/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/pages/_wallet/settings/styles.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/pages/_wallet/transfer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/pages/_wallet/transfer/index.tsx -------------------------------------------------------------------------------- /client/src/platforms/desktop/pages/public/create/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/pages/public/create/index.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/pages/public/create/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/pages/public/create/styles.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/pages/public/login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/pages/public/login/index.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/pages/public/login/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/pages/public/login/styles.js -------------------------------------------------------------------------------- /client/src/platforms/desktop/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/reducers/index.ts -------------------------------------------------------------------------------- /client/src/platforms/desktop/reducers/localMining.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/reducers/localMining.ts -------------------------------------------------------------------------------- /client/src/platforms/desktop/reducers/localNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/reducers/localNode.ts -------------------------------------------------------------------------------- /client/src/platforms/desktop/reducers/selectedNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/reducers/selectedNode.ts -------------------------------------------------------------------------------- /client/src/platforms/desktop/reducers/storedWallets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/reducers/storedWallets.ts -------------------------------------------------------------------------------- /client/src/platforms/desktop/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/types.ts -------------------------------------------------------------------------------- /client/src/platforms/desktop/watcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/desktop/watcher.ts -------------------------------------------------------------------------------- /client/src/platforms/web/actions/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/actions/config.ts -------------------------------------------------------------------------------- /client/src/platforms/web/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/actions/index.ts -------------------------------------------------------------------------------- /client/src/platforms/web/actions/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/actions/storage.ts -------------------------------------------------------------------------------- /client/src/platforms/web/actions/types.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | export const STORE_VAULT_AT_DISKED = "store_vault_at_disk"; -------------------------------------------------------------------------------- /client/src/platforms/web/components/navigation/buttons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/components/navigation/buttons/index.js -------------------------------------------------------------------------------- /client/src/platforms/web/components/navigation/buttons/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/components/navigation/buttons/styles.js -------------------------------------------------------------------------------- /client/src/platforms/web/components/navigation/cell/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/components/navigation/cell/index.js -------------------------------------------------------------------------------- /client/src/platforms/web/components/navigation/cell/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/components/navigation/cell/styles.js -------------------------------------------------------------------------------- /client/src/platforms/web/components/navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/components/navigation/index.tsx -------------------------------------------------------------------------------- /client/src/platforms/web/components/navigation/link/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/components/navigation/link/index.js -------------------------------------------------------------------------------- /client/src/platforms/web/components/navigation/link/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/components/navigation/link/styles.js -------------------------------------------------------------------------------- /client/src/platforms/web/components/navigation/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/components/navigation/styles.js -------------------------------------------------------------------------------- /client/src/platforms/web/components/navigation/tab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/components/navigation/tab/index.js -------------------------------------------------------------------------------- /client/src/platforms/web/components/navigation/tab/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/components/navigation/tab/styles.js -------------------------------------------------------------------------------- /client/src/platforms/web/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/index.tsx -------------------------------------------------------------------------------- /client/src/platforms/web/nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/nodes.ts -------------------------------------------------------------------------------- /client/src/platforms/web/pages/_auth/create/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/pages/_auth/create/index.tsx -------------------------------------------------------------------------------- /client/src/platforms/web/pages/_auth/create/multi-create/create/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/pages/_auth/create/multi-create/create/create.tsx -------------------------------------------------------------------------------- /client/src/platforms/web/pages/_auth/create/multi-create/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/pages/_auth/create/multi-create/index.tsx -------------------------------------------------------------------------------- /client/src/platforms/web/pages/_auth/create/multi-create/restore/restore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/pages/_auth/create/multi-create/restore/restore.tsx -------------------------------------------------------------------------------- /client/src/platforms/web/pages/_auth/create/multi-create/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/pages/_auth/create/multi-create/styles.js -------------------------------------------------------------------------------- /client/src/platforms/web/pages/_auth/login/component/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/pages/_auth/login/component/index.tsx -------------------------------------------------------------------------------- /client/src/platforms/web/pages/_auth/login/component/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/pages/_auth/login/component/styles.js -------------------------------------------------------------------------------- /client/src/platforms/web/pages/_auth/login/component/tabLogin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/pages/_auth/login/component/tabLogin.tsx -------------------------------------------------------------------------------- /client/src/platforms/web/pages/_auth/login/container/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/pages/_auth/login/container/index.js -------------------------------------------------------------------------------- /client/src/platforms/web/pages/_wallet/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/pages/_wallet/settings/index.tsx -------------------------------------------------------------------------------- /client/src/platforms/web/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/reducers/index.ts -------------------------------------------------------------------------------- /client/src/platforms/web/watcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/platforms/web/watcher.ts -------------------------------------------------------------------------------- /client/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /client/src/shared/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/App.js -------------------------------------------------------------------------------- /client/src/shared/actions/address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/address.ts -------------------------------------------------------------------------------- /client/src/shared/actions/audit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/audit.ts -------------------------------------------------------------------------------- /client/src/shared/actions/auditStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/auditStatus.ts -------------------------------------------------------------------------------- /client/src/shared/actions/balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/balance.ts -------------------------------------------------------------------------------- /client/src/shared/actions/blockCap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/blockCap.ts -------------------------------------------------------------------------------- /client/src/shared/actions/blockHeaderExchangeRate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/blockHeaderExchangeRate.ts -------------------------------------------------------------------------------- /client/src/shared/actions/circulatingSupply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/circulatingSupply.ts -------------------------------------------------------------------------------- /client/src/shared/actions/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/connection.ts -------------------------------------------------------------------------------- /client/src/shared/actions/exchange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/exchange.ts -------------------------------------------------------------------------------- /client/src/shared/actions/havenFeature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/havenFeature.ts -------------------------------------------------------------------------------- /client/src/shared/actions/havend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/havend.ts -------------------------------------------------------------------------------- /client/src/shared/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/index.ts -------------------------------------------------------------------------------- /client/src/shared/actions/modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/modal.ts -------------------------------------------------------------------------------- /client/src/shared/actions/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/notification.ts -------------------------------------------------------------------------------- /client/src/shared/actions/prices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/prices.js -------------------------------------------------------------------------------- /client/src/shared/actions/refresh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/refresh.ts -------------------------------------------------------------------------------- /client/src/shared/actions/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/theme.ts -------------------------------------------------------------------------------- /client/src/shared/actions/transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/transfer.ts -------------------------------------------------------------------------------- /client/src/shared/actions/transferHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/transferHistory.ts -------------------------------------------------------------------------------- /client/src/shared/actions/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/types.ts -------------------------------------------------------------------------------- /client/src/shared/actions/walletCreation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/walletCreation.ts -------------------------------------------------------------------------------- /client/src/shared/actions/walletListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/walletListener.ts -------------------------------------------------------------------------------- /client/src/shared/actions/walletSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/actions/walletSession.ts -------------------------------------------------------------------------------- /client/src/shared/components/_animations/dots/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_animations/dots/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_animations/dots/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_animations/dots/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_auth/create/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_auth/create/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_auth/create/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_auth/create/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_auth/login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_auth/login/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_auth/login/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_auth/login/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_auth/multi-create/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_auth/multi-create/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_auth/multi-create/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_auth/multi-create/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_auth/multi-restore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_auth/multi-restore/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_auth/multi-restore/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_auth/multi-restore/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_auth/multi_login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_auth/multi_login/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_auth/multi_login/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_auth/multi_login/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_buttons/button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_buttons/button/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_buttons/button/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_buttons/button/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_buttons/link/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_buttons/link/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_buttons/link/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_buttons/link/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_create/create_seed/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_create/create_seed/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_create/create_seed/styles.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/shared/components/_create/placeholder/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_create/placeholder/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_create/placeholder/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_create/placeholder/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_create/verify_seed/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_create/verify_seed/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_create/verify_seed/styles.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/addresses_dropdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/addresses_dropdown/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/addresses_dropdown/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/addresses_dropdown/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/balances_dropdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/balances_dropdown/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/balances_dropdown/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/balances_dropdown/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/description/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/description/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/description/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/description/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/double_footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/double_footer/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/double_footer/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/double_footer/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/dropdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/dropdown/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/dropdown/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/dropdown/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/file-upload/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/file-upload/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/file-upload/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/file-upload/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/footer/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/footer/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/footer/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/form/index.tsx -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/form/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/form/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/input/index.tsx -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/input/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/input/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/input_button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/input_button/index.tsx -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/input_button/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/input_button/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/input_download/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/input_download/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/input_download/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/input_download/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/input_upload/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/input_upload/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/input_upload/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/input_upload/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/nodes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/nodes/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/nodes/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/nodes/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/radio/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/radio/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/radio/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/radio/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/revealSeed/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/revealSeed/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/revealSeed/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/revealSeed/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/seed/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/seed/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/seed/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/seed/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/select/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/select/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/select/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/select/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/theme/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/theme/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/theme/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/toggle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/toggle/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/toggle/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/toggle/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/wallet-selection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/wallet-selection/index.tsx -------------------------------------------------------------------------------- /client/src/shared/components/_inputs/wallet-selection/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_inputs/wallet-selection/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_layout/balances/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/balances/index.tsx -------------------------------------------------------------------------------- /client/src/shared/components/_layout/balances/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/balances/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_layout/body/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/body/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_layout/body/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/body/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_layout/header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/header/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_layout/header/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/header/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_layout/menu/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/menu/icons/index.tsx -------------------------------------------------------------------------------- /client/src/shared/components/_layout/menu/icons/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/menu/icons/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_layout/menu/thick/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/menu/thick/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_layout/menu/thick/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/menu/thick/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_layout/menu/thin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/menu/thin/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_layout/menu/thin/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/menu/thin/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_layout/multi-balance/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/multi-balance/index.tsx -------------------------------------------------------------------------------- /client/src/shared/components/_layout/multi-balance/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/multi-balance/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_layout/navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/navigation/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_layout/navigation/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/navigation/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_layout/overview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/overview/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_layout/overview/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/overview/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_layout/page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/page/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_layout/page/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/page/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_layout/status/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/status/index.tsx -------------------------------------------------------------------------------- /client/src/shared/components/_layout/status/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_layout/status/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_summaries/exchange-summary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_summaries/exchange-summary/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_summaries/exchange-summary/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_summaries/exchange-summary/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_summaries/transfer-summary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_summaries/transfer-summary/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_summaries/transfer-summary/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_summaries/transfer-summary/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_transactions/cells/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_transactions/cells/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_transactions/cells/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_transactions/cells/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_transactions/exchange/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_transactions/exchange/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_transactions/exchange/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_transactions/exchange/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/_transactions/transfer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_transactions/transfer/index.js -------------------------------------------------------------------------------- /client/src/shared/components/_transactions/transfer/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/_transactions/transfer/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/asset-allocation/allocation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/asset-allocation/allocation.tsx -------------------------------------------------------------------------------- /client/src/shared/components/asset-allocation/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/asset-allocation/style.js -------------------------------------------------------------------------------- /client/src/shared/components/card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/card/index.js -------------------------------------------------------------------------------- /client/src/shared/components/card/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/card/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/cell/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/cell/index.js -------------------------------------------------------------------------------- /client/src/shared/components/cell/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/cell/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/cell_disabled/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/cell_disabled/index.js -------------------------------------------------------------------------------- /client/src/shared/components/cell_disabled/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/cell_disabled/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/chart-container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/chart-container/index.tsx -------------------------------------------------------------------------------- /client/src/shared/components/chart-container/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/chart-container/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/chart-single/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/chart-single/index.js -------------------------------------------------------------------------------- /client/src/shared/components/chart-single/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/chart-single/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/chart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/chart/index.js -------------------------------------------------------------------------------- /client/src/shared/components/chart/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/chart/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/checkbox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/checkbox/index.js -------------------------------------------------------------------------------- /client/src/shared/components/checkbox/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/checkbox/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/confirm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/confirm/index.js -------------------------------------------------------------------------------- /client/src/shared/components/confirm/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/confirm/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/footer/index.js -------------------------------------------------------------------------------- /client/src/shared/components/footer/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/footer/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/haven_line_chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/haven_line_chart/index.tsx -------------------------------------------------------------------------------- /client/src/shared/components/idle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/idle/index.js -------------------------------------------------------------------------------- /client/src/shared/components/load-more/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/load-more/index.js -------------------------------------------------------------------------------- /client/src/shared/components/load-more/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/load-more/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/loader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/loader/index.js -------------------------------------------------------------------------------- /client/src/shared/components/loader/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/loader/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/modal/index.js -------------------------------------------------------------------------------- /client/src/shared/components/modal/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/modal/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/modal_children/manage_addresses/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/modal_children/manage_addresses/index.js -------------------------------------------------------------------------------- /client/src/shared/components/modal_children/manage_addresses/styles.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/shared/components/progress-bar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/progress-bar/index.js -------------------------------------------------------------------------------- /client/src/shared/components/progress-bar/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/progress-bar/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/protocol_health/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/protocol_health/index.tsx -------------------------------------------------------------------------------- /client/src/shared/components/protocol_health/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/protocol_health/style.js -------------------------------------------------------------------------------- /client/src/shared/components/qrCode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/qrCode/index.js -------------------------------------------------------------------------------- /client/src/shared/components/qrCode/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/qrCode/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/rescan/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/rescan/index.js -------------------------------------------------------------------------------- /client/src/shared/components/rescan/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/rescan/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/search/index.js -------------------------------------------------------------------------------- /client/src/shared/components/search/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/search/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/spinner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/spinner/index.js -------------------------------------------------------------------------------- /client/src/shared/components/spinner/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/spinner/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/statistic/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/statistic/index.js -------------------------------------------------------------------------------- /client/src/shared/components/statistic/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/statistic/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/status/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/status/index.js -------------------------------------------------------------------------------- /client/src/shared/components/status/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/status/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/sync-bar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/sync-bar/index.js -------------------------------------------------------------------------------- /client/src/shared/components/sync-bar/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/sync-bar/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/tab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/tab/index.js -------------------------------------------------------------------------------- /client/src/shared/components/tab/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/tab/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/table/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/table/index.js -------------------------------------------------------------------------------- /client/src/shared/components/table/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/table/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/tutorial/login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/tutorial/login/index.js -------------------------------------------------------------------------------- /client/src/shared/components/tutorial/login/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/tutorial/login/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/tx-history/component/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/tx-history/component/index.tsx -------------------------------------------------------------------------------- /client/src/shared/components/tx-history/component/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/tx-history/component/styles.js -------------------------------------------------------------------------------- /client/src/shared/components/tx-history/container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/components/tx-history/container/index.tsx -------------------------------------------------------------------------------- /client/src/shared/core/havend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/core/havend.ts -------------------------------------------------------------------------------- /client/src/shared/core/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/core/proxy.ts -------------------------------------------------------------------------------- /client/src/shared/core/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/core/wallet.ts -------------------------------------------------------------------------------- /client/src/shared/pages/_auth/create/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/pages/_auth/create/index.js -------------------------------------------------------------------------------- /client/src/shared/pages/_auth/create/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/pages/_auth/create/styles.js -------------------------------------------------------------------------------- /client/src/shared/pages/_wallet/assets/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/pages/_wallet/assets/index.tsx -------------------------------------------------------------------------------- /client/src/shared/pages/_wallet/assets/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/pages/_wallet/assets/styles.js -------------------------------------------------------------------------------- /client/src/shared/pages/_wallet/audit/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/pages/_wallet/audit/index.tsx -------------------------------------------------------------------------------- /client/src/shared/pages/_wallet/audit/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/pages/_wallet/audit/styles.js -------------------------------------------------------------------------------- /client/src/shared/pages/_wallet/details/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/pages/_wallet/details/index.tsx -------------------------------------------------------------------------------- /client/src/shared/pages/_wallet/details/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/pages/_wallet/details/styles.js -------------------------------------------------------------------------------- /client/src/shared/pages/_wallet/exchange/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/pages/_wallet/exchange/index.tsx -------------------------------------------------------------------------------- /client/src/shared/pages/_wallet/exchange/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/pages/_wallet/exchange/styles.js -------------------------------------------------------------------------------- /client/src/shared/pages/_wallet/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/pages/_wallet/settings/index.tsx -------------------------------------------------------------------------------- /client/src/shared/pages/_wallet/settings/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/pages/_wallet/settings/styles.js -------------------------------------------------------------------------------- /client/src/shared/pages/_wallet/transfer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/pages/_wallet/transfer/index.tsx -------------------------------------------------------------------------------- /client/src/shared/pages/_wallet/transfer/receive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/pages/_wallet/transfer/receive.tsx -------------------------------------------------------------------------------- /client/src/shared/pages/_wallet/transfer/send.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/pages/_wallet/transfer/send.tsx -------------------------------------------------------------------------------- /client/src/shared/pages/_wallet/transfer/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/pages/_wallet/transfer/styles.js -------------------------------------------------------------------------------- /client/src/shared/reducers/address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/reducers/address.ts -------------------------------------------------------------------------------- /client/src/shared/reducers/auditProcess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/reducers/auditProcess.ts -------------------------------------------------------------------------------- /client/src/shared/reducers/auditStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/reducers/auditStatus.ts -------------------------------------------------------------------------------- /client/src/shared/reducers/blockHeaderExchangeRates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/reducers/blockHeaderExchangeRates.ts -------------------------------------------------------------------------------- /client/src/shared/reducers/chain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/reducers/chain.ts -------------------------------------------------------------------------------- /client/src/shared/reducers/circulatingSupply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/reducers/circulatingSupply.ts -------------------------------------------------------------------------------- /client/src/shared/reducers/currentTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/reducers/currentTheme.js -------------------------------------------------------------------------------- /client/src/shared/reducers/exchangeProcess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/reducers/exchangeProcess.ts -------------------------------------------------------------------------------- /client/src/shared/reducers/havenFeature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/reducers/havenFeature.ts -------------------------------------------------------------------------------- /client/src/shared/reducers/modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/reducers/modal.ts -------------------------------------------------------------------------------- /client/src/shared/reducers/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/reducers/notification.ts -------------------------------------------------------------------------------- /client/src/shared/reducers/priceHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/reducers/priceHistory.ts -------------------------------------------------------------------------------- /client/src/shared/reducers/transferProcess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/reducers/transferProcess.ts -------------------------------------------------------------------------------- /client/src/shared/reducers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/reducers/types.ts -------------------------------------------------------------------------------- /client/src/shared/reducers/walletCreation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/reducers/walletCreation.ts -------------------------------------------------------------------------------- /client/src/shared/reducers/walletSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/reducers/walletSession.ts -------------------------------------------------------------------------------- /client/src/shared/reducers/xBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/reducers/xBalance.ts -------------------------------------------------------------------------------- /client/src/shared/reducers/xPriceHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/reducers/xPriceHistory.ts -------------------------------------------------------------------------------- /client/src/shared/reducers/xTransferList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/reducers/xTransferList.ts -------------------------------------------------------------------------------- /client/src/shared/routes/private/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/routes/private/index.js -------------------------------------------------------------------------------- /client/src/shared/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/shared/types/types.ts -------------------------------------------------------------------------------- /client/src/typings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/typings/index.ts -------------------------------------------------------------------------------- /client/src/utility/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/utility/history.js -------------------------------------------------------------------------------- /client/src/utility/utility-encrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/utility/utility-encrypt.ts -------------------------------------------------------------------------------- /client/src/utility/utility.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/utility/utility.spec.js -------------------------------------------------------------------------------- /client/src/utility/utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/utility/utility.ts -------------------------------------------------------------------------------- /client/src/vendor/FileSaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/vendor/FileSaver.js -------------------------------------------------------------------------------- /client/src/vendor/clipboard/DT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/vendor/clipboard/DT.ts -------------------------------------------------------------------------------- /client/src/vendor/clipboard/clipboard-polyfill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/vendor/clipboard/clipboard-polyfill.ts -------------------------------------------------------------------------------- /client/src/vendor/clipboard/dev-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/src/vendor/clipboard/dev-helper.ts -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /haven-desktop-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/.gitignore -------------------------------------------------------------------------------- /haven-desktop-app/__tests__/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/__tests__/index.ts -------------------------------------------------------------------------------- /haven-desktop-app/forge.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/forge.config.js -------------------------------------------------------------------------------- /haven-desktop-app/icons/dmg-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/icons/dmg-bg.png -------------------------------------------------------------------------------- /haven-desktop-app/icons/dmg-bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/icons/dmg-bg@2x.png -------------------------------------------------------------------------------- /haven-desktop-app/icons/dmg-bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/icons/dmg-bg@3x.png -------------------------------------------------------------------------------- /haven-desktop-app/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/icons/icon.icns -------------------------------------------------------------------------------- /haven-desktop-app/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/icons/icon.ico -------------------------------------------------------------------------------- /haven-desktop-app/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/icons/icon.png -------------------------------------------------------------------------------- /haven-desktop-app/icons/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/icons/icon@2x.png -------------------------------------------------------------------------------- /haven-desktop-app/icons/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/icons/icon@3x.png -------------------------------------------------------------------------------- /haven-desktop-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/package-lock.json -------------------------------------------------------------------------------- /haven-desktop-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/package.json -------------------------------------------------------------------------------- /haven-desktop-app/sites/dev/full-brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/sites/dev/full-brand.svg -------------------------------------------------------------------------------- /haven-desktop-app/sites/dev/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/sites/dev/index.css -------------------------------------------------------------------------------- /haven-desktop-app/sites/dev/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/sites/dev/index.html -------------------------------------------------------------------------------- /haven-desktop-app/sites/maintenance/brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/sites/maintenance/brand.svg -------------------------------------------------------------------------------- /haven-desktop-app/sites/maintenance/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/sites/maintenance/index.css -------------------------------------------------------------------------------- /haven-desktop-app/sites/maintenance/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/sites/maintenance/index.html -------------------------------------------------------------------------------- /haven-desktop-app/sites/preload/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/sites/preload/preload.js -------------------------------------------------------------------------------- /haven-desktop-app/sites/shutdown/full-brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/sites/shutdown/full-brand.svg -------------------------------------------------------------------------------- /haven-desktop-app/sites/shutdown/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/sites/shutdown/index.css -------------------------------------------------------------------------------- /haven-desktop-app/sites/shutdown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/sites/shutdown/index.html -------------------------------------------------------------------------------- /haven-desktop-app/src/EventBus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/src/EventBus.ts -------------------------------------------------------------------------------- /haven-desktop-app/src/HavenWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/src/HavenWallet.ts -------------------------------------------------------------------------------- /haven-desktop-app/src/config/appConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/src/config/appConfig.ts -------------------------------------------------------------------------------- /haven-desktop-app/src/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/src/dev.ts -------------------------------------------------------------------------------- /haven-desktop-app/src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/src/env.ts -------------------------------------------------------------------------------- /haven-desktop-app/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/src/index.ts -------------------------------------------------------------------------------- /haven-desktop-app/src/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/src/keys.ts -------------------------------------------------------------------------------- /haven-desktop-app/src/localNode/LocalNodeHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/src/localNode/LocalNodeHandler.ts -------------------------------------------------------------------------------- /haven-desktop-app/src/localNode/localNodeSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/src/localNode/localNodeSettings.ts -------------------------------------------------------------------------------- /haven-desktop-app/src/localNode/process/LocalNodeProcess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/src/localNode/process/LocalNodeProcess.ts -------------------------------------------------------------------------------- /haven-desktop-app/src/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/src/menu.ts -------------------------------------------------------------------------------- /haven-desktop-app/src/shared/havend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/src/shared/havend.ts -------------------------------------------------------------------------------- /haven-desktop-app/src/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/src/shared/index.ts -------------------------------------------------------------------------------- /haven-desktop-app/src/shared/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/src/shared/wallet.ts -------------------------------------------------------------------------------- /haven-desktop-app/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/src/types.ts -------------------------------------------------------------------------------- /haven-desktop-app/src/wallets/HavenWalletListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/src/wallets/HavenWalletListener.ts -------------------------------------------------------------------------------- /haven-desktop-app/src/wallets/WalletHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/src/wallets/WalletHandler.ts -------------------------------------------------------------------------------- /haven-desktop-app/src/wallets/walletPaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/src/wallets/walletPaths.ts -------------------------------------------------------------------------------- /haven-desktop-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/tsconfig.json -------------------------------------------------------------------------------- /haven-desktop-app/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/haven-desktop-app/tslint.json -------------------------------------------------------------------------------- /sh/develop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/sh/develop.sh -------------------------------------------------------------------------------- /sh/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/sh/make.sh -------------------------------------------------------------------------------- /sh/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haven-protocol-org/haven-web-app/HEAD/sh/package.sh --------------------------------------------------------------------------------