├── .babelrc ├── .drawbridgerc ├── .editorconfig ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── .unlock-protocol.config.json ├── LICENSE ├── README.md ├── SECURITY.md ├── common ├── Root.tsx ├── api │ ├── bity.ts │ ├── emails.ts │ ├── gas.ts │ ├── mintme.ts │ ├── rates.ts │ ├── shapeshift.spec.ts │ ├── shapeshift.ts │ └── utils.ts ├── assets │ ├── fonts │ │ ├── Lato-Bold.woff │ │ ├── Lato-Bold.woff2 │ │ ├── Lato-Light.woff │ │ ├── Lato-Light.woff2 │ │ ├── Lato-Regular.woff │ │ ├── Lato-Regular.woff2 │ │ ├── Roboto-Mono-Light.woff │ │ ├── Roboto-Mono-Light.woff2 │ │ ├── Roboto-Mono-Regular.woff │ │ ├── Roboto-Mono-Regular.woff2 │ │ ├── social-media.woff │ │ └── social-media.woff2 │ └── images │ │ ├── augur.png │ │ ├── back-arrow.svg │ │ ├── bitcoin.png │ │ ├── browsers │ │ ├── chrome.svg │ │ ├── firefox.svg │ │ └── opera.svg │ │ ├── chronologic-logo-dark.svg │ │ ├── chronologic-logo.svg │ │ ├── close.svg │ │ ├── ether.png │ │ ├── exit.svg │ │ ├── favicon.png │ │ ├── header-bg.jpg │ │ ├── icn-add.svg │ │ ├── icn-announcement.svg │ │ ├── icn-bank-vs-mycrypto.svg │ │ ├── icn-champagne.svg │ │ ├── icn-chest.svg │ │ ├── icn-ledger-nano.svg │ │ ├── icn-node.svg │ │ ├── icn-show.svg │ │ ├── icn-trezor-new.svg │ │ ├── icn-vault.svg │ │ ├── icon-dot-arrow.svg │ │ ├── icon-external-link.svg │ │ ├── icon-help-3.svg │ │ ├── icon-remove.svg │ │ ├── icon-theme-dark.svg │ │ ├── icon-theme-light.svg │ │ ├── link-preview.png │ │ ├── logo-bity-white.svg │ │ ├── logo-bity.svg │ │ ├── logo-coinbase.svg │ │ ├── logo-ethercards.png │ │ ├── logo-ethereum-1.png │ │ ├── logo-ledger.svg │ │ ├── logo-mycrypto-transparent.svg │ │ ├── logo-mycrypto-white.svg │ │ ├── logo-mycrypto.svg │ │ ├── logo-shapeshift-no-text-white.svg │ │ ├── logo-shapeshift-no-text.svg │ │ ├── logo-shapeshift.svg │ │ ├── logo-simplex.png │ │ ├── logo-trezor.svg │ │ ├── logo-zeroex.png │ │ ├── mintmecom-coin-logo.svg │ │ ├── mobile │ │ ├── app-store-badge.png │ │ └── google-play-badge.png │ │ ├── notes-bg.png │ │ ├── onboarding │ │ ├── slide-01.svg │ │ ├── slide-02.svg │ │ ├── slide-03.svg │ │ ├── slide-04.svg │ │ ├── slide-05.svg │ │ ├── slide-06.svg │ │ ├── slide-07.svg │ │ ├── slide-08.svg │ │ ├── slide-09.svg │ │ └── slide-10.svg │ │ ├── print-sidebar.png │ │ ├── shapeshift-dark.svg │ │ ├── swap.svg │ │ ├── tail-triangle-down.svg │ │ ├── unlock-guide │ │ ├── open-app.png │ │ ├── open-web.png │ │ ├── provide-keystore.png │ │ ├── provide-mnemonic.png │ │ ├── select-keystore.png │ │ ├── select-mnemonic.png │ │ ├── tab-app.png │ │ └── tab-web.png │ │ ├── wallets │ │ ├── cipher.svg │ │ ├── digital-bitbox.svg │ │ ├── file.svg │ │ ├── hardware.svg │ │ ├── ledger.svg │ │ ├── metamask.svg │ │ ├── mist.svg │ │ ├── parity-signer.svg │ │ ├── safe-t.svg │ │ ├── trezor.svg │ │ └── trust.svg │ │ ├── wifi-off.svg │ │ └── wifi-on.svg ├── badBrowserCheckA.js ├── badBrowserCheckB.js ├── components │ ├── AddressBookTable.scss │ ├── AddressBookTable.tsx │ ├── AddressBookTableRow.tsx │ ├── AddressField.tsx │ ├── AddressFieldFactory │ │ ├── AddressFieldDropdown.scss │ │ ├── AddressFieldDropdown.tsx │ │ ├── AddressFieldFactory.scss │ │ ├── AddressFieldFactory.tsx │ │ ├── AddressInputFactory.scss │ │ ├── AddressInputFactory.tsx │ │ └── index.ts │ ├── AmountField.tsx │ ├── AmountFieldFactory │ │ ├── AmountFieldFactory.tsx │ │ ├── AmountInputFactory.tsx │ │ └── index.tsx │ ├── BalanceSidebar │ │ ├── AccountAddress.tsx │ │ ├── AccountInfo.scss │ │ ├── AccountInfo.tsx │ │ ├── EquivalentValues.scss │ │ ├── EquivalentValues.tsx │ │ ├── PromoComponents │ │ │ ├── HardwareWallets.tsx │ │ │ ├── Shapeshift.tsx │ │ │ ├── Simplex.tsx │ │ │ └── index.ts │ │ ├── Promos.scss │ │ ├── Promos.tsx │ │ ├── TokenBalances │ │ │ ├── AddCustomTokenForm │ │ │ │ ├── AddCustomTokenForm.scss │ │ │ │ ├── AddCustomTokenForm.tsx │ │ │ │ ├── AddressField.tsx │ │ │ │ ├── BalanceField.tsx │ │ │ │ ├── DecimalField.tsx │ │ │ │ ├── FieldInput.tsx │ │ │ │ ├── SymbolField.tsx │ │ │ │ └── index.ts │ │ │ ├── Balances.tsx │ │ │ ├── TokenRow.scss │ │ │ ├── TokenRow.tsx │ │ │ ├── index.scss │ │ │ └── index.tsx │ │ └── index.tsx │ ├── Banner │ │ ├── Banner.scss │ │ ├── Banner.tsx │ │ └── index.ts │ ├── ConfirmationModal │ │ ├── ConfirmationModal.tsx │ │ ├── components │ │ │ ├── Body │ │ │ │ ├── Body.scss │ │ │ │ ├── Body.tsx │ │ │ │ ├── components │ │ │ │ │ ├── Addresses.scss │ │ │ │ │ ├── Addresses.tsx │ │ │ │ │ ├── Amounts.scss │ │ │ │ │ ├── Amounts.tsx │ │ │ │ │ ├── Details.scss │ │ │ │ │ ├── Details.tsx │ │ │ │ │ └── Node.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ └── index.ts │ ├── ConfirmationModalTemplate │ │ ├── ConfirmationModalTemplate.scss │ │ ├── ConfirmationModalTemplate.tsx │ │ └── index.ts │ ├── CurrentCustomMessage.tsx │ ├── CustomNodeModal │ │ ├── CustomNodeModal.scss │ │ ├── CustomNodeModal.tsx │ │ └── index.ts │ ├── DataField.tsx │ ├── DataFieldFactory │ │ ├── DataFieldFactory.tsx │ │ ├── DataInputFactory.tsx │ │ └── index.ts │ ├── DisclaimerModal.scss │ ├── DisclaimerModal.tsx │ ├── ElectronNav │ │ ├── ElectronNav.scss │ │ ├── ElectronNav.tsx │ │ ├── LanguageSelect.scss │ │ ├── LanguageSelect.tsx │ │ ├── NetworkSelect.tsx │ │ ├── NetworkStatus.scss │ │ ├── NetworkStatus.tsx │ │ └── index.tsx │ ├── ErrorScreen │ │ ├── index.scss │ │ └── index.tsx │ ├── Errorable.tsx │ ├── ExtendedNotifications │ │ └── TransactionSucceeded.tsx │ ├── Footer │ │ ├── NewFooter │ │ │ ├── NewFooter.scss │ │ │ ├── NewFooter.tsx │ │ │ └── components │ │ │ │ ├── DonateAndSubscribe.scss │ │ │ │ ├── DonateAndSubscribe.tsx │ │ │ │ ├── Linkset.scss │ │ │ │ ├── Linkset.tsx │ │ │ │ ├── LogoBox.scss │ │ │ │ ├── LogoBox.tsx │ │ │ │ ├── SocialsAndLegal.scss │ │ │ │ ├── SocialsAndLegal.tsx │ │ │ │ ├── Subscribe.tsx │ │ │ │ └── index.ts │ │ ├── PreFooter.scss │ │ ├── PreFooter.tsx │ │ ├── ThemeToggle.scss │ │ ├── ThemeToggle.tsx │ │ ├── index.scss │ │ └── index.tsx │ ├── GasLimitField.scss │ ├── GasLimitField.tsx │ ├── GasLimitFieldFactory │ │ ├── GasLimitFieldFactory.tsx │ │ ├── GasLimitInputFactory.tsx │ │ └── index.ts │ ├── GenerateKeystoreModal │ │ ├── index.scss │ │ └── index.tsx │ ├── GenerateTransaction.scss │ ├── GenerateTransaction.tsx │ ├── GenerateTransactionFactory │ │ ├── Container.tsx │ │ ├── GenerateTransactionFactory.tsx │ │ └── index.ts │ ├── Header │ │ ├── NewHeader │ │ │ ├── NewHeader.scss │ │ │ ├── NewHeader.tsx │ │ │ ├── components │ │ │ │ ├── DesktopHeader.scss │ │ │ │ ├── DesktopHeader.tsx │ │ │ │ ├── MobileHeader.scss │ │ │ │ ├── MobileHeader.tsx │ │ │ │ └── index.ts │ │ │ ├── constants.ts │ │ │ ├── helpers.ts │ │ │ └── index.ts │ │ ├── components │ │ │ ├── Navigation.scss │ │ │ ├── Navigation.tsx │ │ │ ├── NetworkDropdown.scss │ │ │ ├── NetworkDropdown.tsx │ │ │ ├── OnlineStatus.scss │ │ │ ├── OnlineStatus.tsx │ │ │ └── constants.ts │ │ ├── index.scss │ │ └── index.tsx │ ├── LogOutPrompt.tsx │ ├── NavigationLink.tsx │ ├── NetworkSelector │ │ ├── NetworkOption.scss │ │ ├── NetworkOption.tsx │ │ ├── NetworkSelector.scss │ │ ├── NetworkSelector.tsx │ │ ├── NodeOption.scss │ │ ├── NodeOption.tsx │ │ └── index.tsx │ ├── NewAppReleaseModal.tsx │ ├── NonceField.scss │ ├── NonceField.tsx │ ├── NonceFieldFactory │ │ ├── NonceFieldFactory.tsx │ │ ├── NonceInputFactory.tsx │ │ └── index.ts │ ├── PageNotFound │ │ ├── PageNotFound.scss │ │ ├── PageNotFound.tsx │ │ └── index.ts │ ├── Palette │ │ ├── index.scss │ │ └── index.tsx │ ├── PaperWallet │ │ ├── index.scss │ │ └── index.tsx │ ├── ParityQrSigner.scss │ ├── ParityQrSigner.tsx │ ├── PrintableWallet │ │ └── index.tsx │ ├── RedirectWithQuery.tsx │ ├── RouteNotFound.tsx │ ├── SendButton.scss │ ├── SendButton.tsx │ ├── SendButtonFactory │ │ ├── OfflineBroadcast.tsx │ │ ├── OnlineSend.tsx │ │ ├── SendButtonFactory.tsx │ │ └── index.ts │ ├── SendEverything │ │ ├── SendEverything.scss │ │ ├── SendEverything.tsx │ │ └── index.ts │ ├── SigningStatus.scss │ ├── SigningStatus.tsx │ ├── SubTabs │ │ ├── SubTabs.scss │ │ └── index.tsx │ ├── TXMetaDataPanel │ │ ├── TXMetaDataPanel.scss │ │ ├── TXMetaDataPanel.tsx │ │ ├── components │ │ │ ├── AdvancedGas.scss │ │ │ ├── AdvancedGas.tsx │ │ │ ├── FeeSummary.scss │ │ │ ├── FeeSummary.tsx │ │ │ ├── SimpleGas.scss │ │ │ └── SimpleGas.tsx │ │ └── index.tsx │ ├── TogglablePassword.scss │ ├── TogglablePassword.tsx │ ├── TransactionStatus │ │ ├── TransactionDataTable.scss │ │ ├── TransactionDataTable.tsx │ │ ├── TransactionStatus.scss │ │ ├── TransactionStatus.tsx │ │ └── index.tsx │ ├── Translate.tsx │ ├── UnitDropDown │ │ ├── UnitDropDown.tsx │ │ └── index.ts │ ├── WalletDecrypt │ │ ├── WalletDecrypt.scss │ │ ├── WalletDecrypt.tsx │ │ ├── components │ │ │ ├── DeterministicWalletsModal.scss │ │ │ ├── DeterministicWalletsModal.tsx │ │ │ ├── InsecureWalletWarning.scss │ │ │ ├── InsecureWalletWarning.tsx │ │ │ ├── Keystore.tsx │ │ │ ├── LedgerNano.scss │ │ │ ├── LedgerNano.tsx │ │ │ ├── Mnemonic.tsx │ │ │ ├── ParitySigner.scss │ │ │ ├── ParitySigner.tsx │ │ │ ├── PrivateKey.tsx │ │ │ ├── SafeT.scss │ │ │ ├── SafeT.tsx │ │ │ ├── Trezor.scss │ │ │ ├── Trezor.tsx │ │ │ ├── UnsupportedNetwork.tsx │ │ │ ├── ViewOnly.scss │ │ │ ├── ViewOnly.tsx │ │ │ ├── WalletButton.scss │ │ │ ├── WalletButton.tsx │ │ │ ├── Web3.scss │ │ │ ├── Web3.tsx │ │ │ └── index.tsx │ │ ├── disables.ts │ │ └── index.tsx │ ├── index.ts │ ├── renderCbs │ │ ├── FullWalletOnly.tsx │ │ ├── GasQuery.tsx │ │ ├── OnlyUnlocked.tsx │ │ ├── Query.tsx │ │ ├── SerializedTransaction.ts │ │ ├── WhenQueryExists.tsx │ │ └── index.ts │ ├── ui │ │ ├── Address.tsx │ │ ├── CodeBlock.scss │ │ ├── CodeBlock.tsx │ │ ├── DateTime │ │ │ ├── CalendarContainer.tsx │ │ │ ├── ClickableWrapper.tsx │ │ │ ├── DateTime.tsx │ │ │ ├── DaysView.tsx │ │ │ ├── MonthsView.tsx │ │ │ ├── TimeView.tsx │ │ │ └── YearsView.tsx │ │ ├── Dropdown.tsx │ │ ├── DropdownShell.tsx │ │ ├── GroupedRadioToggle.scss │ │ ├── GroupedRadioToggle.tsx │ │ ├── Help.scss │ │ ├── Help.tsx │ │ ├── HelpLink.tsx │ │ ├── Identicon.scss │ │ ├── Identicon.tsx │ │ ├── InlineSpinner.scss │ │ ├── InlineSpinner.tsx │ │ ├── Input.scss │ │ ├── Input.tsx │ │ ├── Modal │ │ │ ├── ModalBody.tsx │ │ │ ├── index.scss │ │ │ └── index.tsx │ │ ├── NewTabLink.tsx │ │ ├── OldDropdown.tsx │ │ ├── PrimaryToggle.scss │ │ ├── PrimaryToggle.tsx │ │ ├── QRCode.tsx │ │ ├── SimpleButton.scss │ │ ├── SimpleButton.tsx │ │ ├── Spinner.scss │ │ ├── Spinner.tsx │ │ ├── SwapDropdown.scss │ │ ├── SwapDropdown.tsx │ │ ├── TextArea.tsx │ │ ├── Toggle.scss │ │ ├── Toggle.tsx │ │ ├── Tooltip.scss │ │ ├── Tooltip.tsx │ │ ├── UnitDisplay.tsx │ │ ├── UnlockHeader.scss │ │ ├── UnlockHeader.tsx │ │ ├── Warning.scss │ │ ├── Warning.tsx │ │ └── index.ts │ └── v2 │ │ ├── index.ts │ │ └── ui │ │ ├── Modal │ │ ├── Modal.scss │ │ ├── Modal.tsx │ │ └── index.ts │ │ └── index.ts ├── config │ ├── addressMessages.ts │ ├── bity.ts │ ├── constants.ts │ ├── contracts │ │ ├── artis_sigma1.json │ │ ├── artis_tau1.json │ │ ├── esn.json │ │ ├── etc.json │ │ ├── eth.json │ │ ├── exp.json │ │ ├── goerli.json │ │ ├── index.ts │ │ ├── pirl.json │ │ ├── rinkeby.json │ │ ├── ropsten.json │ │ ├── rsk.json │ │ ├── rsk_testnet.json │ │ ├── ubq.json │ │ └── web.json │ ├── data.tsx │ ├── dpaths.ts │ ├── helpArticles.ts │ ├── index.ts │ ├── languages.json │ ├── links.ts │ ├── navigation.ts │ └── tokens │ │ ├── artis_sigma1.json │ │ ├── artis_tau1.json │ │ ├── ella.json │ │ ├── esn.json │ │ ├── etc.json │ │ ├── eth.json │ │ ├── exp.json │ │ ├── goerli.json │ │ ├── index.ts │ │ ├── kovan.json │ │ ├── rinkeby.json │ │ ├── ropsten.json │ │ ├── rsk.json │ │ ├── rsk_testnet.json │ │ ├── ubq.json │ │ └── web.json ├── containers │ ├── OnboardingModal │ │ ├── OnboardingModal.scss │ │ ├── OnboardingModal.tsx │ │ ├── components │ │ │ ├── HardwareWalletChoice.scss │ │ │ ├── HardwareWalletChoice.tsx │ │ │ ├── OnboardingButton.scss │ │ │ ├── OnboardingButton.tsx │ │ │ ├── ProgressDots.scss │ │ │ ├── ProgressDots.tsx │ │ │ └── index.ts │ │ ├── index.ts │ │ └── slides │ │ │ ├── FirstSlide.tsx │ │ │ ├── FourthSlide.scss │ │ │ ├── FourthSlide.tsx │ │ │ ├── SecondSlide.scss │ │ │ ├── SecondSlide.tsx │ │ │ ├── ThirdSlide.tsx │ │ │ └── index.ts │ ├── QrSignerModal │ │ └── index.tsx │ ├── Sidebar │ │ ├── Sidebar.scss │ │ ├── Sidebar.tsx │ │ ├── components │ │ │ ├── AddCustomNode.tsx │ │ │ ├── CustomRadio.tsx │ │ │ ├── NetworkOption.tsx │ │ │ ├── NodeOption.tsx │ │ │ ├── SelectLanguage.tsx │ │ │ ├── SelectNetworkAndNode.tsx │ │ │ └── index.ts │ │ ├── helpers.ts │ │ └── index.ts │ ├── TabSection │ │ ├── ElectronTemplate.scss │ │ ├── ElectronTemplate.tsx │ │ ├── NotificationRow.tsx │ │ ├── Notifications.scss │ │ ├── Notifications.tsx │ │ ├── OfflineTab.scss │ │ ├── OfflineTab.tsx │ │ ├── WebTemplate.scss │ │ ├── WebTemplate.tsx │ │ └── index.tsx │ ├── Tabs │ │ ├── BroadcastTx │ │ │ ├── index.scss │ │ │ └── index.tsx │ │ ├── CheckTransaction │ │ │ ├── components │ │ │ │ ├── TxHashInput.scss │ │ │ │ └── TxHashInput.tsx │ │ │ ├── index.scss │ │ │ └── index.tsx │ │ ├── Contracts │ │ │ ├── components │ │ │ │ ├── Deploy.scss │ │ │ │ ├── Deploy.tsx │ │ │ │ └── Interact │ │ │ │ │ ├── components │ │ │ │ │ ├── InteractExplorer │ │ │ │ │ │ ├── InteractExplorer.scss │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── AmountField.tsx │ │ │ │ │ │ │ ├── Fields.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── InteractForm │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── ENS │ │ │ ├── components │ │ │ │ ├── NameInput.scss │ │ │ │ ├── NameInput.tsx │ │ │ │ ├── NameResolve │ │ │ │ │ ├── NameResolve.scss │ │ │ │ │ ├── components │ │ │ │ │ │ ├── NameAuction.tsx │ │ │ │ │ │ ├── NameForbidden.tsx │ │ │ │ │ │ ├── NameNotYetAvailable.tsx │ │ │ │ │ │ ├── NameOpen.tsx │ │ │ │ │ │ ├── NameOwned.tsx │ │ │ │ │ │ ├── NameReveal.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ └── ENSTime.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── index.ts │ │ │ ├── index.scss │ │ │ └── index.tsx │ │ ├── GenerateWallet │ │ │ ├── GenerateWallet.tsx │ │ │ ├── components │ │ │ │ ├── CryptoWarning.scss │ │ │ │ ├── CryptoWarning.tsx │ │ │ │ ├── FinalSteps.scss │ │ │ │ ├── FinalSteps.tsx │ │ │ │ ├── Keystore │ │ │ │ │ ├── DownloadWallet.scss │ │ │ │ │ ├── DownloadWallet.tsx │ │ │ │ │ ├── EnterPassword.scss │ │ │ │ │ ├── EnterPassword.tsx │ │ │ │ │ ├── Keystore.tsx │ │ │ │ │ ├── PaperWallet.scss │ │ │ │ │ ├── PaperWallet.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Mnemonic │ │ │ │ │ ├── Mnemonic.scss │ │ │ │ │ ├── Mnemonic.tsx │ │ │ │ │ ├── Word.scss │ │ │ │ │ ├── Word.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Template.scss │ │ │ │ ├── Template.tsx │ │ │ │ ├── WalletTypes.scss │ │ │ │ └── WalletTypes.tsx │ │ │ └── index.tsx │ │ ├── ScheduleTransaction │ │ │ └── components │ │ │ │ ├── Fields │ │ │ │ ├── ScheduleDepositField.tsx │ │ │ │ ├── ScheduleGasLimitField.tsx │ │ │ │ ├── ScheduleGasPriceField.tsx │ │ │ │ ├── ScheduleTimestamp │ │ │ │ │ ├── ScheduleTimestampField.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ScheduleTimezoneDropDown │ │ │ │ │ ├── ScheduleTimezoneDropDown.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ScheduleType │ │ │ │ │ ├── ScheduleType.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── SchedulingToggle │ │ │ │ │ ├── SchedulingToggle.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── TimeBounty │ │ │ │ │ ├── TimeBountyField.scss │ │ │ │ │ ├── TimeBountyField.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── WindowSizeField.tsx │ │ │ │ └── WindowStart │ │ │ │ │ ├── WindowStartField.tsx │ │ │ │ │ └── WindowStartFieldFactory │ │ │ │ │ ├── WindowStartFieldFactory.tsx │ │ │ │ │ ├── WindowStartInputFactory.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── GenerateScheduleTransactionButton.tsx │ │ │ │ ├── ScheduleFields.scss │ │ │ │ ├── ScheduleFields.tsx │ │ │ │ ├── ScheduleTransactionFactory.tsx │ │ │ │ ├── SchedulingModals.scss │ │ │ │ ├── SchedulingModals.tsx │ │ │ │ ├── SendScheduleTransactionButton.tsx │ │ │ │ ├── SendScheduleTransactionButtonFactory.tsx │ │ │ │ └── index.ts │ │ ├── SendTransaction │ │ │ ├── components │ │ │ │ ├── AddressBook.tsx │ │ │ │ ├── Fields │ │ │ │ │ ├── Fields.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ ├── NonStandardTransaction.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── RecentTransaction.scss │ │ │ │ ├── RecentTransaction.tsx │ │ │ │ ├── RecentTransactions.scss │ │ │ │ ├── RecentTransactions.tsx │ │ │ │ ├── RequestPayment.scss │ │ │ │ ├── RequestPayment.tsx │ │ │ │ ├── SideBar.tsx │ │ │ │ ├── UnavailableWallets.tsx │ │ │ │ ├── WalletInfo.scss │ │ │ │ ├── WalletInfo.tsx │ │ │ │ └── index.ts │ │ │ └── index.tsx │ │ ├── SignAndVerifyMessage │ │ │ ├── components │ │ │ │ ├── SignMessage │ │ │ │ │ ├── SignButton.tsx │ │ │ │ │ ├── index.scss │ │ │ │ │ └── index.tsx │ │ │ │ └── VerifyMessage │ │ │ │ │ ├── index.scss │ │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── SupportPage │ │ │ ├── index.scss │ │ │ └── index.tsx │ │ ├── ViewWallet │ │ │ └── index.tsx │ │ └── index.ts │ └── index.ts ├── features │ ├── addressBook │ │ ├── actions.spec.ts │ │ ├── actions.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── reducer.spec.ts │ │ ├── reducer.ts │ │ ├── sagas.spec.ts │ │ ├── sagas.ts │ │ ├── selectors.spec.ts │ │ ├── selectors.ts │ │ └── types.ts │ ├── config │ │ ├── __snapshots__ │ │ │ └── sagas.spec.ts.snap │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── meta │ │ │ ├── actions.spec.ts │ │ │ ├── actions.ts │ │ │ ├── index.ts │ │ │ ├── reducer.spec.ts │ │ │ ├── reducer.ts │ │ │ ├── selectors.ts │ │ │ └── types.ts │ │ ├── networks │ │ │ ├── actions.ts │ │ │ ├── custom │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.spec.ts │ │ │ │ ├── reducer.ts │ │ │ │ ├── selectors.ts │ │ │ │ └── types.ts │ │ │ ├── index.ts │ │ │ ├── reducer.ts │ │ │ ├── selectors.ts │ │ │ ├── static │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.spec.ts │ │ │ │ ├── reducer.ts │ │ │ │ ├── selectors.ts │ │ │ │ └── types.ts │ │ │ └── types.ts │ │ ├── nodes │ │ │ ├── custom │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.spec.ts │ │ │ │ ├── reducer.ts │ │ │ │ ├── selectors.ts │ │ │ │ └── types.ts │ │ │ ├── index.ts │ │ │ ├── reducer.ts │ │ │ ├── selected │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.spec.ts │ │ │ │ ├── reducer.ts │ │ │ │ ├── selectors.ts │ │ │ │ └── types.ts │ │ │ ├── selectors.ts │ │ │ ├── static │ │ │ │ ├── actions.ts │ │ │ │ ├── helpers.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reducer.spec.ts │ │ │ │ ├── reducer.ts │ │ │ │ ├── selectors.ts │ │ │ │ └── types.ts │ │ │ └── types.ts │ │ ├── reducer.ts │ │ ├── sagas.spec.ts │ │ ├── sagas.ts │ │ ├── selectors.ts │ │ └── types.ts │ ├── configAndTokens.ts │ ├── configureStore.ts │ ├── customTokens │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── reducer.spec.ts │ │ ├── reducer.ts │ │ ├── selectors.ts │ │ └── types.ts │ ├── deterministicWallets │ │ ├── __snapshots__ │ │ │ └── sagas.spec.ts.snap │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── reducer.spec.ts │ │ ├── reducer.ts │ │ ├── sagas.spec.ts │ │ ├── sagas.ts │ │ ├── selectors.ts │ │ └── types.ts │ ├── ens │ │ ├── actions.ts │ │ ├── domainRequests │ │ │ ├── index.ts │ │ │ ├── reducer.ts │ │ │ ├── selectors.ts │ │ │ └── types.ts │ │ ├── domainSelector │ │ │ ├── index.ts │ │ │ ├── reducer.ts │ │ │ ├── selectors.ts │ │ │ └── types.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── reducer.spec.ts │ │ ├── reducer.ts │ │ ├── sagas.ts │ │ ├── selectors.ts │ │ └── types.ts │ ├── gas │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── reducer.spec.ts │ │ ├── reducer.ts │ │ ├── sagas.spec.ts │ │ ├── sagas.ts │ │ ├── selectors.ts │ │ └── types.ts │ ├── handleMetaMaskPolling.spec.ts │ ├── handleMetaMaskPolling.ts │ ├── helpers.ts │ ├── index.ts │ ├── message │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── reducer.ts │ │ ├── sagas.ts │ │ └── types.ts │ ├── notifications │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── reducer.spec.ts │ │ ├── reducer.ts │ │ ├── sagas.spec.ts │ │ ├── sagas.ts │ │ └── types.ts │ ├── onboarding │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── reducer.ts │ │ ├── selectors.ts │ │ └── types.ts │ ├── paritySigner │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── reducer.ts │ │ └── types.ts │ ├── rates │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── reducer.spec.ts │ │ ├── reducer.ts │ │ ├── sagas.spec.ts │ │ ├── sagas.ts │ │ ├── selectors.ts │ │ └── types.ts │ ├── reducers.ts │ ├── rehydrateAddressBook.ts │ ├── sagas.ts │ ├── schedule │ │ ├── actions.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── reducer.ts │ │ ├── sagas.ts │ │ ├── selectors.ts │ │ └── types.ts │ ├── selectors.ts │ ├── sidebar │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── reducer.ts │ │ ├── selectors.ts │ │ └── types.ts │ ├── store.ts │ ├── testHelpers.ts │ ├── transaction │ │ ├── actions.ts │ │ ├── broadcast │ │ │ ├── actions.ts │ │ │ ├── index.ts │ │ │ ├── reducer.ts │ │ │ ├── sagas.spec.tsx │ │ │ ├── sagas.tsx │ │ │ ├── selectors.ts │ │ │ └── types.ts │ │ ├── fields │ │ │ ├── actions.ts │ │ │ ├── index.ts │ │ │ ├── reducer.ts │ │ │ ├── sagas.spec.ts │ │ │ ├── sagas.ts │ │ │ ├── selectors.ts │ │ │ └── types.ts │ │ ├── helpers.spec.tsx │ │ ├── helpers.tsx │ │ ├── index.ts │ │ ├── meta │ │ │ ├── actions.ts │ │ │ ├── index.ts │ │ │ ├── reducer.ts │ │ │ ├── sagas.spec.ts │ │ │ ├── sagas.ts │ │ │ ├── selectors.ts │ │ │ └── types.ts │ │ ├── network │ │ │ ├── actions.ts │ │ │ ├── index.ts │ │ │ ├── reducer.ts │ │ │ ├── sagas.spec.ts │ │ │ ├── sagas.ts │ │ │ ├── selectors.ts │ │ │ └── types.ts │ │ ├── reducer.spec.ts │ │ ├── reducer.ts │ │ ├── sagas.spec.ts │ │ ├── sagas.ts │ │ ├── selectors.spec.ts │ │ ├── selectors.ts │ │ ├── sign │ │ │ ├── actions.ts │ │ │ ├── index.ts │ │ │ ├── reducer.ts │ │ │ ├── sagas.spec.ts │ │ │ ├── sagas.ts │ │ │ ├── selectors.ts │ │ │ └── types.ts │ │ └── types.ts │ ├── transactions │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── reducer.ts │ │ ├── sagas.ts │ │ ├── selectors.ts │ │ └── types.ts │ ├── types.ts │ └── wallet │ │ ├── __snapshots__ │ │ └── sagas.spec.ts.snap │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── reducer.spec.ts │ │ ├── reducer.ts │ │ ├── sagas.spec.ts │ │ ├── sagas.ts │ │ ├── selectors.ts │ │ └── types.ts ├── index.html ├── index.tsx ├── libs │ ├── contracts │ │ ├── ABIFunction.ts │ │ ├── index.ts │ │ └── types.ts │ ├── decrypt.ts │ ├── ens │ │ ├── contracts │ │ │ ├── AbiFunc.d.ts │ │ │ ├── auction │ │ │ │ ├── auction.d.ts │ │ │ │ ├── auction.json │ │ │ │ └── outputMappings.ts │ │ │ ├── deed │ │ │ │ ├── deed.d.ts │ │ │ │ ├── deed.json │ │ │ │ └── outputMappings.ts │ │ │ ├── index.ts │ │ │ ├── registry │ │ │ │ ├── outputMappings.ts │ │ │ │ ├── registry.d.ts │ │ │ │ └── registry.json │ │ │ └── resolver │ │ │ │ ├── outputMappings.ts │ │ │ │ ├── resolver.d.ts │ │ │ │ └── resolver.json │ │ ├── index.ts │ │ └── networkConfigs │ │ │ ├── index.ts │ │ │ ├── main.json │ │ │ ├── rinkeby.json │ │ │ ├── ropsten.json │ │ │ └── rsk.json │ ├── erc20.ts │ ├── formatters.ts │ ├── nodes │ │ ├── INode.ts │ │ ├── configs.ts │ │ ├── index.ts │ │ ├── rpc │ │ │ ├── client.ts │ │ │ ├── index.ts │ │ │ ├── requests.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── tokenBalanceProxy.ts │ │ └── web3 │ │ │ ├── client.ts │ │ │ ├── index.ts │ │ │ ├── requests.ts │ │ │ └── types.ts │ ├── scheduling │ │ ├── contracts │ │ │ ├── RequestFactory.ts │ │ │ └── Scheduler.ts │ │ └── index.ts │ ├── signing.ts │ ├── transaction │ │ ├── index.ts │ │ ├── typings.ts │ │ └── utils │ │ │ ├── ether.ts │ │ │ ├── index.ts │ │ │ └── token.ts │ ├── units.ts │ ├── validators.ts │ ├── values.ts │ ├── wallet │ │ ├── IWallet.ts │ │ ├── balance.ts │ │ ├── config.ts │ │ ├── deterministic │ │ │ ├── deterministic.ts │ │ │ ├── enclave.ts │ │ │ ├── hardware.ts │ │ │ ├── index.ts │ │ │ ├── ledger.ts │ │ │ ├── mnemonic.ts │ │ │ ├── safe-t.ts │ │ │ └── trezor.ts │ │ ├── index.ts │ │ └── non-deterministic │ │ │ ├── address.ts │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ ├── parity.ts │ │ │ ├── wallets.ts │ │ │ └── web3.ts │ └── web-workers │ │ ├── fromV3.ts │ │ ├── generateKeystore.ts │ │ ├── index.ts │ │ └── workers │ │ ├── fromV3.worker.ts │ │ └── generateKeystore.worker.ts ├── sass │ ├── fonts.scss │ ├── mixins.scss │ ├── styles.scss │ ├── styles │ │ ├── alerts.scss │ │ ├── badbrowser.scss │ │ ├── buttons.scss │ │ ├── code.scss │ │ ├── flexbox.scss │ │ ├── forms.scss │ │ ├── helpers.scss │ │ ├── noscript.scss │ │ ├── overrides.scss │ │ ├── overrides │ │ │ ├── dropdowns.scss │ │ │ ├── forms.scss │ │ │ ├── grid.scss │ │ │ ├── input-groups.scss │ │ │ ├── inputs.scss │ │ │ ├── rc-slider.scss │ │ │ ├── react-select.scss │ │ │ ├── tables.scss │ │ │ └── type.scss │ │ ├── react-datetime.scss │ │ ├── scaffolding.scss │ │ ├── tab.scss │ │ └── themes.scss │ ├── variables.scss │ └── variables │ │ ├── colors.scss │ │ ├── electron.scss │ │ ├── grid.scss │ │ ├── spacing.scss │ │ ├── tables.scss │ │ ├── tooltips.scss │ │ ├── transitions.scss │ │ ├── typography.scss │ │ └── zindex.scss ├── translations │ ├── index.tsx │ └── lang │ │ ├── ar.json │ │ ├── de.json │ │ ├── el.json │ │ ├── en.json │ │ ├── es.json │ │ ├── fi.json │ │ ├── fr.json │ │ ├── ht.json │ │ ├── hu.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ja.json │ │ ├── ko.json │ │ ├── nl.json │ │ ├── no.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── ru.json │ │ ├── sk.json │ │ ├── sl.json │ │ ├── sv.json │ │ ├── tr.json │ │ ├── vi.json │ │ ├── zhcn.json │ │ └── zhtw.json ├── typescript │ ├── bn.d.ts │ ├── custom.d.ts │ ├── ethereumjs-abi.d.ts │ ├── ethereumjs-tx.d.ts │ ├── ethereumjs-util.d.ts │ ├── ethereumjs-wallet.d.ts │ ├── ethjs-util.d.ts │ ├── hdkey.d.ts │ ├── idna-uts46.d.ts │ ├── ledger │ │ ├── hw-app-eth.d.ts │ │ ├── hw-transport-node-hid-noevents.d.ts │ │ ├── hw-transport-u2f.d.ts │ │ ├── hw-transport-webusb.d.ts │ │ └── hw-transport.d.ts │ ├── parity.d.ts │ ├── pikaday-time.d.ts │ ├── react-copy-to-clipboard.d.ts │ ├── react-onclickoutside.d.ts │ ├── react-stepper-horizontal.d.ts │ ├── redux-test-utils.d.ts │ ├── rskjs-util.d.ts │ ├── safe-t-connect.d.ts │ ├── trezor-connect.d.ts │ ├── trezor-js.d.ts │ ├── trezor-link.d.ts │ ├── wallet-address-validator.d.ts │ └── worker-loader.d.ts ├── utils │ ├── blob.ts │ ├── consoleAdvertisement.ts │ ├── formatters.ts │ ├── helpers.ts │ ├── isMobile.ts │ ├── keystore.ts │ ├── localStorage.ts │ ├── tokens.ts │ ├── types.ts │ ├── versioning │ │ ├── index.ts │ │ └── types.ts │ └── web3.ts ├── v2 │ ├── config │ │ ├── donations.ts │ │ └── index.ts │ ├── features │ │ ├── BuyAndExchange │ │ │ ├── BuyAndExchange.scss │ │ │ ├── BuyAndExchange.tsx │ │ │ ├── ShapeShift │ │ │ │ ├── ShapeShift.scss │ │ │ │ ├── ShapeShift.tsx │ │ │ │ ├── ShapeShiftAuthorization.tsx │ │ │ │ ├── ShapeShiftSend.scss │ │ │ │ ├── ShapeShiftSend.tsx │ │ │ │ ├── components │ │ │ │ │ ├── AssetSelection.scss │ │ │ │ │ ├── AssetSelection.tsx │ │ │ │ │ ├── BitcoinQR.scss │ │ │ │ │ ├── BitcoinQR.tsx │ │ │ │ │ ├── ShapeShiftAddressForm.tsx │ │ │ │ │ ├── ShapeShiftPairForm.scss │ │ │ │ │ ├── ShapeShiftPairForm.tsx │ │ │ │ │ ├── ShapeShiftSendField.scss │ │ │ │ │ ├── ShapeShiftSendField.tsx │ │ │ │ │ ├── Support.scss │ │ │ │ │ ├── Support.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── helpers.ts │ │ │ │ ├── index.ts │ │ │ │ ├── strategies │ │ │ │ │ ├── BTC.tsx │ │ │ │ │ ├── XMR.tsx │ │ │ │ │ ├── default.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── ZeroEx │ │ │ │ ├── ZeroEx.scss │ │ │ │ ├── ZeroEx.tsx │ │ │ │ ├── constants.ts │ │ │ │ ├── helpers.ts │ │ │ │ └── index.ts │ │ │ ├── components │ │ │ │ ├── BuyAndExchangeOption.scss │ │ │ │ ├── BuyAndExchangeOption.tsx │ │ │ │ └── index.ts │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ └── routes.ts │ │ ├── index.ts │ │ └── registry.json │ ├── index.ts │ ├── routing │ │ ├── helpers.ts │ │ └── index.ts │ ├── services │ │ ├── API │ │ │ ├── API.ts │ │ │ ├── constants.ts │ │ │ └── index.ts │ │ ├── Analytics │ │ │ ├── Analytics.spec.ts │ │ │ ├── Analytics.ts │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── Cache │ │ │ ├── Cache.ts │ │ │ ├── constants.ts │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── ShapeShift │ │ │ ├── ShapeShift.ts │ │ │ ├── constants.ts │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── Storage │ │ │ ├── Storage.ts │ │ │ └── index.ts │ │ └── index.ts │ └── utils │ │ ├── environment.ts │ │ ├── error.ts │ │ ├── index.ts │ │ ├── platform.ts │ │ └── validators.ts └── vendor │ └── safe-t-connect.js ├── electron-app ├── constants.ts ├── icons │ ├── icon.icns │ ├── icon.ico │ └── icon.png ├── main │ ├── contextMenu.ts │ ├── index.ts │ ├── menu.ts │ ├── testrelease.json │ ├── updater.ts │ └── window.ts └── preload │ └── index.ts ├── jenkins ├── Docker │ └── Dockerfile ├── Jenkinsfile.darwin ├── Jenkinsfile.darwin.ci ├── Jenkinsfile.darwin.signing ├── Jenkinsfile.linux.develop ├── Jenkinsfile.linux.master ├── constants.js ├── lib.js └── upload.js ├── jest_config ├── __mocks__ │ ├── fileMock.ts │ ├── localStorage.ts │ ├── styleMock.ts │ └── workerMock.js ├── jest.config.json ├── jest.int.config.json └── setupJest.js ├── package.json ├── scripts ├── types │ ├── CommitStatus.ts │ ├── GitCommit.ts │ └── TokensJson.ts ├── update-tokens-utils.ts └── update-tokens.ts ├── shared ├── enclave │ ├── README.md │ ├── client │ │ ├── index.ts │ │ └── requests.ts │ ├── preload.ts │ ├── server │ │ ├── handlers │ │ │ ├── displayAddress.ts │ │ │ ├── getChainCode.ts │ │ │ ├── index.ts │ │ │ ├── signMessage.ts │ │ │ └── signTransaction.ts │ │ ├── index.ts │ │ ├── views │ │ │ ├── passphrase.html │ │ │ ├── passphrase.ts │ │ │ ├── pin.html │ │ │ ├── pin.ts │ │ │ └── showPrompt.ts │ │ └── wallets │ │ │ ├── index.ts │ │ │ ├── keepkey.ts │ │ │ ├── ledger.ts │ │ │ ├── msg-config.ts │ │ │ ├── safe-t.ts │ │ │ └── trezor.ts │ ├── types.ts │ └── utils.ts └── types │ ├── hardware-wallets.d.ts │ ├── network.d.ts │ ├── node.d.ts │ ├── sagaHelpers.d.ts │ └── transactions.d.ts ├── spec ├── config │ ├── contracts.spec.ts │ └── tokens.spec.ts ├── integration │ ├── RpcNodeTestConfig.js │ ├── data.int.ts │ └── derivationChecker.int.ts ├── libs │ ├── decrypt.spec.ts │ ├── ens.spec.ts │ ├── erc20.spec.ts │ ├── nodes │ │ └── rpc │ │ │ └── rpc.spec.ts │ ├── signing.spec.ts │ ├── units.spec.ts │ └── validators.spec.ts ├── package.json.spec.ts ├── pages │ ├── ENS.spec.tsx │ ├── SendTransaction.spec.tsx │ └── __snapshots__ │ │ ├── ENS.spec.tsx.snap │ │ └── SendTransaction.spec.tsx.snap └── utils │ ├── formatters.spec.ts │ ├── helpers.spec.ts │ ├── localStorage.spec.ts │ ├── mockRouteComponentProps.ts │ ├── shallowWithStore.ts │ ├── testStrings.ts │ └── tokens.spec.ts ├── static ├── .well-known │ └── security.txt ├── manifest.json ├── robots.txt └── sitemap.xml ├── travis-scripts ├── test-linux.sh └── test-osx.sh ├── tsconfig.json ├── tslint.json ├── webpack_config ├── buildElectron.js ├── config.js ├── electron-main.dev.js ├── electron-renderer.dev.js ├── makeConfig.js ├── plugins │ ├── clearDist.js │ ├── delay.js │ ├── serverLog.js │ └── sortCache.js ├── webpack.derivation-checker.js ├── webpack.electron-prod.js ├── webpack.html.js ├── webpack.prod.js └── webpack.rhl.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/.babelrc -------------------------------------------------------------------------------- /.drawbridgerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/.drawbridgerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v8.16.0 2 | 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | common/translations 2 | package.json 3 | __snapshots__ 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/.travis.yml -------------------------------------------------------------------------------- /.unlock-protocol.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/.unlock-protocol.config.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/SECURITY.md -------------------------------------------------------------------------------- /common/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/Root.tsx -------------------------------------------------------------------------------- /common/api/bity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/api/bity.ts -------------------------------------------------------------------------------- /common/api/emails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/api/emails.ts -------------------------------------------------------------------------------- /common/api/gas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/api/gas.ts -------------------------------------------------------------------------------- /common/api/mintme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/api/mintme.ts -------------------------------------------------------------------------------- /common/api/rates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/api/rates.ts -------------------------------------------------------------------------------- /common/api/shapeshift.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/api/shapeshift.spec.ts -------------------------------------------------------------------------------- /common/api/shapeshift.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/api/shapeshift.ts -------------------------------------------------------------------------------- /common/api/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/api/utils.ts -------------------------------------------------------------------------------- /common/assets/fonts/Lato-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/fonts/Lato-Bold.woff -------------------------------------------------------------------------------- /common/assets/fonts/Lato-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/fonts/Lato-Bold.woff2 -------------------------------------------------------------------------------- /common/assets/fonts/Lato-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/fonts/Lato-Light.woff -------------------------------------------------------------------------------- /common/assets/fonts/Lato-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/fonts/Lato-Light.woff2 -------------------------------------------------------------------------------- /common/assets/fonts/Lato-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/fonts/Lato-Regular.woff -------------------------------------------------------------------------------- /common/assets/fonts/Lato-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/fonts/Lato-Regular.woff2 -------------------------------------------------------------------------------- /common/assets/fonts/Roboto-Mono-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/fonts/Roboto-Mono-Light.woff -------------------------------------------------------------------------------- /common/assets/fonts/Roboto-Mono-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/fonts/Roboto-Mono-Light.woff2 -------------------------------------------------------------------------------- /common/assets/fonts/Roboto-Mono-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/fonts/Roboto-Mono-Regular.woff -------------------------------------------------------------------------------- /common/assets/fonts/Roboto-Mono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/fonts/Roboto-Mono-Regular.woff2 -------------------------------------------------------------------------------- /common/assets/fonts/social-media.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/fonts/social-media.woff -------------------------------------------------------------------------------- /common/assets/fonts/social-media.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/fonts/social-media.woff2 -------------------------------------------------------------------------------- /common/assets/images/augur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/augur.png -------------------------------------------------------------------------------- /common/assets/images/back-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/back-arrow.svg -------------------------------------------------------------------------------- /common/assets/images/bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/bitcoin.png -------------------------------------------------------------------------------- /common/assets/images/browsers/chrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/browsers/chrome.svg -------------------------------------------------------------------------------- /common/assets/images/browsers/firefox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/browsers/firefox.svg -------------------------------------------------------------------------------- /common/assets/images/browsers/opera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/browsers/opera.svg -------------------------------------------------------------------------------- /common/assets/images/chronologic-logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/chronologic-logo-dark.svg -------------------------------------------------------------------------------- /common/assets/images/chronologic-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/chronologic-logo.svg -------------------------------------------------------------------------------- /common/assets/images/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/close.svg -------------------------------------------------------------------------------- /common/assets/images/ether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/ether.png -------------------------------------------------------------------------------- /common/assets/images/exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/exit.svg -------------------------------------------------------------------------------- /common/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/favicon.png -------------------------------------------------------------------------------- /common/assets/images/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/header-bg.jpg -------------------------------------------------------------------------------- /common/assets/images/icn-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/icn-add.svg -------------------------------------------------------------------------------- /common/assets/images/icn-announcement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/icn-announcement.svg -------------------------------------------------------------------------------- /common/assets/images/icn-bank-vs-mycrypto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/icn-bank-vs-mycrypto.svg -------------------------------------------------------------------------------- /common/assets/images/icn-champagne.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/icn-champagne.svg -------------------------------------------------------------------------------- /common/assets/images/icn-chest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/icn-chest.svg -------------------------------------------------------------------------------- /common/assets/images/icn-ledger-nano.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/icn-ledger-nano.svg -------------------------------------------------------------------------------- /common/assets/images/icn-node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/icn-node.svg -------------------------------------------------------------------------------- /common/assets/images/icn-show.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/icn-show.svg -------------------------------------------------------------------------------- /common/assets/images/icn-trezor-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/icn-trezor-new.svg -------------------------------------------------------------------------------- /common/assets/images/icn-vault.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/icn-vault.svg -------------------------------------------------------------------------------- /common/assets/images/icon-dot-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/icon-dot-arrow.svg -------------------------------------------------------------------------------- /common/assets/images/icon-external-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/icon-external-link.svg -------------------------------------------------------------------------------- /common/assets/images/icon-help-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/icon-help-3.svg -------------------------------------------------------------------------------- /common/assets/images/icon-remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/icon-remove.svg -------------------------------------------------------------------------------- /common/assets/images/icon-theme-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/icon-theme-dark.svg -------------------------------------------------------------------------------- /common/assets/images/icon-theme-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/icon-theme-light.svg -------------------------------------------------------------------------------- /common/assets/images/link-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/link-preview.png -------------------------------------------------------------------------------- /common/assets/images/logo-bity-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/logo-bity-white.svg -------------------------------------------------------------------------------- /common/assets/images/logo-bity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/logo-bity.svg -------------------------------------------------------------------------------- /common/assets/images/logo-coinbase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/logo-coinbase.svg -------------------------------------------------------------------------------- /common/assets/images/logo-ethercards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/logo-ethercards.png -------------------------------------------------------------------------------- /common/assets/images/logo-ethereum-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/logo-ethereum-1.png -------------------------------------------------------------------------------- /common/assets/images/logo-ledger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/logo-ledger.svg -------------------------------------------------------------------------------- /common/assets/images/logo-mycrypto-transparent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/logo-mycrypto-transparent.svg -------------------------------------------------------------------------------- /common/assets/images/logo-mycrypto-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/logo-mycrypto-white.svg -------------------------------------------------------------------------------- /common/assets/images/logo-mycrypto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/logo-mycrypto.svg -------------------------------------------------------------------------------- /common/assets/images/logo-shapeshift-no-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/logo-shapeshift-no-text.svg -------------------------------------------------------------------------------- /common/assets/images/logo-shapeshift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/logo-shapeshift.svg -------------------------------------------------------------------------------- /common/assets/images/logo-simplex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/logo-simplex.png -------------------------------------------------------------------------------- /common/assets/images/logo-trezor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/logo-trezor.svg -------------------------------------------------------------------------------- /common/assets/images/logo-zeroex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/logo-zeroex.png -------------------------------------------------------------------------------- /common/assets/images/mintmecom-coin-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/mintmecom-coin-logo.svg -------------------------------------------------------------------------------- /common/assets/images/mobile/app-store-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/mobile/app-store-badge.png -------------------------------------------------------------------------------- /common/assets/images/mobile/google-play-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/mobile/google-play-badge.png -------------------------------------------------------------------------------- /common/assets/images/notes-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/notes-bg.png -------------------------------------------------------------------------------- /common/assets/images/onboarding/slide-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/onboarding/slide-01.svg -------------------------------------------------------------------------------- /common/assets/images/onboarding/slide-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/onboarding/slide-02.svg -------------------------------------------------------------------------------- /common/assets/images/onboarding/slide-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/onboarding/slide-03.svg -------------------------------------------------------------------------------- /common/assets/images/onboarding/slide-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/onboarding/slide-04.svg -------------------------------------------------------------------------------- /common/assets/images/onboarding/slide-05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/onboarding/slide-05.svg -------------------------------------------------------------------------------- /common/assets/images/onboarding/slide-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/onboarding/slide-06.svg -------------------------------------------------------------------------------- /common/assets/images/onboarding/slide-07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/onboarding/slide-07.svg -------------------------------------------------------------------------------- /common/assets/images/onboarding/slide-08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/onboarding/slide-08.svg -------------------------------------------------------------------------------- /common/assets/images/onboarding/slide-09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/onboarding/slide-09.svg -------------------------------------------------------------------------------- /common/assets/images/onboarding/slide-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/onboarding/slide-10.svg -------------------------------------------------------------------------------- /common/assets/images/print-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/print-sidebar.png -------------------------------------------------------------------------------- /common/assets/images/shapeshift-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/shapeshift-dark.svg -------------------------------------------------------------------------------- /common/assets/images/swap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/swap.svg -------------------------------------------------------------------------------- /common/assets/images/tail-triangle-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/tail-triangle-down.svg -------------------------------------------------------------------------------- /common/assets/images/unlock-guide/open-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/unlock-guide/open-app.png -------------------------------------------------------------------------------- /common/assets/images/unlock-guide/open-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/unlock-guide/open-web.png -------------------------------------------------------------------------------- /common/assets/images/unlock-guide/tab-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/unlock-guide/tab-app.png -------------------------------------------------------------------------------- /common/assets/images/unlock-guide/tab-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/unlock-guide/tab-web.png -------------------------------------------------------------------------------- /common/assets/images/wallets/cipher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/wallets/cipher.svg -------------------------------------------------------------------------------- /common/assets/images/wallets/digital-bitbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/wallets/digital-bitbox.svg -------------------------------------------------------------------------------- /common/assets/images/wallets/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/wallets/file.svg -------------------------------------------------------------------------------- /common/assets/images/wallets/hardware.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/wallets/hardware.svg -------------------------------------------------------------------------------- /common/assets/images/wallets/ledger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/wallets/ledger.svg -------------------------------------------------------------------------------- /common/assets/images/wallets/metamask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/wallets/metamask.svg -------------------------------------------------------------------------------- /common/assets/images/wallets/mist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/wallets/mist.svg -------------------------------------------------------------------------------- /common/assets/images/wallets/parity-signer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/wallets/parity-signer.svg -------------------------------------------------------------------------------- /common/assets/images/wallets/safe-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/wallets/safe-t.svg -------------------------------------------------------------------------------- /common/assets/images/wallets/trezor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/wallets/trezor.svg -------------------------------------------------------------------------------- /common/assets/images/wallets/trust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/wallets/trust.svg -------------------------------------------------------------------------------- /common/assets/images/wifi-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/wifi-off.svg -------------------------------------------------------------------------------- /common/assets/images/wifi-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/assets/images/wifi-on.svg -------------------------------------------------------------------------------- /common/badBrowserCheckA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/badBrowserCheckA.js -------------------------------------------------------------------------------- /common/badBrowserCheckB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/badBrowserCheckB.js -------------------------------------------------------------------------------- /common/components/AddressBookTable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/AddressBookTable.scss -------------------------------------------------------------------------------- /common/components/AddressBookTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/AddressBookTable.tsx -------------------------------------------------------------------------------- /common/components/AddressBookTableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/AddressBookTableRow.tsx -------------------------------------------------------------------------------- /common/components/AddressField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/AddressField.tsx -------------------------------------------------------------------------------- /common/components/AddressFieldFactory/AddressFieldFactory.scss: -------------------------------------------------------------------------------- 1 | .AddressField { 2 | position: relative; 3 | } 4 | -------------------------------------------------------------------------------- /common/components/AddressFieldFactory/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AddressFieldFactory'; 2 | -------------------------------------------------------------------------------- /common/components/AmountField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/AmountField.tsx -------------------------------------------------------------------------------- /common/components/AmountFieldFactory/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './AmountFieldFactory'; 2 | -------------------------------------------------------------------------------- /common/components/BalanceSidebar/AccountInfo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/BalanceSidebar/AccountInfo.scss -------------------------------------------------------------------------------- /common/components/BalanceSidebar/AccountInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/BalanceSidebar/AccountInfo.tsx -------------------------------------------------------------------------------- /common/components/BalanceSidebar/Promos.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/BalanceSidebar/Promos.scss -------------------------------------------------------------------------------- /common/components/BalanceSidebar/Promos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/BalanceSidebar/Promos.tsx -------------------------------------------------------------------------------- /common/components/BalanceSidebar/TokenBalances/AddCustomTokenForm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AddCustomTokenForm'; 2 | -------------------------------------------------------------------------------- /common/components/BalanceSidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/BalanceSidebar/index.tsx -------------------------------------------------------------------------------- /common/components/Banner/Banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/Banner/Banner.scss -------------------------------------------------------------------------------- /common/components/Banner/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/Banner/Banner.tsx -------------------------------------------------------------------------------- /common/components/Banner/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Banner'; 2 | -------------------------------------------------------------------------------- /common/components/ConfirmationModal/components/Body/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Body'; 2 | -------------------------------------------------------------------------------- /common/components/ConfirmationModal/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Body'; 2 | -------------------------------------------------------------------------------- /common/components/ConfirmationModal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ConfirmationModal'; 2 | -------------------------------------------------------------------------------- /common/components/ConfirmationModalTemplate/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ConfirmationModalTemplate'; 2 | -------------------------------------------------------------------------------- /common/components/CurrentCustomMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/CurrentCustomMessage.tsx -------------------------------------------------------------------------------- /common/components/CustomNodeModal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/CustomNodeModal/index.ts -------------------------------------------------------------------------------- /common/components/DataField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/DataField.tsx -------------------------------------------------------------------------------- /common/components/DataFieldFactory/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DataFieldFactory'; 2 | -------------------------------------------------------------------------------- /common/components/DisclaimerModal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/DisclaimerModal.scss -------------------------------------------------------------------------------- /common/components/DisclaimerModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/DisclaimerModal.tsx -------------------------------------------------------------------------------- /common/components/ElectronNav/ElectronNav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ElectronNav/ElectronNav.scss -------------------------------------------------------------------------------- /common/components/ElectronNav/ElectronNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ElectronNav/ElectronNav.tsx -------------------------------------------------------------------------------- /common/components/ElectronNav/LanguageSelect.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ElectronNav/LanguageSelect.scss -------------------------------------------------------------------------------- /common/components/ElectronNav/LanguageSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ElectronNav/LanguageSelect.tsx -------------------------------------------------------------------------------- /common/components/ElectronNav/NetworkSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ElectronNav/NetworkSelect.tsx -------------------------------------------------------------------------------- /common/components/ElectronNav/NetworkStatus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ElectronNav/NetworkStatus.scss -------------------------------------------------------------------------------- /common/components/ElectronNav/NetworkStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ElectronNav/NetworkStatus.tsx -------------------------------------------------------------------------------- /common/components/ElectronNav/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './ElectronNav'; 2 | -------------------------------------------------------------------------------- /common/components/ErrorScreen/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ErrorScreen/index.scss -------------------------------------------------------------------------------- /common/components/ErrorScreen/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ErrorScreen/index.tsx -------------------------------------------------------------------------------- /common/components/Errorable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/Errorable.tsx -------------------------------------------------------------------------------- /common/components/Footer/NewFooter/NewFooter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/Footer/NewFooter/NewFooter.scss -------------------------------------------------------------------------------- /common/components/Footer/NewFooter/NewFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/Footer/NewFooter/NewFooter.tsx -------------------------------------------------------------------------------- /common/components/Footer/PreFooter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/Footer/PreFooter.scss -------------------------------------------------------------------------------- /common/components/Footer/PreFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/Footer/PreFooter.tsx -------------------------------------------------------------------------------- /common/components/Footer/ThemeToggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/Footer/ThemeToggle.scss -------------------------------------------------------------------------------- /common/components/Footer/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/Footer/ThemeToggle.tsx -------------------------------------------------------------------------------- /common/components/Footer/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/Footer/index.scss -------------------------------------------------------------------------------- /common/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/Footer/index.tsx -------------------------------------------------------------------------------- /common/components/GasLimitField.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/GasLimitField.scss -------------------------------------------------------------------------------- /common/components/GasLimitField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/GasLimitField.tsx -------------------------------------------------------------------------------- /common/components/GasLimitFieldFactory/index.ts: -------------------------------------------------------------------------------- 1 | export * from './GasLimitFieldFactory'; 2 | -------------------------------------------------------------------------------- /common/components/GenerateKeystoreModal/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/GenerateKeystoreModal/index.scss -------------------------------------------------------------------------------- /common/components/GenerateKeystoreModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/GenerateKeystoreModal/index.tsx -------------------------------------------------------------------------------- /common/components/GenerateTransaction.scss: -------------------------------------------------------------------------------- 1 | .GenerateTransaction { 2 | margin-bottom: 1rem; 3 | } 4 | -------------------------------------------------------------------------------- /common/components/GenerateTransaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/GenerateTransaction.tsx -------------------------------------------------------------------------------- /common/components/GenerateTransactionFactory/index.ts: -------------------------------------------------------------------------------- 1 | export * from './GenerateTransactionFactory'; 2 | -------------------------------------------------------------------------------- /common/components/Header/NewHeader/NewHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/Header/NewHeader/NewHeader.scss -------------------------------------------------------------------------------- /common/components/Header/NewHeader/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/Header/NewHeader/constants.ts -------------------------------------------------------------------------------- /common/components/Header/NewHeader/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/Header/NewHeader/helpers.ts -------------------------------------------------------------------------------- /common/components/Header/NewHeader/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './NewHeader'; 2 | -------------------------------------------------------------------------------- /common/components/Header/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/Header/index.scss -------------------------------------------------------------------------------- /common/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/Header/index.tsx -------------------------------------------------------------------------------- /common/components/LogOutPrompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/LogOutPrompt.tsx -------------------------------------------------------------------------------- /common/components/NavigationLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/NavigationLink.tsx -------------------------------------------------------------------------------- /common/components/NetworkSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/NetworkSelector/index.tsx -------------------------------------------------------------------------------- /common/components/NewAppReleaseModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/NewAppReleaseModal.tsx -------------------------------------------------------------------------------- /common/components/NonceField.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/NonceField.scss -------------------------------------------------------------------------------- /common/components/NonceField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/NonceField.tsx -------------------------------------------------------------------------------- /common/components/NonceFieldFactory/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NonceFieldFactory'; 2 | -------------------------------------------------------------------------------- /common/components/PageNotFound/PageNotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/PageNotFound/PageNotFound.tsx -------------------------------------------------------------------------------- /common/components/PageNotFound/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PageNotFound'; 2 | -------------------------------------------------------------------------------- /common/components/Palette/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/Palette/index.scss -------------------------------------------------------------------------------- /common/components/Palette/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/Palette/index.tsx -------------------------------------------------------------------------------- /common/components/PaperWallet/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/PaperWallet/index.scss -------------------------------------------------------------------------------- /common/components/PaperWallet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/PaperWallet/index.tsx -------------------------------------------------------------------------------- /common/components/ParityQrSigner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ParityQrSigner.scss -------------------------------------------------------------------------------- /common/components/ParityQrSigner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ParityQrSigner.tsx -------------------------------------------------------------------------------- /common/components/PrintableWallet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/PrintableWallet/index.tsx -------------------------------------------------------------------------------- /common/components/RedirectWithQuery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/RedirectWithQuery.tsx -------------------------------------------------------------------------------- /common/components/RouteNotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/RouteNotFound.tsx -------------------------------------------------------------------------------- /common/components/SendButton.scss: -------------------------------------------------------------------------------- 1 | .SendButton { 2 | margin-bottom: 1rem; 3 | } 4 | -------------------------------------------------------------------------------- /common/components/SendButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/SendButton.tsx -------------------------------------------------------------------------------- /common/components/SendButtonFactory/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SendButtonFactory'; 2 | -------------------------------------------------------------------------------- /common/components/SendEverything/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SendEverything'; 2 | -------------------------------------------------------------------------------- /common/components/SigningStatus.scss: -------------------------------------------------------------------------------- 1 | .SigningStatus { 2 | margin-bottom: 1rem; 3 | } 4 | -------------------------------------------------------------------------------- /common/components/SigningStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/SigningStatus.tsx -------------------------------------------------------------------------------- /common/components/SubTabs/SubTabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/SubTabs/SubTabs.scss -------------------------------------------------------------------------------- /common/components/SubTabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/SubTabs/index.tsx -------------------------------------------------------------------------------- /common/components/TXMetaDataPanel/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './TXMetaDataPanel'; 2 | -------------------------------------------------------------------------------- /common/components/TogglablePassword.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/TogglablePassword.scss -------------------------------------------------------------------------------- /common/components/TogglablePassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/TogglablePassword.tsx -------------------------------------------------------------------------------- /common/components/TransactionStatus/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './TransactionStatus'; 2 | -------------------------------------------------------------------------------- /common/components/Translate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/Translate.tsx -------------------------------------------------------------------------------- /common/components/UnitDropDown/UnitDropDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/UnitDropDown/UnitDropDown.tsx -------------------------------------------------------------------------------- /common/components/UnitDropDown/index.ts: -------------------------------------------------------------------------------- 1 | export * from './UnitDropDown'; 2 | -------------------------------------------------------------------------------- /common/components/WalletDecrypt/disables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/WalletDecrypt/disables.ts -------------------------------------------------------------------------------- /common/components/WalletDecrypt/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/WalletDecrypt/index.tsx -------------------------------------------------------------------------------- /common/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/index.ts -------------------------------------------------------------------------------- /common/components/renderCbs/FullWalletOnly.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/renderCbs/FullWalletOnly.tsx -------------------------------------------------------------------------------- /common/components/renderCbs/GasQuery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/renderCbs/GasQuery.tsx -------------------------------------------------------------------------------- /common/components/renderCbs/OnlyUnlocked.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/renderCbs/OnlyUnlocked.tsx -------------------------------------------------------------------------------- /common/components/renderCbs/Query.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/renderCbs/Query.tsx -------------------------------------------------------------------------------- /common/components/renderCbs/WhenQueryExists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/renderCbs/WhenQueryExists.tsx -------------------------------------------------------------------------------- /common/components/renderCbs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/renderCbs/index.ts -------------------------------------------------------------------------------- /common/components/ui/Address.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/Address.tsx -------------------------------------------------------------------------------- /common/components/ui/CodeBlock.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/CodeBlock.scss -------------------------------------------------------------------------------- /common/components/ui/CodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/CodeBlock.tsx -------------------------------------------------------------------------------- /common/components/ui/DateTime/DateTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/DateTime/DateTime.tsx -------------------------------------------------------------------------------- /common/components/ui/DateTime/DaysView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/DateTime/DaysView.tsx -------------------------------------------------------------------------------- /common/components/ui/DateTime/MonthsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/DateTime/MonthsView.tsx -------------------------------------------------------------------------------- /common/components/ui/DateTime/TimeView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/DateTime/TimeView.tsx -------------------------------------------------------------------------------- /common/components/ui/DateTime/YearsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/DateTime/YearsView.tsx -------------------------------------------------------------------------------- /common/components/ui/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/Dropdown.tsx -------------------------------------------------------------------------------- /common/components/ui/DropdownShell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/DropdownShell.tsx -------------------------------------------------------------------------------- /common/components/ui/GroupedRadioToggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/GroupedRadioToggle.scss -------------------------------------------------------------------------------- /common/components/ui/GroupedRadioToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/GroupedRadioToggle.tsx -------------------------------------------------------------------------------- /common/components/ui/Help.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/Help.scss -------------------------------------------------------------------------------- /common/components/ui/Help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/Help.tsx -------------------------------------------------------------------------------- /common/components/ui/HelpLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/HelpLink.tsx -------------------------------------------------------------------------------- /common/components/ui/Identicon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/Identicon.scss -------------------------------------------------------------------------------- /common/components/ui/Identicon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/Identicon.tsx -------------------------------------------------------------------------------- /common/components/ui/InlineSpinner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/InlineSpinner.scss -------------------------------------------------------------------------------- /common/components/ui/InlineSpinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/InlineSpinner.tsx -------------------------------------------------------------------------------- /common/components/ui/Input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/Input.scss -------------------------------------------------------------------------------- /common/components/ui/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/Input.tsx -------------------------------------------------------------------------------- /common/components/ui/Modal/ModalBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/Modal/ModalBody.tsx -------------------------------------------------------------------------------- /common/components/ui/Modal/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/Modal/index.scss -------------------------------------------------------------------------------- /common/components/ui/Modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/Modal/index.tsx -------------------------------------------------------------------------------- /common/components/ui/NewTabLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/NewTabLink.tsx -------------------------------------------------------------------------------- /common/components/ui/OldDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/OldDropdown.tsx -------------------------------------------------------------------------------- /common/components/ui/PrimaryToggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/PrimaryToggle.scss -------------------------------------------------------------------------------- /common/components/ui/PrimaryToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/PrimaryToggle.tsx -------------------------------------------------------------------------------- /common/components/ui/QRCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/QRCode.tsx -------------------------------------------------------------------------------- /common/components/ui/SimpleButton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/SimpleButton.scss -------------------------------------------------------------------------------- /common/components/ui/SimpleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/SimpleButton.tsx -------------------------------------------------------------------------------- /common/components/ui/Spinner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/Spinner.scss -------------------------------------------------------------------------------- /common/components/ui/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/Spinner.tsx -------------------------------------------------------------------------------- /common/components/ui/SwapDropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/SwapDropdown.scss -------------------------------------------------------------------------------- /common/components/ui/SwapDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/SwapDropdown.tsx -------------------------------------------------------------------------------- /common/components/ui/TextArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/TextArea.tsx -------------------------------------------------------------------------------- /common/components/ui/Toggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/Toggle.scss -------------------------------------------------------------------------------- /common/components/ui/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/Toggle.tsx -------------------------------------------------------------------------------- /common/components/ui/Tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/Tooltip.scss -------------------------------------------------------------------------------- /common/components/ui/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/Tooltip.tsx -------------------------------------------------------------------------------- /common/components/ui/UnitDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/UnitDisplay.tsx -------------------------------------------------------------------------------- /common/components/ui/UnlockHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/UnlockHeader.scss -------------------------------------------------------------------------------- /common/components/ui/UnlockHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/UnlockHeader.tsx -------------------------------------------------------------------------------- /common/components/ui/Warning.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/Warning.scss -------------------------------------------------------------------------------- /common/components/ui/Warning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/Warning.tsx -------------------------------------------------------------------------------- /common/components/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/ui/index.ts -------------------------------------------------------------------------------- /common/components/v2/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ui'; 2 | -------------------------------------------------------------------------------- /common/components/v2/ui/Modal/Modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/v2/ui/Modal/Modal.scss -------------------------------------------------------------------------------- /common/components/v2/ui/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/v2/ui/Modal/Modal.tsx -------------------------------------------------------------------------------- /common/components/v2/ui/Modal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Modal'; 2 | -------------------------------------------------------------------------------- /common/components/v2/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/components/v2/ui/index.ts -------------------------------------------------------------------------------- /common/config/addressMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/addressMessages.ts -------------------------------------------------------------------------------- /common/config/bity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/bity.ts -------------------------------------------------------------------------------- /common/config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/constants.ts -------------------------------------------------------------------------------- /common/config/contracts/artis_sigma1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/contracts/artis_sigma1.json -------------------------------------------------------------------------------- /common/config/contracts/artis_tau1.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /common/config/contracts/esn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/contracts/esn.json -------------------------------------------------------------------------------- /common/config/contracts/etc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/contracts/etc.json -------------------------------------------------------------------------------- /common/config/contracts/eth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/contracts/eth.json -------------------------------------------------------------------------------- /common/config/contracts/exp.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /common/config/contracts/goerli.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /common/config/contracts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/contracts/index.ts -------------------------------------------------------------------------------- /common/config/contracts/pirl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/contracts/pirl.json -------------------------------------------------------------------------------- /common/config/contracts/rinkeby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/contracts/rinkeby.json -------------------------------------------------------------------------------- /common/config/contracts/ropsten.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/contracts/ropsten.json -------------------------------------------------------------------------------- /common/config/contracts/rsk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/contracts/rsk.json -------------------------------------------------------------------------------- /common/config/contracts/rsk_testnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/contracts/rsk_testnet.json -------------------------------------------------------------------------------- /common/config/contracts/ubq.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /common/config/contracts/web.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /common/config/data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/data.tsx -------------------------------------------------------------------------------- /common/config/dpaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/dpaths.ts -------------------------------------------------------------------------------- /common/config/helpArticles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/helpArticles.ts -------------------------------------------------------------------------------- /common/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/index.ts -------------------------------------------------------------------------------- /common/config/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/languages.json -------------------------------------------------------------------------------- /common/config/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/links.ts -------------------------------------------------------------------------------- /common/config/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/navigation.ts -------------------------------------------------------------------------------- /common/config/tokens/artis_sigma1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/tokens/artis_sigma1.json -------------------------------------------------------------------------------- /common/config/tokens/artis_tau1.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /common/config/tokens/ella.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/tokens/ella.json -------------------------------------------------------------------------------- /common/config/tokens/esn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/tokens/esn.json -------------------------------------------------------------------------------- /common/config/tokens/etc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/tokens/etc.json -------------------------------------------------------------------------------- /common/config/tokens/eth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/tokens/eth.json -------------------------------------------------------------------------------- /common/config/tokens/exp.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /common/config/tokens/goerli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/tokens/goerli.json -------------------------------------------------------------------------------- /common/config/tokens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/tokens/index.ts -------------------------------------------------------------------------------- /common/config/tokens/kovan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/tokens/kovan.json -------------------------------------------------------------------------------- /common/config/tokens/rinkeby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/tokens/rinkeby.json -------------------------------------------------------------------------------- /common/config/tokens/ropsten.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/tokens/ropsten.json -------------------------------------------------------------------------------- /common/config/tokens/rsk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/tokens/rsk.json -------------------------------------------------------------------------------- /common/config/tokens/rsk_testnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/tokens/rsk_testnet.json -------------------------------------------------------------------------------- /common/config/tokens/ubq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/config/tokens/ubq.json -------------------------------------------------------------------------------- /common/config/tokens/web.json: -------------------------------------------------------------------------------- 1 | [ 2 | 3 | ] 4 | -------------------------------------------------------------------------------- /common/containers/OnboardingModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './OnboardingModal'; 2 | -------------------------------------------------------------------------------- /common/containers/QrSignerModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/QrSignerModal/index.tsx -------------------------------------------------------------------------------- /common/containers/Sidebar/Sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/Sidebar/Sidebar.scss -------------------------------------------------------------------------------- /common/containers/Sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/Sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /common/containers/Sidebar/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/Sidebar/components/index.ts -------------------------------------------------------------------------------- /common/containers/Sidebar/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/Sidebar/helpers.ts -------------------------------------------------------------------------------- /common/containers/Sidebar/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Sidebar'; 2 | -------------------------------------------------------------------------------- /common/containers/TabSection/Notifications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/TabSection/Notifications.scss -------------------------------------------------------------------------------- /common/containers/TabSection/Notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/TabSection/Notifications.tsx -------------------------------------------------------------------------------- /common/containers/TabSection/OfflineTab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/TabSection/OfflineTab.scss -------------------------------------------------------------------------------- /common/containers/TabSection/OfflineTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/TabSection/OfflineTab.tsx -------------------------------------------------------------------------------- /common/containers/TabSection/WebTemplate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/TabSection/WebTemplate.scss -------------------------------------------------------------------------------- /common/containers/TabSection/WebTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/TabSection/WebTemplate.tsx -------------------------------------------------------------------------------- /common/containers/TabSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/TabSection/index.tsx -------------------------------------------------------------------------------- /common/containers/Tabs/BroadcastTx/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/Tabs/BroadcastTx/index.scss -------------------------------------------------------------------------------- /common/containers/Tabs/BroadcastTx/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/Tabs/BroadcastTx/index.tsx -------------------------------------------------------------------------------- /common/containers/Tabs/Contracts/components/Interact/components/InteractExplorer/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Fields'; 2 | -------------------------------------------------------------------------------- /common/containers/Tabs/Contracts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/Tabs/Contracts/index.tsx -------------------------------------------------------------------------------- /common/containers/Tabs/ENS/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/Tabs/ENS/components/index.ts -------------------------------------------------------------------------------- /common/containers/Tabs/ENS/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/Tabs/ENS/index.scss -------------------------------------------------------------------------------- /common/containers/Tabs/ENS/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/Tabs/ENS/index.tsx -------------------------------------------------------------------------------- /common/containers/Tabs/GenerateWallet/components/Keystore/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Keystore'; 2 | -------------------------------------------------------------------------------- /common/containers/Tabs/GenerateWallet/components/Mnemonic/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Mnemonic'; 2 | -------------------------------------------------------------------------------- /common/containers/Tabs/GenerateWallet/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './GenerateWallet'; 2 | -------------------------------------------------------------------------------- /common/containers/Tabs/ScheduleTransaction/components/Fields/ScheduleTimestamp/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ScheduleTimestampField'; 2 | -------------------------------------------------------------------------------- /common/containers/Tabs/ScheduleTransaction/components/Fields/ScheduleTimezoneDropDown/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ScheduleTimezoneDropDown'; 2 | -------------------------------------------------------------------------------- /common/containers/Tabs/ScheduleTransaction/components/Fields/ScheduleType/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ScheduleType'; 2 | -------------------------------------------------------------------------------- /common/containers/Tabs/ScheduleTransaction/components/Fields/SchedulingToggle/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SchedulingToggle'; 2 | -------------------------------------------------------------------------------- /common/containers/Tabs/ScheduleTransaction/components/Fields/TimeBounty/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TimeBountyField'; 2 | -------------------------------------------------------------------------------- /common/containers/Tabs/SendTransaction/components/Fields/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NonStandardTransaction'; 2 | -------------------------------------------------------------------------------- /common/containers/Tabs/SendTransaction/components/Fields/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Fields'; 2 | -------------------------------------------------------------------------------- /common/containers/Tabs/SupportPage/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/Tabs/SupportPage/index.scss -------------------------------------------------------------------------------- /common/containers/Tabs/SupportPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/Tabs/SupportPage/index.tsx -------------------------------------------------------------------------------- /common/containers/Tabs/ViewWallet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/Tabs/ViewWallet/index.tsx -------------------------------------------------------------------------------- /common/containers/Tabs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/containers/Tabs/index.ts -------------------------------------------------------------------------------- /common/containers/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TabSection'; 2 | -------------------------------------------------------------------------------- /common/features/addressBook/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/addressBook/actions.spec.ts -------------------------------------------------------------------------------- /common/features/addressBook/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/addressBook/actions.ts -------------------------------------------------------------------------------- /common/features/addressBook/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/addressBook/constants.ts -------------------------------------------------------------------------------- /common/features/addressBook/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/addressBook/index.ts -------------------------------------------------------------------------------- /common/features/addressBook/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/addressBook/reducer.spec.ts -------------------------------------------------------------------------------- /common/features/addressBook/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/addressBook/reducer.ts -------------------------------------------------------------------------------- /common/features/addressBook/sagas.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/addressBook/sagas.spec.ts -------------------------------------------------------------------------------- /common/features/addressBook/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/addressBook/sagas.ts -------------------------------------------------------------------------------- /common/features/addressBook/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/addressBook/selectors.spec.ts -------------------------------------------------------------------------------- /common/features/addressBook/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/addressBook/selectors.ts -------------------------------------------------------------------------------- /common/features/addressBook/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/addressBook/types.ts -------------------------------------------------------------------------------- /common/features/config/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/actions.ts -------------------------------------------------------------------------------- /common/features/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/index.ts -------------------------------------------------------------------------------- /common/features/config/meta/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/meta/actions.spec.ts -------------------------------------------------------------------------------- /common/features/config/meta/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/meta/actions.ts -------------------------------------------------------------------------------- /common/features/config/meta/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/meta/index.ts -------------------------------------------------------------------------------- /common/features/config/meta/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/meta/reducer.spec.ts -------------------------------------------------------------------------------- /common/features/config/meta/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/meta/reducer.ts -------------------------------------------------------------------------------- /common/features/config/meta/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/meta/selectors.ts -------------------------------------------------------------------------------- /common/features/config/meta/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/meta/types.ts -------------------------------------------------------------------------------- /common/features/config/networks/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/networks/actions.ts -------------------------------------------------------------------------------- /common/features/config/networks/custom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/networks/custom/index.ts -------------------------------------------------------------------------------- /common/features/config/networks/custom/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/networks/custom/types.ts -------------------------------------------------------------------------------- /common/features/config/networks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/networks/index.ts -------------------------------------------------------------------------------- /common/features/config/networks/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/networks/reducer.ts -------------------------------------------------------------------------------- /common/features/config/networks/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/networks/selectors.ts -------------------------------------------------------------------------------- /common/features/config/networks/static/actions.ts: -------------------------------------------------------------------------------- 1 | // Empty, but will be used in #1832 PR 2 | -------------------------------------------------------------------------------- /common/features/config/networks/static/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/networks/static/index.ts -------------------------------------------------------------------------------- /common/features/config/networks/static/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/networks/static/types.ts -------------------------------------------------------------------------------- /common/features/config/networks/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/networks/types.ts -------------------------------------------------------------------------------- /common/features/config/nodes/custom/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/nodes/custom/actions.ts -------------------------------------------------------------------------------- /common/features/config/nodes/custom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/nodes/custom/index.ts -------------------------------------------------------------------------------- /common/features/config/nodes/custom/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/nodes/custom/reducer.ts -------------------------------------------------------------------------------- /common/features/config/nodes/custom/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/nodes/custom/types.ts -------------------------------------------------------------------------------- /common/features/config/nodes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/nodes/index.ts -------------------------------------------------------------------------------- /common/features/config/nodes/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/nodes/reducer.ts -------------------------------------------------------------------------------- /common/features/config/nodes/selected/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/nodes/selected/index.ts -------------------------------------------------------------------------------- /common/features/config/nodes/selected/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/nodes/selected/types.ts -------------------------------------------------------------------------------- /common/features/config/nodes/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/nodes/selectors.ts -------------------------------------------------------------------------------- /common/features/config/nodes/static/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/nodes/static/actions.ts -------------------------------------------------------------------------------- /common/features/config/nodes/static/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/nodes/static/helpers.ts -------------------------------------------------------------------------------- /common/features/config/nodes/static/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/nodes/static/index.ts -------------------------------------------------------------------------------- /common/features/config/nodes/static/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/nodes/static/reducer.ts -------------------------------------------------------------------------------- /common/features/config/nodes/static/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/nodes/static/types.ts -------------------------------------------------------------------------------- /common/features/config/nodes/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/nodes/types.ts -------------------------------------------------------------------------------- /common/features/config/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/reducer.ts -------------------------------------------------------------------------------- /common/features/config/sagas.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/sagas.spec.ts -------------------------------------------------------------------------------- /common/features/config/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/sagas.ts -------------------------------------------------------------------------------- /common/features/config/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/selectors.ts -------------------------------------------------------------------------------- /common/features/config/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/config/types.ts -------------------------------------------------------------------------------- /common/features/configAndTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/configAndTokens.ts -------------------------------------------------------------------------------- /common/features/configureStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/configureStore.ts -------------------------------------------------------------------------------- /common/features/customTokens/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/customTokens/actions.ts -------------------------------------------------------------------------------- /common/features/customTokens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/customTokens/index.ts -------------------------------------------------------------------------------- /common/features/customTokens/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/customTokens/reducer.spec.ts -------------------------------------------------------------------------------- /common/features/customTokens/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/customTokens/reducer.ts -------------------------------------------------------------------------------- /common/features/customTokens/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/customTokens/selectors.ts -------------------------------------------------------------------------------- /common/features/customTokens/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/customTokens/types.ts -------------------------------------------------------------------------------- /common/features/deterministicWallets/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/deterministicWallets/actions.ts -------------------------------------------------------------------------------- /common/features/deterministicWallets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/deterministicWallets/index.ts -------------------------------------------------------------------------------- /common/features/deterministicWallets/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/deterministicWallets/reducer.ts -------------------------------------------------------------------------------- /common/features/deterministicWallets/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/deterministicWallets/sagas.ts -------------------------------------------------------------------------------- /common/features/deterministicWallets/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/deterministicWallets/types.ts -------------------------------------------------------------------------------- /common/features/ens/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/ens/actions.ts -------------------------------------------------------------------------------- /common/features/ens/domainRequests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/ens/domainRequests/index.ts -------------------------------------------------------------------------------- /common/features/ens/domainRequests/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/ens/domainRequests/reducer.ts -------------------------------------------------------------------------------- /common/features/ens/domainRequests/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/ens/domainRequests/selectors.ts -------------------------------------------------------------------------------- /common/features/ens/domainRequests/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/ens/domainRequests/types.ts -------------------------------------------------------------------------------- /common/features/ens/domainSelector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/ens/domainSelector/index.ts -------------------------------------------------------------------------------- /common/features/ens/domainSelector/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/ens/domainSelector/reducer.ts -------------------------------------------------------------------------------- /common/features/ens/domainSelector/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/ens/domainSelector/selectors.ts -------------------------------------------------------------------------------- /common/features/ens/domainSelector/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/ens/domainSelector/types.ts -------------------------------------------------------------------------------- /common/features/ens/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/ens/helpers.ts -------------------------------------------------------------------------------- /common/features/ens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/ens/index.ts -------------------------------------------------------------------------------- /common/features/ens/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/ens/reducer.spec.ts -------------------------------------------------------------------------------- /common/features/ens/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/ens/reducer.ts -------------------------------------------------------------------------------- /common/features/ens/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/ens/sagas.ts -------------------------------------------------------------------------------- /common/features/ens/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/ens/selectors.ts -------------------------------------------------------------------------------- /common/features/ens/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/ens/types.ts -------------------------------------------------------------------------------- /common/features/gas/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/gas/actions.ts -------------------------------------------------------------------------------- /common/features/gas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/gas/index.ts -------------------------------------------------------------------------------- /common/features/gas/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/gas/reducer.spec.ts -------------------------------------------------------------------------------- /common/features/gas/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/gas/reducer.ts -------------------------------------------------------------------------------- /common/features/gas/sagas.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/gas/sagas.spec.ts -------------------------------------------------------------------------------- /common/features/gas/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/gas/sagas.ts -------------------------------------------------------------------------------- /common/features/gas/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/gas/selectors.ts -------------------------------------------------------------------------------- /common/features/gas/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/gas/types.ts -------------------------------------------------------------------------------- /common/features/handleMetaMaskPolling.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/handleMetaMaskPolling.spec.ts -------------------------------------------------------------------------------- /common/features/handleMetaMaskPolling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/handleMetaMaskPolling.ts -------------------------------------------------------------------------------- /common/features/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/helpers.ts -------------------------------------------------------------------------------- /common/features/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './store'; 2 | -------------------------------------------------------------------------------- /common/features/message/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/message/actions.ts -------------------------------------------------------------------------------- /common/features/message/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/message/index.ts -------------------------------------------------------------------------------- /common/features/message/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/message/reducer.ts -------------------------------------------------------------------------------- /common/features/message/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/message/sagas.ts -------------------------------------------------------------------------------- /common/features/message/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/message/types.ts -------------------------------------------------------------------------------- /common/features/notifications/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/notifications/actions.ts -------------------------------------------------------------------------------- /common/features/notifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/notifications/index.ts -------------------------------------------------------------------------------- /common/features/notifications/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/notifications/reducer.spec.ts -------------------------------------------------------------------------------- /common/features/notifications/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/notifications/reducer.ts -------------------------------------------------------------------------------- /common/features/notifications/sagas.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/notifications/sagas.spec.ts -------------------------------------------------------------------------------- /common/features/notifications/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/notifications/sagas.ts -------------------------------------------------------------------------------- /common/features/notifications/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/notifications/types.ts -------------------------------------------------------------------------------- /common/features/onboarding/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/onboarding/actions.ts -------------------------------------------------------------------------------- /common/features/onboarding/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/onboarding/index.ts -------------------------------------------------------------------------------- /common/features/onboarding/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/onboarding/reducer.ts -------------------------------------------------------------------------------- /common/features/onboarding/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/onboarding/selectors.ts -------------------------------------------------------------------------------- /common/features/onboarding/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/onboarding/types.ts -------------------------------------------------------------------------------- /common/features/paritySigner/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/paritySigner/actions.ts -------------------------------------------------------------------------------- /common/features/paritySigner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/paritySigner/index.ts -------------------------------------------------------------------------------- /common/features/paritySigner/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/paritySigner/reducer.ts -------------------------------------------------------------------------------- /common/features/paritySigner/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/paritySigner/types.ts -------------------------------------------------------------------------------- /common/features/rates/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/rates/actions.ts -------------------------------------------------------------------------------- /common/features/rates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/rates/index.ts -------------------------------------------------------------------------------- /common/features/rates/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/rates/reducer.spec.ts -------------------------------------------------------------------------------- /common/features/rates/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/rates/reducer.ts -------------------------------------------------------------------------------- /common/features/rates/sagas.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/rates/sagas.spec.ts -------------------------------------------------------------------------------- /common/features/rates/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/rates/sagas.ts -------------------------------------------------------------------------------- /common/features/rates/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/rates/selectors.ts -------------------------------------------------------------------------------- /common/features/rates/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/rates/types.ts -------------------------------------------------------------------------------- /common/features/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/reducers.ts -------------------------------------------------------------------------------- /common/features/rehydrateAddressBook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/rehydrateAddressBook.ts -------------------------------------------------------------------------------- /common/features/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/sagas.ts -------------------------------------------------------------------------------- /common/features/schedule/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/schedule/actions.ts -------------------------------------------------------------------------------- /common/features/schedule/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/schedule/helpers.ts -------------------------------------------------------------------------------- /common/features/schedule/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/schedule/index.ts -------------------------------------------------------------------------------- /common/features/schedule/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/schedule/reducer.ts -------------------------------------------------------------------------------- /common/features/schedule/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/schedule/sagas.ts -------------------------------------------------------------------------------- /common/features/schedule/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/schedule/selectors.ts -------------------------------------------------------------------------------- /common/features/schedule/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/schedule/types.ts -------------------------------------------------------------------------------- /common/features/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/selectors.ts -------------------------------------------------------------------------------- /common/features/sidebar/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/sidebar/actions.ts -------------------------------------------------------------------------------- /common/features/sidebar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/sidebar/index.ts -------------------------------------------------------------------------------- /common/features/sidebar/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/sidebar/reducer.ts -------------------------------------------------------------------------------- /common/features/sidebar/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/sidebar/selectors.ts -------------------------------------------------------------------------------- /common/features/sidebar/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/sidebar/types.ts -------------------------------------------------------------------------------- /common/features/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/store.ts -------------------------------------------------------------------------------- /common/features/testHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/testHelpers.ts -------------------------------------------------------------------------------- /common/features/transaction/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/actions.ts -------------------------------------------------------------------------------- /common/features/transaction/broadcast/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/broadcast/index.ts -------------------------------------------------------------------------------- /common/features/transaction/broadcast/sagas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/broadcast/sagas.tsx -------------------------------------------------------------------------------- /common/features/transaction/broadcast/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/broadcast/types.ts -------------------------------------------------------------------------------- /common/features/transaction/fields/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/fields/actions.ts -------------------------------------------------------------------------------- /common/features/transaction/fields/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/fields/index.ts -------------------------------------------------------------------------------- /common/features/transaction/fields/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/fields/reducer.ts -------------------------------------------------------------------------------- /common/features/transaction/fields/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/fields/sagas.ts -------------------------------------------------------------------------------- /common/features/transaction/fields/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/fields/selectors.ts -------------------------------------------------------------------------------- /common/features/transaction/fields/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/fields/types.ts -------------------------------------------------------------------------------- /common/features/transaction/helpers.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/helpers.spec.tsx -------------------------------------------------------------------------------- /common/features/transaction/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/helpers.tsx -------------------------------------------------------------------------------- /common/features/transaction/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/index.ts -------------------------------------------------------------------------------- /common/features/transaction/meta/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/meta/actions.ts -------------------------------------------------------------------------------- /common/features/transaction/meta/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/meta/index.ts -------------------------------------------------------------------------------- /common/features/transaction/meta/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/meta/reducer.ts -------------------------------------------------------------------------------- /common/features/transaction/meta/sagas.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/meta/sagas.spec.ts -------------------------------------------------------------------------------- /common/features/transaction/meta/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/meta/sagas.ts -------------------------------------------------------------------------------- /common/features/transaction/meta/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/meta/selectors.ts -------------------------------------------------------------------------------- /common/features/transaction/meta/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/meta/types.ts -------------------------------------------------------------------------------- /common/features/transaction/network/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/network/actions.ts -------------------------------------------------------------------------------- /common/features/transaction/network/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/network/index.ts -------------------------------------------------------------------------------- /common/features/transaction/network/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/network/reducer.ts -------------------------------------------------------------------------------- /common/features/transaction/network/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/network/sagas.ts -------------------------------------------------------------------------------- /common/features/transaction/network/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/network/types.ts -------------------------------------------------------------------------------- /common/features/transaction/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/reducer.spec.ts -------------------------------------------------------------------------------- /common/features/transaction/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/reducer.ts -------------------------------------------------------------------------------- /common/features/transaction/sagas.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/sagas.spec.ts -------------------------------------------------------------------------------- /common/features/transaction/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/sagas.ts -------------------------------------------------------------------------------- /common/features/transaction/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/selectors.spec.ts -------------------------------------------------------------------------------- /common/features/transaction/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/selectors.ts -------------------------------------------------------------------------------- /common/features/transaction/sign/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/sign/actions.ts -------------------------------------------------------------------------------- /common/features/transaction/sign/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/sign/index.ts -------------------------------------------------------------------------------- /common/features/transaction/sign/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/sign/reducer.ts -------------------------------------------------------------------------------- /common/features/transaction/sign/sagas.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/sign/sagas.spec.ts -------------------------------------------------------------------------------- /common/features/transaction/sign/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/sign/sagas.ts -------------------------------------------------------------------------------- /common/features/transaction/sign/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/sign/selectors.ts -------------------------------------------------------------------------------- /common/features/transaction/sign/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/sign/types.ts -------------------------------------------------------------------------------- /common/features/transaction/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transaction/types.ts -------------------------------------------------------------------------------- /common/features/transactions/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transactions/actions.ts -------------------------------------------------------------------------------- /common/features/transactions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transactions/index.ts -------------------------------------------------------------------------------- /common/features/transactions/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transactions/reducer.ts -------------------------------------------------------------------------------- /common/features/transactions/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transactions/sagas.ts -------------------------------------------------------------------------------- /common/features/transactions/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transactions/selectors.ts -------------------------------------------------------------------------------- /common/features/transactions/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/transactions/types.ts -------------------------------------------------------------------------------- /common/features/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/types.ts -------------------------------------------------------------------------------- /common/features/wallet/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/wallet/actions.ts -------------------------------------------------------------------------------- /common/features/wallet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/wallet/index.ts -------------------------------------------------------------------------------- /common/features/wallet/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/wallet/reducer.spec.ts -------------------------------------------------------------------------------- /common/features/wallet/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/wallet/reducer.ts -------------------------------------------------------------------------------- /common/features/wallet/sagas.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/wallet/sagas.spec.ts -------------------------------------------------------------------------------- /common/features/wallet/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/wallet/sagas.ts -------------------------------------------------------------------------------- /common/features/wallet/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/wallet/selectors.ts -------------------------------------------------------------------------------- /common/features/wallet/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/features/wallet/types.ts -------------------------------------------------------------------------------- /common/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/index.html -------------------------------------------------------------------------------- /common/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/index.tsx -------------------------------------------------------------------------------- /common/libs/contracts/ABIFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/contracts/ABIFunction.ts -------------------------------------------------------------------------------- /common/libs/contracts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/contracts/index.ts -------------------------------------------------------------------------------- /common/libs/contracts/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/contracts/types.ts -------------------------------------------------------------------------------- /common/libs/decrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/decrypt.ts -------------------------------------------------------------------------------- /common/libs/ens/contracts/AbiFunc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/ens/contracts/AbiFunc.d.ts -------------------------------------------------------------------------------- /common/libs/ens/contracts/auction/auction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/ens/contracts/auction/auction.d.ts -------------------------------------------------------------------------------- /common/libs/ens/contracts/auction/auction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/ens/contracts/auction/auction.json -------------------------------------------------------------------------------- /common/libs/ens/contracts/deed/deed.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/ens/contracts/deed/deed.d.ts -------------------------------------------------------------------------------- /common/libs/ens/contracts/deed/deed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/ens/contracts/deed/deed.json -------------------------------------------------------------------------------- /common/libs/ens/contracts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/ens/contracts/index.ts -------------------------------------------------------------------------------- /common/libs/ens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/ens/index.ts -------------------------------------------------------------------------------- /common/libs/ens/networkConfigs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/ens/networkConfigs/index.ts -------------------------------------------------------------------------------- /common/libs/ens/networkConfigs/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/ens/networkConfigs/main.json -------------------------------------------------------------------------------- /common/libs/ens/networkConfigs/rinkeby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/ens/networkConfigs/rinkeby.json -------------------------------------------------------------------------------- /common/libs/ens/networkConfigs/ropsten.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/ens/networkConfigs/ropsten.json -------------------------------------------------------------------------------- /common/libs/ens/networkConfigs/rsk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/ens/networkConfigs/rsk.json -------------------------------------------------------------------------------- /common/libs/erc20.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/erc20.ts -------------------------------------------------------------------------------- /common/libs/formatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/formatters.ts -------------------------------------------------------------------------------- /common/libs/nodes/INode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/nodes/INode.ts -------------------------------------------------------------------------------- /common/libs/nodes/configs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/nodes/configs.ts -------------------------------------------------------------------------------- /common/libs/nodes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/nodes/index.ts -------------------------------------------------------------------------------- /common/libs/nodes/rpc/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/nodes/rpc/client.ts -------------------------------------------------------------------------------- /common/libs/nodes/rpc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/nodes/rpc/index.ts -------------------------------------------------------------------------------- /common/libs/nodes/rpc/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/nodes/rpc/requests.ts -------------------------------------------------------------------------------- /common/libs/nodes/rpc/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/nodes/rpc/types.ts -------------------------------------------------------------------------------- /common/libs/nodes/rpc/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/nodes/rpc/utils.ts -------------------------------------------------------------------------------- /common/libs/nodes/tokenBalanceProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/nodes/tokenBalanceProxy.ts -------------------------------------------------------------------------------- /common/libs/nodes/web3/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/nodes/web3/client.ts -------------------------------------------------------------------------------- /common/libs/nodes/web3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/nodes/web3/index.ts -------------------------------------------------------------------------------- /common/libs/nodes/web3/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/nodes/web3/requests.ts -------------------------------------------------------------------------------- /common/libs/nodes/web3/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/nodes/web3/types.ts -------------------------------------------------------------------------------- /common/libs/scheduling/contracts/Scheduler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/scheduling/contracts/Scheduler.ts -------------------------------------------------------------------------------- /common/libs/scheduling/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/scheduling/index.ts -------------------------------------------------------------------------------- /common/libs/signing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/signing.ts -------------------------------------------------------------------------------- /common/libs/transaction/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/transaction/index.ts -------------------------------------------------------------------------------- /common/libs/transaction/typings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/transaction/typings.ts -------------------------------------------------------------------------------- /common/libs/transaction/utils/ether.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/transaction/utils/ether.ts -------------------------------------------------------------------------------- /common/libs/transaction/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/transaction/utils/index.ts -------------------------------------------------------------------------------- /common/libs/transaction/utils/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/transaction/utils/token.ts -------------------------------------------------------------------------------- /common/libs/units.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/units.ts -------------------------------------------------------------------------------- /common/libs/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/validators.ts -------------------------------------------------------------------------------- /common/libs/values.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/values.ts -------------------------------------------------------------------------------- /common/libs/wallet/IWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/wallet/IWallet.ts -------------------------------------------------------------------------------- /common/libs/wallet/balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/wallet/balance.ts -------------------------------------------------------------------------------- /common/libs/wallet/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/wallet/config.ts -------------------------------------------------------------------------------- /common/libs/wallet/deterministic/enclave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/wallet/deterministic/enclave.ts -------------------------------------------------------------------------------- /common/libs/wallet/deterministic/hardware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/wallet/deterministic/hardware.ts -------------------------------------------------------------------------------- /common/libs/wallet/deterministic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/wallet/deterministic/index.ts -------------------------------------------------------------------------------- /common/libs/wallet/deterministic/ledger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/wallet/deterministic/ledger.ts -------------------------------------------------------------------------------- /common/libs/wallet/deterministic/mnemonic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/wallet/deterministic/mnemonic.ts -------------------------------------------------------------------------------- /common/libs/wallet/deterministic/safe-t.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/wallet/deterministic/safe-t.ts -------------------------------------------------------------------------------- /common/libs/wallet/deterministic/trezor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/wallet/deterministic/trezor.ts -------------------------------------------------------------------------------- /common/libs/wallet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/wallet/index.ts -------------------------------------------------------------------------------- /common/libs/wallet/non-deterministic/address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/wallet/non-deterministic/address.ts -------------------------------------------------------------------------------- /common/libs/wallet/non-deterministic/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/wallet/non-deterministic/helpers.ts -------------------------------------------------------------------------------- /common/libs/wallet/non-deterministic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/wallet/non-deterministic/index.ts -------------------------------------------------------------------------------- /common/libs/wallet/non-deterministic/parity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/wallet/non-deterministic/parity.ts -------------------------------------------------------------------------------- /common/libs/wallet/non-deterministic/wallets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/wallet/non-deterministic/wallets.ts -------------------------------------------------------------------------------- /common/libs/wallet/non-deterministic/web3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/wallet/non-deterministic/web3.ts -------------------------------------------------------------------------------- /common/libs/web-workers/fromV3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/web-workers/fromV3.ts -------------------------------------------------------------------------------- /common/libs/web-workers/generateKeystore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/web-workers/generateKeystore.ts -------------------------------------------------------------------------------- /common/libs/web-workers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/libs/web-workers/index.ts -------------------------------------------------------------------------------- /common/sass/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/fonts.scss -------------------------------------------------------------------------------- /common/sass/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/mixins.scss -------------------------------------------------------------------------------- /common/sass/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles.scss -------------------------------------------------------------------------------- /common/sass/styles/alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/alerts.scss -------------------------------------------------------------------------------- /common/sass/styles/badbrowser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/badbrowser.scss -------------------------------------------------------------------------------- /common/sass/styles/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/buttons.scss -------------------------------------------------------------------------------- /common/sass/styles/code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/code.scss -------------------------------------------------------------------------------- /common/sass/styles/flexbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/flexbox.scss -------------------------------------------------------------------------------- /common/sass/styles/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/forms.scss -------------------------------------------------------------------------------- /common/sass/styles/helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/helpers.scss -------------------------------------------------------------------------------- /common/sass/styles/noscript.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/noscript.scss -------------------------------------------------------------------------------- /common/sass/styles/overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/overrides.scss -------------------------------------------------------------------------------- /common/sass/styles/overrides/dropdowns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/overrides/dropdowns.scss -------------------------------------------------------------------------------- /common/sass/styles/overrides/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/overrides/forms.scss -------------------------------------------------------------------------------- /common/sass/styles/overrides/grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/overrides/grid.scss -------------------------------------------------------------------------------- /common/sass/styles/overrides/input-groups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/overrides/input-groups.scss -------------------------------------------------------------------------------- /common/sass/styles/overrides/inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/overrides/inputs.scss -------------------------------------------------------------------------------- /common/sass/styles/overrides/rc-slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/overrides/rc-slider.scss -------------------------------------------------------------------------------- /common/sass/styles/overrides/react-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/overrides/react-select.scss -------------------------------------------------------------------------------- /common/sass/styles/overrides/tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/overrides/tables.scss -------------------------------------------------------------------------------- /common/sass/styles/overrides/type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/overrides/type.scss -------------------------------------------------------------------------------- /common/sass/styles/react-datetime.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/react-datetime.scss -------------------------------------------------------------------------------- /common/sass/styles/scaffolding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/scaffolding.scss -------------------------------------------------------------------------------- /common/sass/styles/tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/tab.scss -------------------------------------------------------------------------------- /common/sass/styles/themes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/styles/themes.scss -------------------------------------------------------------------------------- /common/sass/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/variables.scss -------------------------------------------------------------------------------- /common/sass/variables/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/variables/colors.scss -------------------------------------------------------------------------------- /common/sass/variables/electron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/variables/electron.scss -------------------------------------------------------------------------------- /common/sass/variables/grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/variables/grid.scss -------------------------------------------------------------------------------- /common/sass/variables/spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/variables/spacing.scss -------------------------------------------------------------------------------- /common/sass/variables/tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/variables/tables.scss -------------------------------------------------------------------------------- /common/sass/variables/tooltips.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/variables/tooltips.scss -------------------------------------------------------------------------------- /common/sass/variables/transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/variables/transitions.scss -------------------------------------------------------------------------------- /common/sass/variables/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/variables/typography.scss -------------------------------------------------------------------------------- /common/sass/variables/zindex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/sass/variables/zindex.scss -------------------------------------------------------------------------------- /common/translations/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/index.tsx -------------------------------------------------------------------------------- /common/translations/lang/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/ar.json -------------------------------------------------------------------------------- /common/translations/lang/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/de.json -------------------------------------------------------------------------------- /common/translations/lang/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/el.json -------------------------------------------------------------------------------- /common/translations/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/en.json -------------------------------------------------------------------------------- /common/translations/lang/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/es.json -------------------------------------------------------------------------------- /common/translations/lang/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/fi.json -------------------------------------------------------------------------------- /common/translations/lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/fr.json -------------------------------------------------------------------------------- /common/translations/lang/ht.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/ht.json -------------------------------------------------------------------------------- /common/translations/lang/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/hu.json -------------------------------------------------------------------------------- /common/translations/lang/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/id.json -------------------------------------------------------------------------------- /common/translations/lang/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/it.json -------------------------------------------------------------------------------- /common/translations/lang/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/ja.json -------------------------------------------------------------------------------- /common/translations/lang/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/ko.json -------------------------------------------------------------------------------- /common/translations/lang/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/nl.json -------------------------------------------------------------------------------- /common/translations/lang/no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/no.json -------------------------------------------------------------------------------- /common/translations/lang/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/pl.json -------------------------------------------------------------------------------- /common/translations/lang/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/pt.json -------------------------------------------------------------------------------- /common/translations/lang/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/ru.json -------------------------------------------------------------------------------- /common/translations/lang/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/sk.json -------------------------------------------------------------------------------- /common/translations/lang/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/sl.json -------------------------------------------------------------------------------- /common/translations/lang/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/sv.json -------------------------------------------------------------------------------- /common/translations/lang/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/tr.json -------------------------------------------------------------------------------- /common/translations/lang/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/vi.json -------------------------------------------------------------------------------- /common/translations/lang/zhcn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/zhcn.json -------------------------------------------------------------------------------- /common/translations/lang/zhtw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/translations/lang/zhtw.json -------------------------------------------------------------------------------- /common/typescript/bn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/bn.d.ts -------------------------------------------------------------------------------- /common/typescript/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/custom.d.ts -------------------------------------------------------------------------------- /common/typescript/ethereumjs-abi.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/ethereumjs-abi.d.ts -------------------------------------------------------------------------------- /common/typescript/ethereumjs-tx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/ethereumjs-tx.d.ts -------------------------------------------------------------------------------- /common/typescript/ethereumjs-util.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/ethereumjs-util.d.ts -------------------------------------------------------------------------------- /common/typescript/ethereumjs-wallet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/ethereumjs-wallet.d.ts -------------------------------------------------------------------------------- /common/typescript/ethjs-util.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/ethjs-util.d.ts -------------------------------------------------------------------------------- /common/typescript/hdkey.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/hdkey.d.ts -------------------------------------------------------------------------------- /common/typescript/idna-uts46.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/idna-uts46.d.ts -------------------------------------------------------------------------------- /common/typescript/ledger/hw-app-eth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/ledger/hw-app-eth.d.ts -------------------------------------------------------------------------------- /common/typescript/ledger/hw-transport-u2f.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/ledger/hw-transport-u2f.d.ts -------------------------------------------------------------------------------- /common/typescript/ledger/hw-transport.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/ledger/hw-transport.d.ts -------------------------------------------------------------------------------- /common/typescript/parity.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/parity.d.ts -------------------------------------------------------------------------------- /common/typescript/pikaday-time.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'pikaday-time'; 2 | -------------------------------------------------------------------------------- /common/typescript/react-copy-to-clipboard.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/react-copy-to-clipboard.d.ts -------------------------------------------------------------------------------- /common/typescript/react-onclickoutside.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-onclickoutside'; 2 | -------------------------------------------------------------------------------- /common/typescript/react-stepper-horizontal.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/react-stepper-horizontal.d.ts -------------------------------------------------------------------------------- /common/typescript/redux-test-utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/redux-test-utils.d.ts -------------------------------------------------------------------------------- /common/typescript/rskjs-util.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/rskjs-util.d.ts -------------------------------------------------------------------------------- /common/typescript/safe-t-connect.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/safe-t-connect.d.ts -------------------------------------------------------------------------------- /common/typescript/trezor-connect.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/trezor-connect.d.ts -------------------------------------------------------------------------------- /common/typescript/trezor-js.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/trezor-js.d.ts -------------------------------------------------------------------------------- /common/typescript/trezor-link.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/trezor-link.d.ts -------------------------------------------------------------------------------- /common/typescript/wallet-address-validator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/wallet-address-validator.d.ts -------------------------------------------------------------------------------- /common/typescript/worker-loader.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/typescript/worker-loader.d.ts -------------------------------------------------------------------------------- /common/utils/blob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/utils/blob.ts -------------------------------------------------------------------------------- /common/utils/consoleAdvertisement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/utils/consoleAdvertisement.ts -------------------------------------------------------------------------------- /common/utils/formatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/utils/formatters.ts -------------------------------------------------------------------------------- /common/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/utils/helpers.ts -------------------------------------------------------------------------------- /common/utils/isMobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/utils/isMobile.ts -------------------------------------------------------------------------------- /common/utils/keystore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/utils/keystore.ts -------------------------------------------------------------------------------- /common/utils/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/utils/localStorage.ts -------------------------------------------------------------------------------- /common/utils/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/utils/tokens.ts -------------------------------------------------------------------------------- /common/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/utils/types.ts -------------------------------------------------------------------------------- /common/utils/versioning/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/utils/versioning/index.ts -------------------------------------------------------------------------------- /common/utils/versioning/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/utils/versioning/types.ts -------------------------------------------------------------------------------- /common/utils/web3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/utils/web3.ts -------------------------------------------------------------------------------- /common/v2/config/donations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/config/donations.ts -------------------------------------------------------------------------------- /common/v2/config/index.ts: -------------------------------------------------------------------------------- 1 | export * from './donations'; 2 | -------------------------------------------------------------------------------- /common/v2/features/BuyAndExchange/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/features/BuyAndExchange/constants.ts -------------------------------------------------------------------------------- /common/v2/features/BuyAndExchange/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/features/BuyAndExchange/index.ts -------------------------------------------------------------------------------- /common/v2/features/BuyAndExchange/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/features/BuyAndExchange/routes.ts -------------------------------------------------------------------------------- /common/v2/features/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BuyAndExchange'; 2 | -------------------------------------------------------------------------------- /common/v2/features/registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/features/registry.json -------------------------------------------------------------------------------- /common/v2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/index.ts -------------------------------------------------------------------------------- /common/v2/routing/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/routing/helpers.ts -------------------------------------------------------------------------------- /common/v2/routing/index.ts: -------------------------------------------------------------------------------- 1 | export * from './helpers'; 2 | -------------------------------------------------------------------------------- /common/v2/services/API/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/services/API/API.ts -------------------------------------------------------------------------------- /common/v2/services/API/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/services/API/constants.ts -------------------------------------------------------------------------------- /common/v2/services/API/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/services/API/index.ts -------------------------------------------------------------------------------- /common/v2/services/Analytics/Analytics.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/services/Analytics/Analytics.spec.ts -------------------------------------------------------------------------------- /common/v2/services/Analytics/Analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/services/Analytics/Analytics.ts -------------------------------------------------------------------------------- /common/v2/services/Analytics/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/services/Analytics/constants.ts -------------------------------------------------------------------------------- /common/v2/services/Analytics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/services/Analytics/index.ts -------------------------------------------------------------------------------- /common/v2/services/Analytics/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/services/Analytics/types.ts -------------------------------------------------------------------------------- /common/v2/services/Cache/Cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/services/Cache/Cache.ts -------------------------------------------------------------------------------- /common/v2/services/Cache/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/services/Cache/constants.ts -------------------------------------------------------------------------------- /common/v2/services/Cache/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/services/Cache/helpers.ts -------------------------------------------------------------------------------- /common/v2/services/Cache/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/services/Cache/index.ts -------------------------------------------------------------------------------- /common/v2/services/Cache/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/services/Cache/types.ts -------------------------------------------------------------------------------- /common/v2/services/ShapeShift/ShapeShift.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/services/ShapeShift/ShapeShift.ts -------------------------------------------------------------------------------- /common/v2/services/ShapeShift/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/services/ShapeShift/constants.ts -------------------------------------------------------------------------------- /common/v2/services/ShapeShift/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/services/ShapeShift/helpers.ts -------------------------------------------------------------------------------- /common/v2/services/ShapeShift/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/services/ShapeShift/index.ts -------------------------------------------------------------------------------- /common/v2/services/ShapeShift/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/services/ShapeShift/types.ts -------------------------------------------------------------------------------- /common/v2/services/Storage/Storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/services/Storage/Storage.ts -------------------------------------------------------------------------------- /common/v2/services/Storage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/services/Storage/index.ts -------------------------------------------------------------------------------- /common/v2/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/services/index.ts -------------------------------------------------------------------------------- /common/v2/utils/environment.ts: -------------------------------------------------------------------------------- 1 | export const isDevelopment = (): boolean => process.env.NODE_ENV !== 'production'; 2 | -------------------------------------------------------------------------------- /common/v2/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/utils/error.ts -------------------------------------------------------------------------------- /common/v2/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/utils/index.ts -------------------------------------------------------------------------------- /common/v2/utils/platform.ts: -------------------------------------------------------------------------------- 1 | export const isDesktop = (): boolean => !!process.env.BUILD_ELECTRON; 2 | -------------------------------------------------------------------------------- /common/v2/utils/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/v2/utils/validators.ts -------------------------------------------------------------------------------- /common/vendor/safe-t-connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/common/vendor/safe-t-connect.js -------------------------------------------------------------------------------- /electron-app/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/electron-app/constants.ts -------------------------------------------------------------------------------- /electron-app/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/electron-app/icons/icon.icns -------------------------------------------------------------------------------- /electron-app/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/electron-app/icons/icon.ico -------------------------------------------------------------------------------- /electron-app/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/electron-app/icons/icon.png -------------------------------------------------------------------------------- /electron-app/main/contextMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/electron-app/main/contextMenu.ts -------------------------------------------------------------------------------- /electron-app/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/electron-app/main/index.ts -------------------------------------------------------------------------------- /electron-app/main/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/electron-app/main/menu.ts -------------------------------------------------------------------------------- /electron-app/main/testrelease.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/electron-app/main/testrelease.json -------------------------------------------------------------------------------- /electron-app/main/updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/electron-app/main/updater.ts -------------------------------------------------------------------------------- /electron-app/main/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/electron-app/main/window.ts -------------------------------------------------------------------------------- /electron-app/preload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/electron-app/preload/index.ts -------------------------------------------------------------------------------- /jenkins/Docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/jenkins/Docker/Dockerfile -------------------------------------------------------------------------------- /jenkins/Jenkinsfile.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/jenkins/Jenkinsfile.darwin -------------------------------------------------------------------------------- /jenkins/Jenkinsfile.darwin.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/jenkins/Jenkinsfile.darwin.ci -------------------------------------------------------------------------------- /jenkins/Jenkinsfile.darwin.signing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/jenkins/Jenkinsfile.darwin.signing -------------------------------------------------------------------------------- /jenkins/Jenkinsfile.linux.develop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/jenkins/Jenkinsfile.linux.develop -------------------------------------------------------------------------------- /jenkins/Jenkinsfile.linux.master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/jenkins/Jenkinsfile.linux.master -------------------------------------------------------------------------------- /jenkins/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/jenkins/constants.js -------------------------------------------------------------------------------- /jenkins/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/jenkins/lib.js -------------------------------------------------------------------------------- /jenkins/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/jenkins/upload.js -------------------------------------------------------------------------------- /jest_config/__mocks__/fileMock.ts: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /jest_config/__mocks__/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/jest_config/__mocks__/localStorage.ts -------------------------------------------------------------------------------- /jest_config/__mocks__/styleMock.ts: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /jest_config/__mocks__/workerMock.js: -------------------------------------------------------------------------------- 1 | module.exports = Object.create(null); -------------------------------------------------------------------------------- /jest_config/jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/jest_config/jest.config.json -------------------------------------------------------------------------------- /jest_config/jest.int.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/jest_config/jest.int.config.json -------------------------------------------------------------------------------- /jest_config/setupJest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/jest_config/setupJest.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/package.json -------------------------------------------------------------------------------- /scripts/types/CommitStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/scripts/types/CommitStatus.ts -------------------------------------------------------------------------------- /scripts/types/GitCommit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/scripts/types/GitCommit.ts -------------------------------------------------------------------------------- /scripts/types/TokensJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/scripts/types/TokensJson.ts -------------------------------------------------------------------------------- /scripts/update-tokens-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/scripts/update-tokens-utils.ts -------------------------------------------------------------------------------- /scripts/update-tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/scripts/update-tokens.ts -------------------------------------------------------------------------------- /shared/enclave/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/enclave/README.md -------------------------------------------------------------------------------- /shared/enclave/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/enclave/client/index.ts -------------------------------------------------------------------------------- /shared/enclave/client/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/enclave/client/requests.ts -------------------------------------------------------------------------------- /shared/enclave/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/enclave/preload.ts -------------------------------------------------------------------------------- /shared/enclave/server/handlers/getChainCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/enclave/server/handlers/getChainCode.ts -------------------------------------------------------------------------------- /shared/enclave/server/handlers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/enclave/server/handlers/index.ts -------------------------------------------------------------------------------- /shared/enclave/server/handlers/signMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/enclave/server/handlers/signMessage.ts -------------------------------------------------------------------------------- /shared/enclave/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/enclave/server/index.ts -------------------------------------------------------------------------------- /shared/enclave/server/views/passphrase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/enclave/server/views/passphrase.html -------------------------------------------------------------------------------- /shared/enclave/server/views/passphrase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/enclave/server/views/passphrase.ts -------------------------------------------------------------------------------- /shared/enclave/server/views/pin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/enclave/server/views/pin.html -------------------------------------------------------------------------------- /shared/enclave/server/views/pin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/enclave/server/views/pin.ts -------------------------------------------------------------------------------- /shared/enclave/server/views/showPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/enclave/server/views/showPrompt.ts -------------------------------------------------------------------------------- /shared/enclave/server/wallets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/enclave/server/wallets/index.ts -------------------------------------------------------------------------------- /shared/enclave/server/wallets/keepkey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/enclave/server/wallets/keepkey.ts -------------------------------------------------------------------------------- /shared/enclave/server/wallets/ledger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/enclave/server/wallets/ledger.ts -------------------------------------------------------------------------------- /shared/enclave/server/wallets/msg-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/enclave/server/wallets/msg-config.ts -------------------------------------------------------------------------------- /shared/enclave/server/wallets/safe-t.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/enclave/server/wallets/safe-t.ts -------------------------------------------------------------------------------- /shared/enclave/server/wallets/trezor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/enclave/server/wallets/trezor.ts -------------------------------------------------------------------------------- /shared/enclave/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/enclave/types.ts -------------------------------------------------------------------------------- /shared/enclave/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/enclave/utils.ts -------------------------------------------------------------------------------- /shared/types/hardware-wallets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/types/hardware-wallets.d.ts -------------------------------------------------------------------------------- /shared/types/network.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/types/network.d.ts -------------------------------------------------------------------------------- /shared/types/node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/types/node.d.ts -------------------------------------------------------------------------------- /shared/types/sagaHelpers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/types/sagaHelpers.d.ts -------------------------------------------------------------------------------- /shared/types/transactions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/shared/types/transactions.d.ts -------------------------------------------------------------------------------- /spec/config/contracts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/config/contracts.spec.ts -------------------------------------------------------------------------------- /spec/config/tokens.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/config/tokens.spec.ts -------------------------------------------------------------------------------- /spec/integration/RpcNodeTestConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/integration/RpcNodeTestConfig.js -------------------------------------------------------------------------------- /spec/integration/data.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/integration/data.int.ts -------------------------------------------------------------------------------- /spec/integration/derivationChecker.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/integration/derivationChecker.int.ts -------------------------------------------------------------------------------- /spec/libs/decrypt.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/libs/decrypt.spec.ts -------------------------------------------------------------------------------- /spec/libs/ens.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/libs/ens.spec.ts -------------------------------------------------------------------------------- /spec/libs/erc20.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/libs/erc20.spec.ts -------------------------------------------------------------------------------- /spec/libs/nodes/rpc/rpc.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/libs/nodes/rpc/rpc.spec.ts -------------------------------------------------------------------------------- /spec/libs/signing.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/libs/signing.spec.ts -------------------------------------------------------------------------------- /spec/libs/units.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/libs/units.spec.ts -------------------------------------------------------------------------------- /spec/libs/validators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/libs/validators.spec.ts -------------------------------------------------------------------------------- /spec/package.json.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/package.json.spec.ts -------------------------------------------------------------------------------- /spec/pages/ENS.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/pages/ENS.spec.tsx -------------------------------------------------------------------------------- /spec/pages/SendTransaction.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/pages/SendTransaction.spec.tsx -------------------------------------------------------------------------------- /spec/pages/__snapshots__/ENS.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/pages/__snapshots__/ENS.spec.tsx.snap -------------------------------------------------------------------------------- /spec/utils/formatters.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/utils/formatters.spec.ts -------------------------------------------------------------------------------- /spec/utils/helpers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/utils/helpers.spec.ts -------------------------------------------------------------------------------- /spec/utils/localStorage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/utils/localStorage.spec.ts -------------------------------------------------------------------------------- /spec/utils/mockRouteComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/utils/mockRouteComponentProps.ts -------------------------------------------------------------------------------- /spec/utils/shallowWithStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/utils/shallowWithStore.ts -------------------------------------------------------------------------------- /spec/utils/testStrings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/utils/testStrings.ts -------------------------------------------------------------------------------- /spec/utils/tokens.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/spec/utils/tokens.spec.ts -------------------------------------------------------------------------------- /static/.well-known/security.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/static/.well-known/security.txt -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/static/manifest.json -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/static/robots.txt -------------------------------------------------------------------------------- /static/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/static/sitemap.xml -------------------------------------------------------------------------------- /travis-scripts/test-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/travis-scripts/test-linux.sh -------------------------------------------------------------------------------- /travis-scripts/test-osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/travis-scripts/test-osx.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack_config/buildElectron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/webpack_config/buildElectron.js -------------------------------------------------------------------------------- /webpack_config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/webpack_config/config.js -------------------------------------------------------------------------------- /webpack_config/electron-main.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/webpack_config/electron-main.dev.js -------------------------------------------------------------------------------- /webpack_config/electron-renderer.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/webpack_config/electron-renderer.dev.js -------------------------------------------------------------------------------- /webpack_config/makeConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/webpack_config/makeConfig.js -------------------------------------------------------------------------------- /webpack_config/plugins/clearDist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/webpack_config/plugins/clearDist.js -------------------------------------------------------------------------------- /webpack_config/plugins/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/webpack_config/plugins/delay.js -------------------------------------------------------------------------------- /webpack_config/plugins/serverLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/webpack_config/plugins/serverLog.js -------------------------------------------------------------------------------- /webpack_config/plugins/sortCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/webpack_config/plugins/sortCache.js -------------------------------------------------------------------------------- /webpack_config/webpack.derivation-checker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/webpack_config/webpack.derivation-checker.js -------------------------------------------------------------------------------- /webpack_config/webpack.electron-prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/webpack_config/webpack.electron-prod.js -------------------------------------------------------------------------------- /webpack_config/webpack.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/webpack_config/webpack.html.js -------------------------------------------------------------------------------- /webpack_config/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/webpack_config/webpack.prod.js -------------------------------------------------------------------------------- /webpack_config/webpack.rhl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/webpack_config/webpack.rhl.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintme-com/wallet/HEAD/yarn.lock --------------------------------------------------------------------------------