├── .gitignore ├── README.md ├── eslint.config.mjs ├── jsconfig.json ├── next.config.mjs ├── package.json ├── public ├── header-logo.svg ├── icons │ ├── android.png │ ├── app-store.png │ ├── arrow-next.svg │ ├── arrow-prev.svg │ ├── arrow-right.png │ ├── chains │ │ ├── bitcoin.svg │ │ ├── ethereum.svg │ │ ├── monero.svg │ │ └── tron.svg │ ├── close.svg │ ├── download.png │ ├── f-droid.png │ ├── fromapp.svg │ ├── github.svg │ ├── google-play.png │ ├── icon-down.svg │ ├── icon-up.svg │ ├── qr.svg │ ├── reddit.svg │ ├── telegram.svg │ ├── testflight.png │ └── twitter.svg ├── images │ ├── analytics │ │ ├── 1.png │ │ └── 2.png │ ├── banner │ │ ├── bitcoin.svg │ │ ├── certik.svg │ │ ├── immunfi.svg │ │ ├── wallet-2.png │ │ ├── wallet-scrutiny.svg │ │ ├── wallet-shadow.png │ │ └── wallet.png │ ├── dexes │ │ └── 1.png │ ├── donate │ │ ├── bitcoin.png │ │ ├── ethereum.png │ │ ├── monero.png │ │ └── tron.png │ ├── duress │ │ ├── 1.png │ │ └── 2.png │ ├── gradients │ │ ├── ellipse-blue.png │ │ ├── ellipse-green-1x.png │ │ ├── ellipse-green.png │ │ ├── ellipse-grey-1x.png │ │ ├── ellipse-grey-2x.png │ │ ├── ellipse-purple-1x.png │ │ ├── ellipse-purple.png │ │ ├── ellipse-red-1x.png │ │ ├── ellipse-yellow-1x.png │ │ ├── ellipse-yellow.png │ │ ├── grey.svg │ │ ├── hero.svg │ │ ├── violet.svg │ │ └── yellow.svg │ ├── hs.png │ ├── learn │ │ ├── bitcoin.png │ │ ├── course-advanced.png │ │ ├── course-beginner.png │ │ ├── course-profi.png │ │ ├── crypto.png │ │ ├── private-keys.png │ │ └── wallet.png │ ├── multi-wallet-market │ │ ├── 1.png │ │ ├── 2.png │ │ └── 3.png │ ├── multi-wallet │ │ ├── 1.png │ │ ├── 2.png │ │ └── 3.png │ ├── partners │ │ ├── bitcoin.png │ │ ├── blockchair-user.png │ │ ├── blockchair.png │ │ ├── blum-user.png │ │ ├── blum.png │ │ ├── drpc-user.png │ │ ├── drpc.png │ │ ├── ethereum.png │ │ ├── f-droid.png │ │ ├── hashdit.png │ │ ├── immunfi.png │ │ ├── nym-user.png │ │ ├── nym.png │ │ ├── scrutiny.png │ │ ├── zcash-user.png │ │ └── zcash.png │ ├── qr.png │ └── tickers │ │ ├── 1inch.png │ │ ├── alpaca.png │ │ ├── blockchair.png │ │ ├── chainlink.png │ │ ├── coingecko.png │ │ ├── dash.png │ │ ├── defillama.png │ │ ├── defiyield.png │ │ ├── ens.png │ │ ├── ethereum.png │ │ ├── wc.png │ │ └── zcash.png └── releases │ ├── 0.1.md │ ├── 0.10.md │ ├── 0.11.md │ ├── 0.12.md │ ├── 0.13.md │ ├── 0.14.md │ ├── 0.15.md │ ├── 0.16.md │ ├── 0.17.md │ ├── 0.18.md │ ├── 0.19.md │ ├── 0.2.md │ ├── 0.20.md │ ├── 0.21.md │ ├── 0.22.md │ ├── 0.23.md │ ├── 0.24.md │ ├── 0.25.md │ ├── 0.26.md │ ├── 0.27.md │ ├── 0.28.md │ ├── 0.29.md │ ├── 0.3.md │ ├── 0.30.md │ ├── 0.31.md │ ├── 0.32.md │ ├── 0.33.md │ ├── 0.34.md │ ├── 0.35.md │ ├── 0.36.md │ ├── 0.37.md │ ├── 0.38.md │ ├── 0.39.md │ ├── 0.4.md │ ├── 0.40.md │ ├── 0.41.md │ ├── 0.42.md │ ├── 0.43.md │ ├── 0.44.md │ ├── 0.45.md │ ├── 0.5.md │ ├── 0.6.md │ ├── 0.7.md │ ├── 0.8.md │ └── 0.9.md ├── src ├── app │ ├── bootstrap.scss │ ├── faq-markdown │ │ └── route.js │ ├── faq │ │ └── page.js │ ├── favicon.ico │ ├── layout.js │ ├── layout.scss │ ├── page.js │ ├── privacy-policy │ │ └── page.js │ ├── releases │ │ └── route.js │ └── tos │ │ └── page.js ├── components │ ├── Animated │ │ ├── Analytics.js │ │ ├── Backup.js │ │ ├── Chains.js │ │ ├── Dexes.js │ │ ├── Duress.js │ │ ├── DuressMode.js │ │ ├── GradientImage.js │ │ ├── GradientImageBig.js │ │ ├── GradientImageBottomRight.js │ │ ├── GradientImageDuress.js │ │ ├── IconSwitcher.js │ │ ├── MultiWallet.js │ │ ├── MultiWalletMarket.js │ │ ├── NonCustodial.js │ │ ├── OpenSource.js │ │ ├── SpamDetect.js │ │ └── WalletConnect.js │ ├── Card │ │ ├── Card.css │ │ ├── Card.js │ │ ├── CardBig.js │ │ ├── CardLearn.js │ │ ├── CardMedium.js │ │ ├── CardOverlay.js │ │ └── CardPartner.js │ ├── Donate │ │ ├── Donate.js │ │ └── DotateCard.js │ ├── Download.js │ ├── Engineered.js │ ├── Faq │ │ ├── Faq.js │ │ └── FaqContent.js │ ├── Footer.js │ ├── Form │ │ └── SubscribeForm.js │ ├── Header │ │ ├── Header.css │ │ ├── Header.js │ │ └── HeaderFixed.js │ ├── Hero │ │ ├── Hero.css │ │ └── Hero.js │ ├── Home.js │ ├── Markdown │ │ ├── Markdown.scss │ │ ├── MarkdownFaq.js │ │ ├── MarkdownPreview.js │ │ └── MarkdownRelease.js │ ├── Modal.js │ ├── Page │ │ ├── Page.js │ │ └── PageHeader.js │ ├── Roadmap │ │ ├── Roadmap.css │ │ ├── Roadmap.js │ │ └── releases.json │ ├── Tickers.js │ └── Video │ │ ├── VideoTab.js │ │ ├── Videos.js │ │ └── YoutubeEmbed.js ├── faq.json └── faq │ ├── de │ ├── about │ │ ├── are-there-any-risks-when-using-unstoppable-wallet.md │ │ ├── does-it-cost-anything-to-use-unstoppable-wallet.md │ │ ├── how-to-contact-unstoppable-team.md │ │ ├── how-to-update-unstoppable-wallet.md │ │ ├── how-unstoppable-is-different-from-crypto-exchange-wallets.md │ │ ├── how-unstoppable-is-different-from-other-non-custodial-wallets.md │ │ ├── how-unstoppable-makes-money.md │ │ ├── how-unstoppable-wallet-works.md │ │ ├── what-can-be-done-with-unstoppable-wallet.md │ │ ├── what-happens-if-unstoppable-app-goes-down.md │ │ ├── what-is-unstoppable-wallet.md │ │ ├── what-should-someone-do-before-using-unstoppable.md │ │ ├── where-to-download-unstoppable-wallet-from.md │ │ ├── who-is-building-unstoppable-wallet.md │ │ └── why-choose-unstoppable-wallet.md │ ├── balance │ │ ├── how-to-change-base-currency-for-the-wallet.md │ │ ├── how-to-hide-show-wallet-balance.md │ │ ├── what-a-triangle-alert-icon-on-a-coin-means.md │ │ ├── what-syncing-status-on-a-coin-means.md │ │ ├── what-the-lock-sign-next-to-coin-balance-means.md │ │ ├── why-balance-appears-dimmed.md │ │ ├── why-receive-button-for-the-coin-appears-disabled.md │ │ ├── why-send-button-for-the-coin-appears-disabled.md │ │ ├── why-the-exchange-rate-dor-the-token-not-shown.md │ │ ├── why-there-are-random-token-balances-appearing-in-my-wallet.md │ │ └── why-wallet-balance-is-showing-incorrect-amount.md │ ├── binance │ │ ├── what-are-bep2-tokens.md │ │ ├── what-are-bep20-tokens.md │ │ └── what-is-binance-smart-chain.md │ ├── bitcoin │ │ ├── how-long-does-it-take-for-a-bitcoin-transaction-to-complete.md │ │ ├── how-to-cancel-a-bitcoin-transaction.md │ │ ├── how-to-monitor-status-of-incoming-outgoing-bitcoin-transaction.md │ │ ├── how-to-resend-a-failed-bitcoin-transaction.md │ │ ├── how-to-send-bitcoin-transaction.md │ │ ├── how-to-send-bitcoin-transactions-that-can-not-be-spent-until-certain-date.md │ │ ├── how-unstoppable-recommends-transaction-fee-for-bitcoin.md │ │ ├── is-is-safe-to-share-bitcoin-payment-address-with-others.md │ │ ├── what-do-bip44-bip49-bip84-mean-in-bitcoin.md │ │ ├── when-a-bitcoin-transaction-considered-final-and-irreversible.md │ │ ├── why-bitcoin-balance-did-not-increase-after-receiving-payment.md │ │ ├── why-bitcoin-payment-adderess-keeps-changing.md │ │ ├── why-bitcoin-transaction-stays-pending.md │ │ └── why-can-not-send-bitcoins-that-were-just-received.md │ ├── dexes-swaps │ │ ├── are-there-any-limitations-to-swap-amounts.md │ │ ├── are-there-any-risks-when-swapping-cryptocurrency.md │ │ ├── how-to-swap-cryptocurrency-in-unstoppable.md │ │ ├── what-are-cryptocurrency-swaps.md │ │ ├── which-dexes-supported-in-unstoppable.md │ │ ├── why-a-separate-approve-transaction-needed-before-swap.md │ │ ├── why-can-not-i-swap-bitcoin-and-other-coins.md │ │ ├── why-swap-fees-on-ethereum-are-so-high.md │ │ ├── why-unstoppable-supports-only-dexes.md │ │ └── why-was-i-changed-transaction-fee-for-a-failed-swap.md │ ├── ethereum │ │ ├── how-ethereum-transactions-are-different-from-bitcoin.md │ │ ├── how-long-does-it-take-for-ethereum-transaction-to-complete.md │ │ ├── how-to-cancel-replace-an-ethereum-transaction.md │ │ ├── how-to-monitor-status-of-an-ethereum-transaction.md │ │ ├── how-to-send-ethereum-transaction.md │ │ ├── how-unstoppable-recommends-transaction-fee-for-ethereum.md │ │ ├── is-it-safe-to-share-ethereum-receive-address-with-other.md │ │ ├── what-are-erc20-tokens.md │ │ ├── what-are-gas-gasprice-gaslimit.md │ │ ├── what-is-an-ethereum-smart-contract.md │ │ ├── when-an-ethereum-transaction-considered-final-irreversible.md │ │ ├── when-ethereum-transaction-can-fail.md │ │ ├── why-eth-needed-to-send-erc20-token.md │ │ ├── why-ethereum-and-erc20-token-address-stays-always-same.md │ │ ├── why-ethereum-transaction-stays-pending.md │ │ ├── why-ethereum-transactions-are-so-expensive.md │ │ └── why-failed-transactions-consume-transaction-fees.md │ ├── management │ │ ├── how-to-activate-cryptocurrency-for-the-wallet.md │ │ ├── how-to-backup-wallet.md │ │ ├── how-to-buy-sell-cryptocurrency-for-fiat-in-unstoppable.md │ │ ├── how-to-create-wallet.md │ │ ├── how-to-delete-the-wallet.md │ │ ├── how-to-manage-multiple-wallets.md │ │ ├── how-to-restore-wallet.md │ │ ├── how-to-send-receive-cryptocurrency-from-to-wallet.md │ │ ├── migration_recommended.md │ │ ├── migration_required.md │ │ └── what-are-private-keys-mnemonic-phrase-wallet-seed.md │ ├── privacy │ │ ├── are-my-bitcoin-transactions-and-balances-private.md │ │ ├── are-my-ethereum-transactions-and-balances-private.md │ │ ├── are-users-anonymous-when-transacting-on-unstoppable.md │ │ ├── does-unstoppable-collect-or-share-any-user-data.md │ │ ├── how-to-buy-cryptocurrency-anonymously.md │ │ ├── how-using-tor-and-vpn-enhances-privacy.md │ │ └── is-it-safe-to-share-data-with-exchanges-and-other-service-providers.md │ ├── security │ │ ├── how-to-use-mnemonic-passphrase-to-manage-multiple-wallets.md │ │ ├── how-unstoppable-keeps-funds-secure.md │ │ ├── is-it-possible-to-regain-access-to-the-wallet-if-the-private-key-is-lost.md │ │ ├── is-unstoppable-less-secure-than-hardware-wallets.md │ │ ├── what-is-mnemonic-passphrase.md │ │ ├── what-is-mnemonic-phrase.md │ │ ├── what-steps-to-take-if-lost-my-phone.md │ │ └── why-to-set-an-unlock-code-for-the-wallet-app.md │ └── transactions │ │ ├── can-a-user-send-transaction-to-self.md │ │ ├── does-unstoppable-charge-fees-for-sending-transactions.md │ │ ├── how-unstoppable-calculates-transaction-fees.md │ │ ├── is-it-safe-to-share-payment-address-with-others.md │ │ ├── what-are-transactions-fee.md │ │ ├── what-happens-if-transaction-sent-to-the-wrong-address.md │ │ ├── why-are-transaction-fees-for-some-cryptocurrencies-are-so-high.md │ │ └── why-transaction-value-shown-incorrectly-in-recent-transaction.md │ ├── en │ ├── about │ │ ├── are-there-any-risks-when-using-unstoppable-wallet.md │ │ ├── does-it-cost-anything-to-use-unstoppable-wallet.md │ │ ├── how-to-contact-unstoppable-team.md │ │ ├── how-to-update-unstoppable-wallet.md │ │ ├── how-unstoppable-is-different-from-other-non-custodial-wallets.md │ │ ├── how-unstoppable-makes-money.md │ │ ├── how-unstoppable-wallet-works.md │ │ ├── what-can-be-done-with-unstoppable-wallet.md │ │ ├── what-happens-if-unstoppable-app-goes-down.md │ │ ├── what-is-unstoppable-wallet.md │ │ ├── what-should-someone-do-before-using-unstoppable.md │ │ ├── where-to-download-unstoppable-wallet-from.md │ │ ├── who-is-building-unstoppable-wallet.md │ │ └── why-choose-unstoppable-wallet.md │ ├── balance │ │ ├── how-to-change-base-currency-for-the-wallet.md │ │ ├── how-to-hide-show-wallet-balance.md │ │ ├── what-a-triangle-alert-icon-on-a-coin-means.md │ │ ├── what-syncing-status-on-a-coin-means.md │ │ ├── what-the-lock-sign-next-to-coin-balance-means.md │ │ ├── why-balance-appears-dimmed.md │ │ ├── why-receive-button-for-the-coin-appears-disabled.md │ │ ├── why-send-button-for-the-coin-appears-disabled.md │ │ ├── why-the-exchange-rate-dor-the-token-not-shown.md │ │ ├── why-there-are-random-token-balances-appearing-in-my-wallet.md │ │ └── why-wallet-balance-is-showing-incorrect-amount.md │ ├── binance │ │ ├── how-to-add-bep20-bep2-token.md │ │ ├── what-are-bep2-tokens.md │ │ ├── what-are-bep20-tokens.md │ │ └── what-is-binance-smart-chain.md │ ├── bitcoin │ │ ├── how-long-does-it-take-for-a-bitcoin-transaction-to-complete.md │ │ ├── how-to-cancel-a-bitcoin-transaction.md │ │ ├── how-to-monitor-status-of-incoming-outgoing-bitcoin-transaction.md │ │ ├── how-to-resend-a-failed-bitcoin-transaction.md │ │ ├── how-to-send-bitcoin-transaction.md │ │ ├── how-to-send-bitcoin-transactions-that-can-not-be-spent-until-certain-date.md │ │ ├── how-unstoppable-recommends-transaction-fee-for-bitcoin.md │ │ ├── is-is-safe-to-share-bitcoin-payment-address-with-others.md │ │ ├── what-do-bip44-bip49-bip84-mean-in-bitcoin.md │ │ ├── when-a-bitcoin-transaction-considered-final-and-irreversible.md │ │ ├── why-bitcoin-balance-did-not-increase-after-receiving-payment.md │ │ ├── why-bitcoin-payment-adderess-keeps-changing.md │ │ ├── why-bitcoin-transaction-stays-pending.md │ │ └── why-can-not-send-bitcoins-that-were-just-received.md │ ├── defi │ │ ├── defi-risks.md │ │ ├── defi-transactions.md │ │ ├── how-to-use-defi.md │ │ ├── popular-defi-services.md │ │ └── what-is-defi.md │ ├── dexes-swaps │ │ ├── are-there-any-limitations-to-swap-amounts.md │ │ ├── are-there-any-risks-when-swapping-cryptocurrency.md │ │ ├── how-to-swap-cryptocurrency-in-unstoppable.md │ │ ├── what-are-cryptocurrency-swaps.md │ │ ├── which-dexes-supported-in-unstoppable.md │ │ ├── why-a-separate-approve-transaction-needed-before-swap.md │ │ ├── why-can-not-i-swap-bitcoin-and-other-coins.md │ │ ├── why-swap-fees-on-ethereum-are-so-high.md │ │ ├── why-unstoppable-supports-only-dexes.md │ │ └── why-was-i-changed-transaction-fee-for-a-failed-swap.md │ ├── ethereum │ │ ├── how-ethereum-transactions-are-different-from-bitcoin.md │ │ ├── how-long-does-it-take-for-ethereum-transaction-to-complete.md │ │ ├── how-to-add-erc20-token.md │ │ ├── how-to-cancel-replace-an-ethereum-transaction.md │ │ ├── how-to-monitor-status-of-an-ethereum-transaction.md │ │ ├── how-to-send-ethereum-transaction.md │ │ ├── how-unstoppable-recommends-transaction-fee-for-ethereum.md │ │ ├── is-it-safe-to-share-ethereum-receive-address-with-other.md │ │ ├── what-are-erc20-tokens.md │ │ ├── what-are-gas-gasprice-gaslimit.md │ │ ├── what-is-an-ethereum-smart-contract.md │ │ ├── when-an-ethereum-transaction-considered-final-irreversible.md │ │ ├── when-ethereum-transaction-can-fail.md │ │ ├── why-eth-needed-to-send-erc20-token.md │ │ ├── why-ethereum-and-erc20-token-address-stays-always-same.md │ │ ├── why-ethereum-transaction-stays-pending.md │ │ ├── why-ethereum-transactions-are-so-expensive.md │ │ └── why-failed-transactions-consume-transaction-fees.md │ ├── management │ │ ├── how-to-activate-cryptocurrency-for-the-wallet.md │ │ ├── how-to-backup-wallet.md │ │ ├── how-to-buy-sell-cryptocurrency-for-fiat-in-unstoppable.md │ │ ├── how-to-create-wallet.md │ │ ├── how-to-delete-the-wallet.md │ │ ├── how-to-manage-multiple-wallets.md │ │ ├── how-to-restore-wallet.md │ │ ├── how-to-send-receive-cryptocurrency-from-to-wallet.md │ │ ├── migration_recommended.md │ │ ├── migration_required.md │ │ └── what-are-private-keys-mnemonic-phrase-wallet-seed.md │ ├── privacy │ │ ├── are-my-bitcoin-transactions-and-balances-private.md │ │ ├── are-my-ethereum-transactions-and-balances-private.md │ │ ├── are-users-anonymous-when-transacting-on-unstoppable.md │ │ ├── does-unstoppable-collect-or-share-any-user-data.md │ │ ├── how-to-buy-cryptocurrency-anonymously.md │ │ ├── how-using-tor-and-vpn-enhances-privacy.md │ │ └── is-it-safe-to-share-data-with-exchanges-and-other-service-providers.md │ ├── security │ │ ├── how-to-use-mnemonic-passphrase-to-manage-multiple-wallets.md │ │ ├── how-unstoppable-keeps-funds-secure.md │ │ ├── is-it-possible-to-regain-access-to-the-wallet-if-the-private-key-is-lost.md │ │ ├── is-unstoppable-less-secure-than-hardware-wallets.md │ │ ├── what-is-mnemonic-passphrase.md │ │ ├── what-is-mnemonic-phrase.md │ │ ├── what-steps-to-take-if-lost-my-phone.md │ │ └── why-to-set-an-unlock-code-for-the-wallet-app.md │ └── transactions │ │ ├── can-a-user-send-transaction-to-self.md │ │ ├── does-unstoppable-charge-fees-for-sending-transactions.md │ │ ├── how-unstoppable-calculates-transaction-fees.md │ │ ├── is-it-safe-to-share-payment-address-with-others.md │ │ ├── what-are-transactions-fee.md │ │ ├── what-happens-if-transaction-sent-to-the-wrong-address.md │ │ ├── why-are-transaction-fees-for-some-cryptocurrencies-are-so-high.md │ │ └── why-transaction-value-shown-incorrectly-in-recent-transaction.md │ ├── es │ ├── about │ │ ├── are-there-any-risks-when-using-unstoppable-wallet.md │ │ ├── does-it-cost-anything-to-use-unstoppable-wallet.md │ │ ├── how-to-contact-unstoppable-team.md │ │ ├── how-to-update-unstoppable-wallet.md │ │ ├── how-unstoppable-is-different-from-crypto-exchange-wallets.md │ │ ├── how-unstoppable-is-different-from-other-non-custodial-wallets.md │ │ ├── how-unstoppable-makes-money.md │ │ ├── how-unstoppable-wallet-works.md │ │ ├── what-can-be-done-with-unstoppable-wallet.md │ │ ├── what-happens-if-unstoppable-app-goes-down.md │ │ ├── what-is-unstoppable-wallet.md │ │ ├── what-should-someone-do-before-using-unstoppable.md │ │ ├── where-to-download-unstoppable-wallet-from.md │ │ ├── who-is-building-unstoppable-wallet.md │ │ └── why-choose-unstoppable-wallet.md │ ├── balance │ │ ├── how-to-change-base-currency-for-the-wallet.md │ │ ├── how-to-hide-show-wallet-balance.md │ │ ├── what-a-triangle-alert-icon-on-a-coin-means.md │ │ ├── what-syncing-status-on-a-coin-means.md │ │ ├── what-the-lock-sign-next-to-coin-balance-means.md │ │ ├── why-balance-appears-dimmed.md │ │ ├── why-receive-button-for-the-coin-appears-disabled.md │ │ ├── why-send-button-for-the-coin-appears-disabled.md │ │ ├── why-the-exchange-rate-dor-the-token-not-shown.md │ │ ├── why-there-are-random-token-balances-appearing-in-my-wallet.md │ │ └── why-wallet-balance-is-showing-incorrect-amount.md │ ├── binance │ │ ├── what-are-bep2-tokens.md │ │ ├── what-are-bep20-tokens.md │ │ └── what-is-binance-smart-chain.md │ ├── bitcoin │ │ ├── how-long-does-it-take-for-a-bitcoin-transaction-to-complete.md │ │ ├── how-to-cancel-a-bitcoin-transaction.md │ │ ├── how-to-monitor-status-of-incoming-outgoing-bitcoin-transaction.md │ │ ├── how-to-resend-a-failed-bitcoin-transaction.md │ │ ├── how-to-send-bitcoin-transaction.md │ │ ├── how-to-send-bitcoin-transactions-that-can-not-be-spent-until-certain-date.md │ │ ├── how-unstoppable-recommends-transaction-fee-for-bitcoin.md │ │ ├── is-is-safe-to-share-bitcoin-payment-address-with-others.md │ │ ├── what-do-bip44-bip49-bip84-mean-in-bitcoin.md │ │ ├── when-a-bitcoin-transaction-considered-final-and-irreversible.md │ │ ├── why-bitcoin-balance-did-not-increase-after-receiving-payment.md │ │ ├── why-bitcoin-payment-adderess-keeps-changing.md │ │ ├── why-bitcoin-transaction-stays-pending.md │ │ └── why-can-not-send-bitcoins-that-were-just-received.md │ ├── dexes-swaps │ │ ├── are-there-any-limitations-to-swap-amounts.md │ │ ├── are-there-any-risks-when-swapping-cryptocurrency.md │ │ ├── how-to-swap-cryptocurrency-in-unstoppable.md │ │ ├── what-are-cryptocurrency-swaps.md │ │ ├── which-dexes-supported-in-unstoppable.md │ │ ├── why-a-separate-approve-transaction-needed-before-swap.md │ │ ├── why-can-not-i-swap-bitcoin-and-other-coins.md │ │ ├── why-swap-fees-on-ethereum-are-so-high.md │ │ ├── why-unstoppable-supports-only-dexes.md │ │ └── why-was-i-changed-transaction-fee-for-a-failed-swap.md │ ├── ethereum │ │ ├── how-ethereum-transactions-are-different-from-bitcoin.md │ │ ├── how-long-does-it-take-for-ethereum-transaction-to-complete.md │ │ ├── how-to-cancel-replace-an-ethereum-transaction.md │ │ ├── how-to-monitor-status-of-an-ethereum-transaction.md │ │ ├── how-to-send-ethereum-transaction.md │ │ ├── how-unstoppable-recommends-transaction-fee-for-ethereum.md │ │ ├── is-it-safe-to-share-ethereum-receive-address-with-other.md │ │ ├── what-are-erc20-tokens.md │ │ ├── what-are-gas-gasprice-gaslimit.md │ │ ├── what-is-an-ethereum-smart-contract.md │ │ ├── when-an-ethereum-transaction-considered-final-irreversible.md │ │ ├── when-ethereum-transaction-can-fail.md │ │ ├── why-eth-needed-to-send-erc20-token.md │ │ ├── why-ethereum-and-erc20-token-address-stays-always-same.md │ │ ├── why-ethereum-transaction-stays-pending.md │ │ ├── why-ethereum-transactions-are-so-expensive.md │ │ └── why-failed-transactions-consume-transaction-fees.md │ ├── management │ │ ├── how-to-activate-cryptocurrency-for-the-wallet.md │ │ ├── how-to-backup-wallet.md │ │ ├── how-to-buy-sell-cryptocurrency-for-fiat-in-unstoppable.md │ │ ├── how-to-create-wallet.md │ │ ├── how-to-delete-the-wallet.md │ │ ├── how-to-manage-multiple-wallets.md │ │ ├── how-to-restore-wallet.md │ │ ├── how-to-send-receive-cryptocurrency-from-to-wallet.md │ │ ├── migration_recommended.md │ │ ├── migration_required.md │ │ └── what-are-private-keys-mnemonic-phrase-wallet-seed.md │ ├── privacy │ │ ├── are-my-bitcoin-transactions-and-balances-private.md │ │ ├── are-my-ethereum-transactions-and-balances-private.md │ │ ├── are-users-anonymous-when-transacting-on-unstoppable.md │ │ ├── does-unstoppable-collect-or-share-any-user-data.md │ │ ├── how-to-buy-cryptocurrency-anonymously.md │ │ ├── how-using-tor-and-vpn-enhances-privacy.md │ │ └── is-it-safe-to-share-data-with-exchanges-and-other-service-providers.md │ ├── security │ │ ├── how-to-use-mnemonic-passphrase-to-manage-multiple-wallets.md │ │ ├── how-unstoppable-keeps-funds-secure.md │ │ ├── is-it-possible-to-regain-access-to-the-wallet-if-the-private-key-is-lost.md │ │ ├── is-unstoppable-less-secure-than-hardware-wallets.md │ │ ├── what-is-mnemonic-passphrase.md │ │ ├── what-is-mnemonic-phrase.md │ │ ├── what-steps-to-take-if-lost-my-phone.md │ │ └── why-to-set-an-unlock-code-for-the-wallet-app.md │ └── transactions │ │ ├── can-a-user-send-transaction-to-self.md │ │ ├── does-unstoppable-charge-fees-for-sending-transactions.md │ │ ├── how-unstoppable-calculates-transaction-fees.md │ │ ├── is-it-safe-to-share-payment-address-with-others.md │ │ ├── what-are-transactions-fee.md │ │ ├── what-happens-if-transaction-sent-to-the-wrong-address.md │ │ ├── why-are-transaction-fees-for-some-cryptocurrencies-are-so-high.md │ │ └── why-transaction-value-shown-incorrectly-in-recent-transaction.md │ ├── fa │ ├── about │ │ ├── are-there-any-risks-when-using-unstoppable-wallet.md │ │ ├── does-it-cost-anything-to-use-unstoppable-wallet.md │ │ ├── how-to-contact-unstoppable-team.md │ │ ├── how-to-update-unstoppable-wallet.md │ │ ├── how-unstoppable-is-different-from-crypto-exchange-wallets.md │ │ ├── how-unstoppable-is-different-from-other-non-custodial-wallets.md │ │ ├── how-unstoppable-makes-money.md │ │ ├── how-unstoppable-wallet-works.md │ │ ├── what-can-be-done-with-unstoppable-wallet.md │ │ ├── what-happens-if-unstoppable-app-goes-down.md │ │ ├── what-is-unstoppable-wallet.md │ │ ├── what-should-someone-do-before-using-unstoppable.md │ │ ├── where-to-download-unstoppable-wallet-from.md │ │ ├── who-is-building-unstoppable-wallet.md │ │ └── why-choose-unstoppable-wallet.md │ ├── balance │ │ ├── how-to-change-base-currency-for-the-wallet.md │ │ ├── how-to-hide-show-wallet-balance.md │ │ ├── what-a-triangle-alert-icon-on-a-coin-means.md │ │ ├── what-syncing-status-on-a-coin-means.md │ │ ├── what-the-lock-sign-next-to-coin-balance-means.md │ │ ├── why-balance-appears-dimmed.md │ │ ├── why-receive-button-for-the-coin-appears-disabled.md │ │ ├── why-send-button-for-the-coin-appears-disabled.md │ │ ├── why-the-exchange-rate-dor-the-token-not-shown.md │ │ ├── why-there-are-random-token-balances-appearing-in-my-wallet.md │ │ └── why-wallet-balance-is-showing-incorrect-amount.md │ ├── binance │ │ ├── what-are-bep2-tokens.md │ │ ├── what-are-bep20-tokens.md │ │ └── what-is-binance-smart-chain.md │ ├── bitcoin │ │ ├── how-long-does-it-take-for-a-bitcoin-transaction-to-complete.md │ │ ├── how-to-cancel-a-bitcoin-transaction.md │ │ ├── how-to-monitor-status-of-incoming-outgoing-bitcoin-transaction.md │ │ ├── how-to-resend-a-failed-bitcoin-transaction.md │ │ ├── how-to-send-bitcoin-transaction.md │ │ ├── how-to-send-bitcoin-transactions-that-can-not-be-spent-until-certain-date.md │ │ ├── how-unstoppable-recommends-transaction-fee-for-bitcoin.md │ │ ├── is-is-safe-to-share-bitcoin-payment-address-with-others.md │ │ ├── what-do-bip44-bip49-bip84-mean-in-bitcoin.md │ │ ├── when-a-bitcoin-transaction-considered-final-and-irreversible.md │ │ ├── why-bitcoin-balance-did-not-increase-after-receiving-payment.md │ │ ├── why-bitcoin-payment-adderess-keeps-changing.md │ │ ├── why-bitcoin-transaction-stays-pending.md │ │ └── why-can-not-send-bitcoins-that-were-just-received.md │ ├── dexes-swaps │ │ ├── are-there-any-limitations-to-swap-amounts.md │ │ ├── are-there-any-risks-when-swapping-cryptocurrency.md │ │ ├── how-to-swap-cryptocurrency-in-unstoppable.md │ │ ├── what-are-cryptocurrency-swaps.md │ │ ├── which-dexes-supported-in-unstoppable.md │ │ ├── why-a-separate-approve-transaction-needed-before-swap.md │ │ ├── why-can-not-i-swap-bitcoin-and-other-coins.md │ │ ├── why-swap-fees-on-ethereum-are-so-high.md │ │ ├── why-unstoppable-supports-only-dexes.md │ │ └── why-was-i-changed-transaction-fee-for-a-failed-swap.md │ ├── ethereum │ │ ├── how-ethereum-transactions-are-different-from-bitcoin.md │ │ ├── how-long-does-it-take-for-ethereum-transaction-to-complete.md │ │ ├── how-to-cancel-replace-an-ethereum-transaction.md │ │ ├── how-to-monitor-status-of-an-ethereum-transaction.md │ │ ├── how-to-send-ethereum-transaction.md │ │ ├── how-unstoppable-recommends-transaction-fee-for-ethereum.md │ │ ├── is-it-safe-to-share-ethereum-receive-address-with-other.md │ │ ├── what-are-erc20-tokens.md │ │ ├── what-are-gas-gasprice-gaslimit.md │ │ ├── what-is-an-ethereum-smart-contract.md │ │ ├── when-an-ethereum-transaction-considered-final-irreversible.md │ │ ├── when-ethereum-transaction-can-fail.md │ │ ├── why-eth-needed-to-send-erc20-token.md │ │ ├── why-ethereum-and-erc20-token-address-stays-always-same.md │ │ ├── why-ethereum-transaction-stays-pending.md │ │ ├── why-ethereum-transactions-are-so-expensive.md │ │ └── why-failed-transactions-consume-transaction-fees.md │ ├── management │ │ ├── how-to-activate-cryptocurrency-for-the-wallet.md │ │ ├── how-to-backup-wallet.md │ │ ├── how-to-buy-sell-cryptocurrency-for-fiat-in-unstoppable.md │ │ ├── how-to-create-wallet.md │ │ ├── how-to-delete-the-wallet.md │ │ ├── how-to-manage-multiple-wallets.md │ │ ├── how-to-restore-wallet.md │ │ ├── how-to-send-receive-cryptocurrency-from-to-wallet.md │ │ ├── migration_recommended.md │ │ ├── migration_required.md │ │ └── what-are-private-keys-mnemonic-phrase-wallet-seed.md │ ├── privacy │ │ ├── are-my-bitcoin-transactions-and-balances-private.md │ │ ├── are-my-ethereum-transactions-and-balances-private.md │ │ ├── are-users-anonymous-when-transacting-on-unstoppable.md │ │ ├── does-unstoppable-collect-or-share-any-user-data.md │ │ ├── how-to-buy-cryptocurrency-anonymously.md │ │ ├── how-using-tor-and-vpn-enhances-privacy.md │ │ └── is-it-safe-to-share-data-with-exchanges-and-other-service-providers.md │ ├── security │ │ ├── how-to-use-mnemonic-passphrase-to-manage-multiple-wallets.md │ │ ├── how-unstoppable-keeps-funds-secure.md │ │ ├── is-it-possible-to-regain-access-to-the-wallet-if-the-private-key-is-lost.md │ │ ├── is-unstoppable-less-secure-than-hardware-wallets.md │ │ ├── what-is-mnemonic-passphrase.md │ │ ├── what-is-mnemonic-phrase.md │ │ ├── what-steps-to-take-if-lost-my-phone.md │ │ └── why-to-set-an-unlock-code-for-the-wallet-app.md │ └── transactions │ │ ├── can-a-user-send-transaction-to-self.md │ │ ├── does-unstoppable-charge-fees-for-sending-transactions.md │ │ ├── how-unstoppable-calculates-transaction-fees.md │ │ ├── is-it-safe-to-share-payment-address-with-others.md │ │ ├── what-are-transactions-fee.md │ │ ├── what-happens-if-transaction-sent-to-the-wrong-address.md │ │ ├── why-are-transaction-fees-for-some-cryptocurrencies-are-so-high.md │ │ └── why-transaction-value-shown-incorrectly-in-recent-transaction.md │ ├── fr │ ├── about │ │ ├── are-there-any-risks-when-using-unstoppable-wallet.md │ │ ├── does-it-cost-anything-to-use-unstoppable-wallet.md │ │ ├── how-to-contact-unstoppable-team.md │ │ ├── how-to-update-unstoppable-wallet.md │ │ ├── how-unstoppable-is-different-from-crypto-exchange-wallets.md │ │ ├── how-unstoppable-is-different-from-other-non-custodial-wallets.md │ │ ├── how-unstoppable-makes-money.md │ │ ├── how-unstoppable-wallet-works.md │ │ ├── what-can-be-done-with-unstoppable-wallet.md │ │ ├── what-happens-if-unstoppable-app-goes-down.md │ │ ├── what-is-unstoppable-wallet.md │ │ ├── what-should-someone-do-before-using-unstoppable.md │ │ ├── where-to-download-unstoppable-wallet-from.md │ │ ├── who-is-building-unstoppable-wallet.md │ │ └── why-choose-unstoppable-wallet.md │ ├── balance │ │ ├── how-to-change-base-currency-for-the-wallet.md │ │ ├── how-to-hide-show-wallet-balance.md │ │ ├── what-a-triangle-alert-icon-on-a-coin-means.md │ │ ├── what-syncing-status-on-a-coin-means.md │ │ ├── what-the-lock-sign-next-to-coin-balance-means.md │ │ ├── why-balance-appears-dimmed.md │ │ ├── why-receive-button-for-the-coin-appears-disabled.md │ │ ├── why-send-button-for-the-coin-appears-disabled.md │ │ ├── why-the-exchange-rate-dor-the-token-not-shown.md │ │ ├── why-there-are-random-token-balances-appearing-in-my-wallet.md │ │ └── why-wallet-balance-is-showing-incorrect-amount.md │ ├── binance │ │ ├── what-are-bep2-tokens.md │ │ ├── what-are-bep20-tokens.md │ │ └── what-is-binance-smart-chain.md │ ├── bitcoin │ │ ├── how-long-does-it-take-for-a-bitcoin-transaction-to-complete.md │ │ ├── how-to-cancel-a-bitcoin-transaction.md │ │ ├── how-to-monitor-status-of-incoming-outgoing-bitcoin-transaction.md │ │ ├── how-to-resend-a-failed-bitcoin-transaction.md │ │ ├── how-to-send-bitcoin-transaction.md │ │ ├── how-to-send-bitcoin-transactions-that-can-not-be-spent-until-certain-date.md │ │ ├── how-unstoppable-recommends-transaction-fee-for-bitcoin.md │ │ ├── is-is-safe-to-share-bitcoin-payment-address-with-others.md │ │ ├── what-do-bip44-bip49-bip84-mean-in-bitcoin.md │ │ ├── when-a-bitcoin-transaction-considered-final-and-irreversible.md │ │ ├── why-bitcoin-balance-did-not-increase-after-receiving-payment.md │ │ ├── why-bitcoin-payment-adderess-keeps-changing.md │ │ ├── why-bitcoin-transaction-stays-pending.md │ │ └── why-can-not-send-bitcoins-that-were-just-received.md │ ├── dexes-swaps │ │ ├── are-there-any-limitations-to-swap-amounts.md │ │ ├── are-there-any-risks-when-swapping-cryptocurrency.md │ │ ├── how-to-swap-cryptocurrency-in-unstoppable.md │ │ ├── what-are-cryptocurrency-swaps.md │ │ ├── which-dexes-supported-in-unstoppable.md │ │ ├── why-a-separate-approve-transaction-needed-before-swap.md │ │ ├── why-can-not-i-swap-bitcoin-and-other-coins.md │ │ ├── why-swap-fees-on-ethereum-are-so-high.md │ │ ├── why-unstoppable-supports-only-dexes.md │ │ └── why-was-i-changed-transaction-fee-for-a-failed-swap.md │ ├── ethereum │ │ ├── how-ethereum-transactions-are-different-from-bitcoin.md │ │ ├── how-long-does-it-take-for-ethereum-transaction-to-complete.md │ │ ├── how-to-cancel-replace-an-ethereum-transaction.md │ │ ├── how-to-monitor-status-of-an-ethereum-transaction.md │ │ ├── how-to-send-ethereum-transaction.md │ │ ├── how-unstoppable-recommends-transaction-fee-for-ethereum.md │ │ ├── is-it-safe-to-share-ethereum-receive-address-with-other.md │ │ ├── what-are-erc20-tokens.md │ │ ├── what-are-gas-gasprice-gaslimit.md │ │ ├── what-is-an-ethereum-smart-contract.md │ │ ├── when-an-ethereum-transaction-considered-final-irreversible.md │ │ ├── when-ethereum-transaction-can-fail.md │ │ ├── why-eth-needed-to-send-erc20-token.md │ │ ├── why-ethereum-and-erc20-token-address-stays-always-same.md │ │ ├── why-ethereum-transaction-stays-pending.md │ │ ├── why-ethereum-transactions-are-so-expensive.md │ │ └── why-failed-transactions-consume-transaction-fees.md │ ├── management │ │ ├── how-to-activate-cryptocurrency-for-the-wallet.md │ │ ├── how-to-backup-wallet.md │ │ ├── how-to-buy-sell-cryptocurrency-for-fiat-in-unstoppable.md │ │ ├── how-to-create-wallet.md │ │ ├── how-to-delete-the-wallet.md │ │ ├── how-to-manage-multiple-wallets.md │ │ ├── how-to-restore-wallet.md │ │ ├── how-to-send-receive-cryptocurrency-from-to-wallet.md │ │ ├── migration_recommended.md │ │ ├── migration_required.md │ │ └── what-are-private-keys-mnemonic-phrase-wallet-seed.md │ ├── privacy │ │ ├── are-my-bitcoin-transactions-and-balances-private.md │ │ ├── are-my-ethereum-transactions-and-balances-private.md │ │ ├── are-users-anonymous-when-transacting-on-unstoppable.md │ │ ├── does-unstoppable-collect-or-share-any-user-data.md │ │ ├── how-to-buy-cryptocurrency-anonymously.md │ │ ├── how-using-tor-and-vpn-enhances-privacy.md │ │ └── is-it-safe-to-share-data-with-exchanges-and-other-service-providers.md │ ├── security │ │ ├── how-to-use-mnemonic-passphrase-to-manage-multiple-wallets.md │ │ ├── how-unstoppable-keeps-funds-secure.md │ │ ├── is-it-possible-to-regain-access-to-the-wallet-if-the-private-key-is-lost.md │ │ ├── is-unstoppable-less-secure-than-hardware-wallets.md │ │ ├── what-is-mnemonic-passphrase.md │ │ ├── what-is-mnemonic-phrase.md │ │ ├── what-steps-to-take-if-lost-my-phone.md │ │ └── why-to-set-an-unlock-code-for-the-wallet-app.md │ └── transactions │ │ ├── can-a-user-send-transaction-to-self.md │ │ ├── does-unstoppable-charge-fees-for-sending-transactions.md │ │ ├── how-unstoppable-calculates-transaction-fees.md │ │ ├── is-it-safe-to-share-payment-address-with-others.md │ │ ├── what-are-transactions-fee.md │ │ ├── what-happens-if-transaction-sent-to-the-wrong-address.md │ │ ├── why-are-transaction-fees-for-some-cryptocurrencies-are-so-high.md │ │ └── why-transaction-value-shown-incorrectly-in-recent-transaction.md │ ├── ko │ ├── about │ │ ├── are-there-any-risks-when-using-unstoppable-wallet.md │ │ ├── does-it-cost-anything-to-use-unstoppable-wallet.md │ │ ├── how-to-contact-unstoppable-team.md │ │ ├── how-to-update-unstoppable-wallet.md │ │ ├── how-unstoppable-is-different-from-crypto-exchange-wallets.md │ │ ├── how-unstoppable-is-different-from-other-non-custodial-wallets.md │ │ ├── how-unstoppable-makes-money.md │ │ ├── how-unstoppable-wallet-works.md │ │ ├── what-can-be-done-with-unstoppable-wallet.md │ │ ├── what-happens-if-unstoppable-app-goes-down.md │ │ ├── what-is-unstoppable-wallet.md │ │ ├── what-should-someone-do-before-using-unstoppable.md │ │ ├── where-to-download-unstoppable-wallet-from.md │ │ ├── who-is-building-unstoppable-wallet.md │ │ └── why-choose-unstoppable-wallet.md │ ├── balance │ │ ├── how-to-change-base-currency-for-the-wallet.md │ │ ├── how-to-hide-show-wallet-balance.md │ │ ├── what-a-triangle-alert-icon-on-a-coin-means.md │ │ ├── what-syncing-status-on-a-coin-means.md │ │ ├── what-the-lock-sign-next-to-coin-balance-means.md │ │ ├── why-balance-appears-dimmed.md │ │ ├── why-receive-button-for-the-coin-appears-disabled.md │ │ ├── why-send-button-for-the-coin-appears-disabled.md │ │ ├── why-the-exchange-rate-dor-the-token-not-shown.md │ │ ├── why-there-are-random-token-balances-appearing-in-my-wallet.md │ │ └── why-wallet-balance-is-showing-incorrect-amount.md │ ├── binance │ │ ├── what-are-bep2-tokens.md │ │ ├── what-are-bep20-tokens.md │ │ └── what-is-binance-smart-chain.md │ ├── bitcoin │ │ ├── how-long-does-it-take-for-a-bitcoin-transaction-to-complete.md │ │ ├── how-to-cancel-a-bitcoin-transaction.md │ │ ├── how-to-monitor-status-of-incoming-outgoing-bitcoin-transaction.md │ │ ├── how-to-resend-a-failed-bitcoin-transaction.md │ │ ├── how-to-send-bitcoin-transaction.md │ │ ├── how-to-send-bitcoin-transactions-that-can-not-be-spent-until-certain-date.md │ │ ├── how-unstoppable-recommends-transaction-fee-for-bitcoin.md │ │ ├── is-is-safe-to-share-bitcoin-payment-address-with-others.md │ │ ├── what-do-bip44-bip49-bip84-mean-in-bitcoin.md │ │ ├── when-a-bitcoin-transaction-considered-final-and-irreversible.md │ │ ├── why-bitcoin-balance-did-not-increase-after-receiving-payment.md │ │ ├── why-bitcoin-payment-adderess-keeps-changing.md │ │ ├── why-bitcoin-transaction-stays-pending.md │ │ └── why-can-not-send-bitcoins-that-were-just-received.md │ ├── dexes-swaps │ │ ├── are-there-any-limitations-to-swap-amounts.md │ │ ├── are-there-any-risks-when-swapping-cryptocurrency.md │ │ ├── how-to-swap-cryptocurrency-in-unstoppable.md │ │ ├── what-are-cryptocurrency-swaps.md │ │ ├── which-dexes-supported-in-unstoppable.md │ │ ├── why-a-separate-approve-transaction-needed-before-swap.md │ │ ├── why-can-not-i-swap-bitcoin-and-other-coins.md │ │ ├── why-swap-fees-on-ethereum-are-so-high.md │ │ ├── why-unstoppable-supports-only-dexes.md │ │ └── why-was-i-changed-transaction-fee-for-a-failed-swap.md │ ├── ethereum │ │ ├── how-ethereum-transactions-are-different-from-bitcoin.md │ │ ├── how-long-does-it-take-for-ethereum-transaction-to-complete.md │ │ ├── how-to-cancel-replace-an-ethereum-transaction.md │ │ ├── how-to-monitor-status-of-an-ethereum-transaction.md │ │ ├── how-to-send-ethereum-transaction.md │ │ ├── how-unstoppable-recommends-transaction-fee-for-ethereum.md │ │ ├── is-it-safe-to-share-ethereum-receive-address-with-other.md │ │ ├── what-are-erc20-tokens.md │ │ ├── what-are-gas-gasprice-gaslimit.md │ │ ├── what-is-an-ethereum-smart-contract.md │ │ ├── when-an-ethereum-transaction-considered-final-irreversible.md │ │ ├── when-ethereum-transaction-can-fail.md │ │ ├── why-eth-needed-to-send-erc20-token.md │ │ ├── why-ethereum-and-erc20-token-address-stays-always-same.md │ │ ├── why-ethereum-transaction-stays-pending.md │ │ ├── why-ethereum-transactions-are-so-expensive.md │ │ └── why-failed-transactions-consume-transaction-fees.md │ ├── management │ │ ├── how-to-activate-cryptocurrency-for-the-wallet.md │ │ ├── how-to-backup-wallet.md │ │ ├── how-to-buy-sell-cryptocurrency-for-fiat-in-unstoppable.md │ │ ├── how-to-create-wallet.md │ │ ├── how-to-delete-the-wallet.md │ │ ├── how-to-manage-multiple-wallets.md │ │ ├── how-to-restore-wallet.md │ │ ├── how-to-send-receive-cryptocurrency-from-to-wallet.md │ │ ├── migration_recommended.md │ │ ├── migration_required.md │ │ └── what-are-private-keys-mnemonic-phrase-wallet-seed.md │ ├── privacy │ │ ├── are-my-bitcoin-transactions-and-balances-private.md │ │ ├── are-my-ethereum-transactions-and-balances-private.md │ │ ├── are-users-anonymous-when-transacting-on-unstoppable.md │ │ ├── does-unstoppable-collect-or-share-any-user-data.md │ │ ├── how-to-buy-cryptocurrency-anonymously.md │ │ ├── how-using-tor-and-vpn-enhances-privacy.md │ │ └── is-it-safe-to-share-data-with-exchanges-and-other-service-providers.md │ ├── security │ │ ├── how-to-use-mnemonic-passphrase-to-manage-multiple-wallets.md │ │ ├── how-unstoppable-keeps-funds-secure.md │ │ ├── is-it-possible-to-regain-access-to-the-wallet-if-the-private-key-is-lost.md │ │ ├── is-unstoppable-less-secure-than-hardware-wallets.md │ │ ├── what-is-mnemonic-passphrase.md │ │ ├── what-is-mnemonic-phrase.md │ │ ├── what-steps-to-take-if-lost-my-phone.md │ │ └── why-to-set-an-unlock-code-for-the-wallet-app.md │ └── transactions │ │ ├── can-a-user-send-transaction-to-self.md │ │ ├── does-unstoppable-charge-fees-for-sending-transactions.md │ │ ├── how-unstoppable-calculates-transaction-fees.md │ │ ├── is-it-safe-to-share-payment-address-with-others.md │ │ ├── what-are-transactions-fee.md │ │ ├── what-happens-if-transaction-sent-to-the-wrong-address.md │ │ ├── why-are-transaction-fees-for-some-cryptocurrencies-are-so-high.md │ │ └── why-transaction-value-shown-incorrectly-in-recent-transaction.md │ ├── pt-rBR │ ├── migration_recommended.md │ └── migration_required.md │ ├── ru │ ├── about │ │ ├── are-there-any-risks-when-using-unstoppable-wallet.md │ │ ├── does-it-cost-anything-to-use-unstoppable-wallet.md │ │ ├── how-to-contact-unstoppable-team.md │ │ ├── how-to-update-unstoppable-wallet.md │ │ ├── how-unstoppable-is-different-from-crypto-exchange-wallets.md │ │ ├── how-unstoppable-is-different-from-other-non-custodial-wallets.md │ │ ├── how-unstoppable-makes-money.md │ │ ├── how-unstoppable-wallet-works.md │ │ ├── what-can-be-done-with-unstoppable-wallet.md │ │ ├── what-happens-if-unstoppable-app-goes-down.md │ │ ├── what-is-unstoppable-wallet.md │ │ ├── what-should-someone-do-before-using-unstoppable.md │ │ ├── where-to-download-unstoppable-wallet-from.md │ │ ├── who-is-building-unstoppable-wallet.md │ │ └── why-choose-unstoppable-wallet.md │ ├── balance │ │ ├── how-to-change-base-currency-for-the-wallet.md │ │ ├── how-to-hide-show-wallet-balance.md │ │ ├── what-a-triangle-alert-icon-on-a-coin-means.md │ │ ├── what-syncing-status-on-a-coin-means.md │ │ ├── what-the-lock-sign-next-to-coin-balance-means.md │ │ ├── why-balance-appears-dimmed.md │ │ ├── why-receive-button-for-the-coin-appears-disabled.md │ │ ├── why-send-button-for-the-coin-appears-disabled.md │ │ ├── why-the-exchange-rate-dor-the-token-not-shown.md │ │ ├── why-there-are-random-token-balances-appearing-in-my-wallet.md │ │ └── why-wallet-balance-is-showing-incorrect-amount.md │ ├── binance │ │ ├── what-are-bep2-tokens.md │ │ ├── what-are-bep20-tokens.md │ │ └── what-is-binance-smart-chain.md │ ├── bitcoin │ │ ├── how-long-does-it-take-for-a-bitcoin-transaction-to-complete.md │ │ ├── how-to-cancel-a-bitcoin-transaction.md │ │ ├── how-to-monitor-status-of-incoming-outgoing-bitcoin-transaction.md │ │ ├── how-to-resend-a-failed-bitcoin-transaction.md │ │ ├── how-to-send-bitcoin-transaction.md │ │ ├── how-to-send-bitcoin-transactions-that-can-not-be-spent-until-certain-date.md │ │ ├── how-unstoppable-recommends-transaction-fee-for-bitcoin.md │ │ ├── is-is-safe-to-share-bitcoin-payment-address-with-others.md │ │ ├── what-do-bip44-bip49-bip84-mean-in-bitcoin.md │ │ ├── when-a-bitcoin-transaction-considered-final-and-irreversible.md │ │ ├── why-bitcoin-balance-did-not-increase-after-receiving-payment.md │ │ ├── why-bitcoin-payment-adderess-keeps-changing.md │ │ ├── why-bitcoin-transaction-stays-pending.md │ │ └── why-can-not-send-bitcoins-that-were-just-received.md │ ├── dexes-swaps │ │ ├── are-there-any-limitations-to-swap-amounts.md │ │ ├── are-there-any-risks-when-swapping-cryptocurrency.md │ │ ├── how-to-swap-cryptocurrency-in-unstoppable.md │ │ ├── what-are-cryptocurrency-swaps.md │ │ ├── which-dexes-supported-in-unstoppable.md │ │ ├── why-a-separate-approve-transaction-needed-before-swap.md │ │ ├── why-can-not-i-swap-bitcoin-and-other-coins.md │ │ ├── why-swap-fees-on-ethereum-are-so-high.md │ │ ├── why-unstoppable-supports-only-dexes.md │ │ └── why-was-i-changed-transaction-fee-for-a-failed-swap.md │ ├── ethereum │ │ ├── how-ethereum-transactions-are-different-from-bitcoin.md │ │ ├── how-long-does-it-take-for-ethereum-transaction-to-complete.md │ │ ├── how-to-cancel-replace-an-ethereum-transaction.md │ │ ├── how-to-monitor-status-of-an-ethereum-transaction.md │ │ ├── how-to-send-ethereum-transaction.md │ │ ├── how-unstoppable-recommends-transaction-fee-for-ethereum.md │ │ ├── is-it-safe-to-share-ethereum-receive-address-with-other.md │ │ ├── what-are-erc20-tokens.md │ │ ├── what-are-gas-gasprice-gaslimit.md │ │ ├── what-is-an-ethereum-smart-contract.md │ │ ├── when-an-ethereum-transaction-considered-final-irreversible.md │ │ ├── when-ethereum-transaction-can-fail.md │ │ ├── why-eth-needed-to-send-erc20-token.md │ │ ├── why-ethereum-and-erc20-token-address-stays-always-same.md │ │ ├── why-ethereum-transaction-stays-pending.md │ │ ├── why-ethereum-transactions-are-so-expensive.md │ │ └── why-failed-transactions-consume-transaction-fees.md │ ├── management │ │ ├── how-to-activate-cryptocurrency-for-the-wallet.md │ │ ├── how-to-backup-wallet.md │ │ ├── how-to-buy-sell-cryptocurrency-for-fiat-in-unstoppable.md │ │ ├── how-to-create-wallet.md │ │ ├── how-to-delete-the-wallet.md │ │ ├── how-to-manage-multiple-wallets.md │ │ ├── how-to-restore-wallet.md │ │ ├── how-to-send-receive-cryptocurrency-from-to-wallet.md │ │ ├── migration_recommended.md │ │ ├── migration_required.md │ │ └── what-are-private-keys-mnemonic-phrase-wallet-seed.md │ ├── privacy │ │ ├── are-my-bitcoin-transactions-and-balances-private.md │ │ ├── are-my-ethereum-transactions-and-balances-private.md │ │ ├── are-users-anonymous-when-transacting-on-unstoppable.md │ │ ├── does-unstoppable-collect-or-share-any-user-data.md │ │ ├── how-to-buy-cryptocurrency-anonymously.md │ │ ├── how-using-tor-and-vpn-enhances-privacy.md │ │ └── is-it-safe-to-share-data-with-exchanges-and-other-service-providers.md │ ├── security │ │ ├── how-to-use-mnemonic-passphrase-to-manage-multiple-wallets.md │ │ ├── how-unstoppable-keeps-funds-secure.md │ │ ├── is-it-possible-to-regain-access-to-the-wallet-if-the-private-key-is-lost.md │ │ ├── is-unstoppable-less-secure-than-hardware-wallets.md │ │ ├── what-is-mnemonic-passphrase.md │ │ ├── what-is-mnemonic-phrase.md │ │ ├── what-steps-to-take-if-lost-my-phone.md │ │ └── why-to-set-an-unlock-code-for-the-wallet-app.md │ └── transactions │ │ ├── can-a-user-send-transaction-to-self.md │ │ ├── does-unstoppable-charge-fees-for-sending-transactions.md │ │ ├── how-unstoppable-calculates-transaction-fees.md │ │ ├── is-it-safe-to-share-payment-address-with-others.md │ │ ├── what-are-transactions-fee.md │ │ ├── what-happens-if-transaction-sent-to-the-wrong-address.md │ │ ├── why-are-transaction-fees-for-some-cryptocurrencies-are-so-high.md │ │ └── why-transaction-value-shown-incorrectly-in-recent-transaction.md │ ├── tr │ ├── about │ │ ├── are-there-any-risks-when-using-unstoppable-wallet.md │ │ ├── does-it-cost-anything-to-use-unstoppable-wallet.md │ │ ├── how-to-contact-unstoppable-team.md │ │ ├── how-to-update-unstoppable-wallet.md │ │ ├── how-unstoppable-is-different-from-crypto-exchange-wallets.md │ │ ├── how-unstoppable-is-different-from-other-non-custodial-wallets.md │ │ ├── how-unstoppable-makes-money.md │ │ ├── how-unstoppable-wallet-works.md │ │ ├── what-can-be-done-with-unstoppable-wallet.md │ │ ├── what-happens-if-unstoppable-app-goes-down.md │ │ ├── what-is-unstoppable-wallet.md │ │ ├── what-should-someone-do-before-using-unstoppable.md │ │ ├── where-to-download-unstoppable-wallet-from.md │ │ ├── who-is-building-unstoppable-wallet.md │ │ └── why-choose-unstoppable-wallet.md │ ├── balance │ │ ├── how-to-change-base-currency-for-the-wallet.md │ │ ├── how-to-hide-show-wallet-balance.md │ │ ├── what-a-triangle-alert-icon-on-a-coin-means.md │ │ ├── what-syncing-status-on-a-coin-means.md │ │ ├── what-the-lock-sign-next-to-coin-balance-means.md │ │ ├── why-balance-appears-dimmed.md │ │ ├── why-receive-button-for-the-coin-appears-disabled.md │ │ ├── why-send-button-for-the-coin-appears-disabled.md │ │ ├── why-the-exchange-rate-dor-the-token-not-shown.md │ │ ├── why-there-are-random-token-balances-appearing-in-my-wallet.md │ │ └── why-wallet-balance-is-showing-incorrect-amount.md │ ├── binance │ │ ├── what-are-bep2-tokens.md │ │ ├── what-are-bep20-tokens.md │ │ └── what-is-binance-smart-chain.md │ ├── bitcoin │ │ ├── how-long-does-it-take-for-a-bitcoin-transaction-to-complete.md │ │ ├── how-to-cancel-a-bitcoin-transaction.md │ │ ├── how-to-monitor-status-of-incoming-outgoing-bitcoin-transaction.md │ │ ├── how-to-resend-a-failed-bitcoin-transaction.md │ │ ├── how-to-send-bitcoin-transaction.md │ │ ├── how-to-send-bitcoin-transactions-that-can-not-be-spent-until-certain-date.md │ │ ├── how-unstoppable-recommends-transaction-fee-for-bitcoin.md │ │ ├── is-is-safe-to-share-bitcoin-payment-address-with-others.md │ │ ├── what-do-bip44-bip49-bip84-mean-in-bitcoin.md │ │ ├── when-a-bitcoin-transaction-considered-final-and-irreversible.md │ │ ├── why-bitcoin-balance-did-not-increase-after-receiving-payment.md │ │ ├── why-bitcoin-payment-adderess-keeps-changing.md │ │ ├── why-bitcoin-transaction-stays-pending.md │ │ └── why-can-not-send-bitcoins-that-were-just-received.md │ ├── dexes-swaps │ │ ├── are-there-any-limitations-to-swap-amounts.md │ │ ├── are-there-any-risks-when-swapping-cryptocurrency.md │ │ ├── how-to-swap-cryptocurrency-in-unstoppable.md │ │ ├── what-are-cryptocurrency-swaps.md │ │ ├── which-dexes-supported-in-unstoppable.md │ │ ├── why-a-separate-approve-transaction-needed-before-swap.md │ │ ├── why-can-not-i-swap-bitcoin-and-other-coins.md │ │ ├── why-swap-fees-on-ethereum-are-so-high.md │ │ ├── why-unstoppable-supports-only-dexes.md │ │ └── why-was-i-changed-transaction-fee-for-a-failed-swap.md │ ├── ethereum │ │ ├── how-ethereum-transactions-are-different-from-bitcoin.md │ │ ├── how-long-does-it-take-for-ethereum-transaction-to-complete.md │ │ ├── how-to-cancel-replace-an-ethereum-transaction.md │ │ ├── how-to-monitor-status-of-an-ethereum-transaction.md │ │ ├── how-to-send-ethereum-transaction.md │ │ ├── how-unstoppable-recommends-transaction-fee-for-ethereum.md │ │ ├── is-it-safe-to-share-ethereum-receive-address-with-other.md │ │ ├── what-are-erc20-tokens.md │ │ ├── what-are-gas-gasprice-gaslimit.md │ │ ├── what-is-an-ethereum-smart-contract.md │ │ ├── when-an-ethereum-transaction-considered-final-irreversible.md │ │ ├── when-ethereum-transaction-can-fail.md │ │ ├── why-eth-needed-to-send-erc20-token.md │ │ ├── why-ethereum-and-erc20-token-address-stays-always-same.md │ │ ├── why-ethereum-transaction-stays-pending.md │ │ ├── why-ethereum-transactions-are-so-expensive.md │ │ └── why-failed-transactions-consume-transaction-fees.md │ ├── management │ │ ├── how-to-activate-cryptocurrency-for-the-wallet.md │ │ ├── how-to-backup-wallet.md │ │ ├── how-to-buy-sell-cryptocurrency-for-fiat-in-unstoppable.md │ │ ├── how-to-create-wallet.md │ │ ├── how-to-delete-the-wallet.md │ │ ├── how-to-manage-multiple-wallets.md │ │ ├── how-to-restore-wallet.md │ │ ├── how-to-send-receive-cryptocurrency-from-to-wallet.md │ │ ├── migration_recommended.md │ │ ├── migration_required.md │ │ └── what-are-private-keys-mnemonic-phrase-wallet-seed.md │ ├── privacy │ │ ├── are-my-bitcoin-transactions-and-balances-private.md │ │ ├── are-my-ethereum-transactions-and-balances-private.md │ │ ├── are-users-anonymous-when-transacting-on-unstoppable.md │ │ ├── does-unstoppable-collect-or-share-any-user-data.md │ │ ├── how-to-buy-cryptocurrency-anonymously.md │ │ ├── how-using-tor-and-vpn-enhances-privacy.md │ │ └── is-it-safe-to-share-data-with-exchanges-and-other-service-providers.md │ ├── security │ │ ├── how-to-use-mnemonic-passphrase-to-manage-multiple-wallets.md │ │ ├── how-unstoppable-keeps-funds-secure.md │ │ ├── is-it-possible-to-regain-access-to-the-wallet-if-the-private-key-is-lost.md │ │ ├── is-unstoppable-less-secure-than-hardware-wallets.md │ │ ├── what-is-mnemonic-passphrase.md │ │ ├── what-is-mnemonic-phrase.md │ │ ├── what-steps-to-take-if-lost-my-phone.md │ │ └── why-to-set-an-unlock-code-for-the-wallet-app.md │ └── transactions │ │ ├── can-a-user-send-transaction-to-self.md │ │ ├── does-unstoppable-charge-fees-for-sending-transactions.md │ │ ├── how-unstoppable-calculates-transaction-fees.md │ │ ├── is-it-safe-to-share-payment-address-with-others.md │ │ ├── what-are-transactions-fee.md │ │ ├── what-happens-if-transaction-sent-to-the-wrong-address.md │ │ ├── why-are-transaction-fees-for-some-cryptocurrencies-are-so-high.md │ │ └── why-transaction-value-shown-incorrectly-in-recent-transaction.md │ └── zh │ ├── about │ ├── are-there-any-risks-when-using-unstoppable-wallet.md │ ├── does-it-cost-anything-to-use-unstoppable-wallet.md │ ├── how-to-contact-unstoppable-team.md │ ├── how-to-update-unstoppable-wallet.md │ ├── how-unstoppable-is-different-from-crypto-exchange-wallets.md │ ├── how-unstoppable-is-different-from-other-non-custodial-wallets.md │ ├── how-unstoppable-makes-money.md │ ├── how-unstoppable-wallet-works.md │ ├── what-can-be-done-with-unstoppable-wallet.md │ ├── what-happens-if-unstoppable-app-goes-down.md │ ├── what-is-unstoppable-wallet.md │ ├── what-should-someone-do-before-using-unstoppable.md │ ├── where-to-download-unstoppable-wallet-from.md │ ├── who-is-building-unstoppable-wallet.md │ └── why-choose-unstoppable-wallet.md │ ├── balance │ ├── how-to-change-base-currency-for-the-wallet.md │ ├── how-to-hide-show-wallet-balance.md │ ├── what-a-triangle-alert-icon-on-a-coin-means.md │ ├── what-syncing-status-on-a-coin-means.md │ ├── what-the-lock-sign-next-to-coin-balance-means.md │ ├── why-balance-appears-dimmed.md │ ├── why-receive-button-for-the-coin-appears-disabled.md │ ├── why-send-button-for-the-coin-appears-disabled.md │ ├── why-the-exchange-rate-dor-the-token-not-shown.md │ ├── why-there-are-random-token-balances-appearing-in-my-wallet.md │ └── why-wallet-balance-is-showing-incorrect-amount.md │ ├── binance │ ├── what-are-bep2-tokens.md │ ├── what-are-bep20-tokens.md │ └── what-is-binance-smart-chain.md │ ├── bitcoin │ ├── how-long-does-it-take-for-a-bitcoin-transaction-to-complete.md │ ├── how-to-cancel-a-bitcoin-transaction.md │ ├── how-to-monitor-status-of-incoming-outgoing-bitcoin-transaction.md │ ├── how-to-resend-a-failed-bitcoin-transaction.md │ ├── how-to-send-bitcoin-transaction.md │ ├── how-to-send-bitcoin-transactions-that-can-not-be-spent-until-certain-date.md │ ├── how-unstoppable-recommends-transaction-fee-for-bitcoin.md │ ├── is-is-safe-to-share-bitcoin-payment-address-with-others.md │ ├── what-do-bip44-bip49-bip84-mean-in-bitcoin.md │ ├── when-a-bitcoin-transaction-considered-final-and-irreversible.md │ ├── why-bitcoin-balance-did-not-increase-after-receiving-payment.md │ ├── why-bitcoin-payment-adderess-keeps-changing.md │ ├── why-bitcoin-transaction-stays-pending.md │ └── why-can-not-send-bitcoins-that-were-just-received.md │ ├── dexes-swaps │ ├── are-there-any-limitations-to-swap-amounts.md │ ├── are-there-any-risks-when-swapping-cryptocurrency.md │ ├── how-to-swap-cryptocurrency-in-unstoppable.md │ ├── what-are-cryptocurrency-swaps.md │ ├── which-dexes-supported-in-unstoppable.md │ ├── why-a-separate-approve-transaction-needed-before-swap.md │ ├── why-can-not-i-swap-bitcoin-and-other-coins.md │ ├── why-swap-fees-on-ethereum-are-so-high.md │ ├── why-unstoppable-supports-only-dexes.md │ └── why-was-i-changed-transaction-fee-for-a-failed-swap.md │ ├── ethereum │ ├── how-ethereum-transactions-are-different-from-bitcoin.md │ ├── how-long-does-it-take-for-ethereum-transaction-to-complete.md │ ├── how-to-cancel-replace-an-ethereum-transaction.md │ ├── how-to-monitor-status-of-an-ethereum-transaction.md │ ├── how-to-send-ethereum-transaction.md │ ├── how-unstoppable-recommends-transaction-fee-for-ethereum.md │ ├── is-it-safe-to-share-ethereum-receive-address-with-other.md │ ├── what-are-erc20-tokens.md │ ├── what-are-gas-gasprice-gaslimit.md │ ├── what-is-an-ethereum-smart-contract.md │ ├── when-an-ethereum-transaction-considered-final-irreversible.md │ ├── when-ethereum-transaction-can-fail.md │ ├── why-eth-needed-to-send-erc20-token.md │ ├── why-ethereum-and-erc20-token-address-stays-always-same.md │ ├── why-ethereum-transaction-stays-pending.md │ ├── why-ethereum-transactions-are-so-expensive.md │ └── why-failed-transactions-consume-transaction-fees.md │ ├── management │ ├── how-to-activate-cryptocurrency-for-the-wallet.md │ ├── how-to-backup-wallet.md │ ├── how-to-buy-sell-cryptocurrency-for-fiat-in-unstoppable.md │ ├── how-to-create-wallet.md │ ├── how-to-delete-the-wallet.md │ ├── how-to-manage-multiple-wallets.md │ ├── how-to-restore-wallet.md │ ├── how-to-send-receive-cryptocurrency-from-to-wallet.md │ ├── migration_recommended.md │ ├── migration_required.md │ └── what-are-private-keys-mnemonic-phrase-wallet-seed.md │ ├── privacy │ ├── are-my-bitcoin-transactions-and-balances-private.md │ ├── are-my-ethereum-transactions-and-balances-private.md │ ├── are-users-anonymous-when-transacting-on-unstoppable.md │ ├── does-unstoppable-collect-or-share-any-user-data.md │ ├── how-to-buy-cryptocurrency-anonymously.md │ ├── how-using-tor-and-vpn-enhances-privacy.md │ └── is-it-safe-to-share-data-with-exchanges-and-other-service-providers.md │ ├── security │ ├── how-to-use-mnemonic-passphrase-to-manage-multiple-wallets.md │ ├── how-unstoppable-keeps-funds-secure.md │ ├── is-it-possible-to-regain-access-to-the-wallet-if-the-private-key-is-lost.md │ ├── is-unstoppable-less-secure-than-hardware-wallets.md │ ├── what-is-mnemonic-passphrase.md │ ├── what-is-mnemonic-phrase.md │ ├── what-steps-to-take-if-lost-my-phone.md │ └── why-to-set-an-unlock-code-for-the-wallet-app.md │ └── transactions │ ├── can-a-user-send-transaction-to-self.md │ ├── does-unstoppable-charge-fees-for-sending-transactions.md │ ├── how-unstoppable-calculates-transaction-fees.md │ ├── is-it-safe-to-share-payment-address-with-others.md │ ├── what-are-transactions-fee.md │ ├── what-happens-if-transaction-sent-to-the-wrong-address.md │ ├── why-are-transaction-fees-for-some-cryptocurrencies-are-so-high.md │ └── why-transaction-value-shown-incorrectly-in-recent-transaction.md └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/package.json -------------------------------------------------------------------------------- /public/header-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/header-logo.svg -------------------------------------------------------------------------------- /public/icons/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/android.png -------------------------------------------------------------------------------- /public/icons/app-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/app-store.png -------------------------------------------------------------------------------- /public/icons/arrow-next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/arrow-next.svg -------------------------------------------------------------------------------- /public/icons/arrow-prev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/arrow-prev.svg -------------------------------------------------------------------------------- /public/icons/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/arrow-right.png -------------------------------------------------------------------------------- /public/icons/chains/bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/chains/bitcoin.svg -------------------------------------------------------------------------------- /public/icons/chains/ethereum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/chains/ethereum.svg -------------------------------------------------------------------------------- /public/icons/chains/monero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/chains/monero.svg -------------------------------------------------------------------------------- /public/icons/chains/tron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/chains/tron.svg -------------------------------------------------------------------------------- /public/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/close.svg -------------------------------------------------------------------------------- /public/icons/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/download.png -------------------------------------------------------------------------------- /public/icons/f-droid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/f-droid.png -------------------------------------------------------------------------------- /public/icons/fromapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/fromapp.svg -------------------------------------------------------------------------------- /public/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/github.svg -------------------------------------------------------------------------------- /public/icons/google-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/google-play.png -------------------------------------------------------------------------------- /public/icons/icon-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/icon-down.svg -------------------------------------------------------------------------------- /public/icons/icon-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/icon-up.svg -------------------------------------------------------------------------------- /public/icons/qr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/qr.svg -------------------------------------------------------------------------------- /public/icons/reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/reddit.svg -------------------------------------------------------------------------------- /public/icons/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/telegram.svg -------------------------------------------------------------------------------- /public/icons/testflight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/testflight.png -------------------------------------------------------------------------------- /public/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/icons/twitter.svg -------------------------------------------------------------------------------- /public/images/analytics/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/analytics/1.png -------------------------------------------------------------------------------- /public/images/analytics/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/analytics/2.png -------------------------------------------------------------------------------- /public/images/banner/bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/banner/bitcoin.svg -------------------------------------------------------------------------------- /public/images/banner/certik.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/banner/certik.svg -------------------------------------------------------------------------------- /public/images/banner/immunfi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/banner/immunfi.svg -------------------------------------------------------------------------------- /public/images/banner/wallet-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/banner/wallet-2.png -------------------------------------------------------------------------------- /public/images/banner/wallet-scrutiny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/banner/wallet-scrutiny.svg -------------------------------------------------------------------------------- /public/images/banner/wallet-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/banner/wallet-shadow.png -------------------------------------------------------------------------------- /public/images/banner/wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/banner/wallet.png -------------------------------------------------------------------------------- /public/images/dexes/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/dexes/1.png -------------------------------------------------------------------------------- /public/images/donate/bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/donate/bitcoin.png -------------------------------------------------------------------------------- /public/images/donate/ethereum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/donate/ethereum.png -------------------------------------------------------------------------------- /public/images/donate/monero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/donate/monero.png -------------------------------------------------------------------------------- /public/images/donate/tron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/donate/tron.png -------------------------------------------------------------------------------- /public/images/duress/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/duress/1.png -------------------------------------------------------------------------------- /public/images/duress/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/duress/2.png -------------------------------------------------------------------------------- /public/images/gradients/ellipse-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/gradients/ellipse-blue.png -------------------------------------------------------------------------------- /public/images/gradients/ellipse-green-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/gradients/ellipse-green-1x.png -------------------------------------------------------------------------------- /public/images/gradients/ellipse-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/gradients/ellipse-green.png -------------------------------------------------------------------------------- /public/images/gradients/ellipse-grey-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/gradients/ellipse-grey-1x.png -------------------------------------------------------------------------------- /public/images/gradients/ellipse-grey-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/gradients/ellipse-grey-2x.png -------------------------------------------------------------------------------- /public/images/gradients/ellipse-purple-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/gradients/ellipse-purple-1x.png -------------------------------------------------------------------------------- /public/images/gradients/ellipse-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/gradients/ellipse-purple.png -------------------------------------------------------------------------------- /public/images/gradients/ellipse-red-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/gradients/ellipse-red-1x.png -------------------------------------------------------------------------------- /public/images/gradients/ellipse-yellow-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/gradients/ellipse-yellow-1x.png -------------------------------------------------------------------------------- /public/images/gradients/ellipse-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/gradients/ellipse-yellow.png -------------------------------------------------------------------------------- /public/images/gradients/grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/gradients/grey.svg -------------------------------------------------------------------------------- /public/images/gradients/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/gradients/hero.svg -------------------------------------------------------------------------------- /public/images/gradients/violet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/gradients/violet.svg -------------------------------------------------------------------------------- /public/images/gradients/yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/gradients/yellow.svg -------------------------------------------------------------------------------- /public/images/hs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/hs.png -------------------------------------------------------------------------------- /public/images/learn/bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/learn/bitcoin.png -------------------------------------------------------------------------------- /public/images/learn/course-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/learn/course-advanced.png -------------------------------------------------------------------------------- /public/images/learn/course-beginner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/learn/course-beginner.png -------------------------------------------------------------------------------- /public/images/learn/course-profi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/learn/course-profi.png -------------------------------------------------------------------------------- /public/images/learn/crypto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/learn/crypto.png -------------------------------------------------------------------------------- /public/images/learn/private-keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/learn/private-keys.png -------------------------------------------------------------------------------- /public/images/learn/wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/learn/wallet.png -------------------------------------------------------------------------------- /public/images/multi-wallet-market/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/multi-wallet-market/1.png -------------------------------------------------------------------------------- /public/images/multi-wallet-market/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/multi-wallet-market/2.png -------------------------------------------------------------------------------- /public/images/multi-wallet-market/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/multi-wallet-market/3.png -------------------------------------------------------------------------------- /public/images/multi-wallet/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/multi-wallet/1.png -------------------------------------------------------------------------------- /public/images/multi-wallet/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/multi-wallet/2.png -------------------------------------------------------------------------------- /public/images/multi-wallet/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/multi-wallet/3.png -------------------------------------------------------------------------------- /public/images/partners/bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/partners/bitcoin.png -------------------------------------------------------------------------------- /public/images/partners/blockchair-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/partners/blockchair-user.png -------------------------------------------------------------------------------- /public/images/partners/blockchair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/partners/blockchair.png -------------------------------------------------------------------------------- /public/images/partners/blum-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/partners/blum-user.png -------------------------------------------------------------------------------- /public/images/partners/blum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/partners/blum.png -------------------------------------------------------------------------------- /public/images/partners/drpc-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/partners/drpc-user.png -------------------------------------------------------------------------------- /public/images/partners/drpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/partners/drpc.png -------------------------------------------------------------------------------- /public/images/partners/ethereum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/partners/ethereum.png -------------------------------------------------------------------------------- /public/images/partners/f-droid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/partners/f-droid.png -------------------------------------------------------------------------------- /public/images/partners/hashdit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/partners/hashdit.png -------------------------------------------------------------------------------- /public/images/partners/immunfi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/partners/immunfi.png -------------------------------------------------------------------------------- /public/images/partners/nym-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/partners/nym-user.png -------------------------------------------------------------------------------- /public/images/partners/nym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/partners/nym.png -------------------------------------------------------------------------------- /public/images/partners/scrutiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/partners/scrutiny.png -------------------------------------------------------------------------------- /public/images/partners/zcash-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/partners/zcash-user.png -------------------------------------------------------------------------------- /public/images/partners/zcash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/partners/zcash.png -------------------------------------------------------------------------------- /public/images/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/qr.png -------------------------------------------------------------------------------- /public/images/tickers/1inch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/tickers/1inch.png -------------------------------------------------------------------------------- /public/images/tickers/alpaca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/tickers/alpaca.png -------------------------------------------------------------------------------- /public/images/tickers/blockchair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/tickers/blockchair.png -------------------------------------------------------------------------------- /public/images/tickers/chainlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/tickers/chainlink.png -------------------------------------------------------------------------------- /public/images/tickers/coingecko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/tickers/coingecko.png -------------------------------------------------------------------------------- /public/images/tickers/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/tickers/dash.png -------------------------------------------------------------------------------- /public/images/tickers/defillama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/tickers/defillama.png -------------------------------------------------------------------------------- /public/images/tickers/defiyield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/tickers/defiyield.png -------------------------------------------------------------------------------- /public/images/tickers/ens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/tickers/ens.png -------------------------------------------------------------------------------- /public/images/tickers/ethereum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/tickers/ethereum.png -------------------------------------------------------------------------------- /public/images/tickers/wc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/tickers/wc.png -------------------------------------------------------------------------------- /public/images/tickers/zcash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/images/tickers/zcash.png -------------------------------------------------------------------------------- /public/releases/0.1.md: -------------------------------------------------------------------------------- 1 | Version 0.1 2 | -------------------------------------------------------------------------------- /public/releases/0.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.10.md -------------------------------------------------------------------------------- /public/releases/0.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.11.md -------------------------------------------------------------------------------- /public/releases/0.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.12.md -------------------------------------------------------------------------------- /public/releases/0.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.13.md -------------------------------------------------------------------------------- /public/releases/0.14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.14.md -------------------------------------------------------------------------------- /public/releases/0.15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.15.md -------------------------------------------------------------------------------- /public/releases/0.16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.16.md -------------------------------------------------------------------------------- /public/releases/0.17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.17.md -------------------------------------------------------------------------------- /public/releases/0.18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.18.md -------------------------------------------------------------------------------- /public/releases/0.19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.19.md -------------------------------------------------------------------------------- /public/releases/0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.2.md -------------------------------------------------------------------------------- /public/releases/0.20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.20.md -------------------------------------------------------------------------------- /public/releases/0.21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.21.md -------------------------------------------------------------------------------- /public/releases/0.22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.22.md -------------------------------------------------------------------------------- /public/releases/0.23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.23.md -------------------------------------------------------------------------------- /public/releases/0.24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.24.md -------------------------------------------------------------------------------- /public/releases/0.25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.25.md -------------------------------------------------------------------------------- /public/releases/0.26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.26.md -------------------------------------------------------------------------------- /public/releases/0.27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.27.md -------------------------------------------------------------------------------- /public/releases/0.28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.28.md -------------------------------------------------------------------------------- /public/releases/0.29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.29.md -------------------------------------------------------------------------------- /public/releases/0.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.3.md -------------------------------------------------------------------------------- /public/releases/0.30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.30.md -------------------------------------------------------------------------------- /public/releases/0.31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.31.md -------------------------------------------------------------------------------- /public/releases/0.32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.32.md -------------------------------------------------------------------------------- /public/releases/0.33.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.33.md -------------------------------------------------------------------------------- /public/releases/0.34.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.34.md -------------------------------------------------------------------------------- /public/releases/0.35.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.35.md -------------------------------------------------------------------------------- /public/releases/0.36.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.36.md -------------------------------------------------------------------------------- /public/releases/0.37.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.37.md -------------------------------------------------------------------------------- /public/releases/0.38.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.38.md -------------------------------------------------------------------------------- /public/releases/0.39.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.39.md -------------------------------------------------------------------------------- /public/releases/0.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.4.md -------------------------------------------------------------------------------- /public/releases/0.40.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.40.md -------------------------------------------------------------------------------- /public/releases/0.41.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.41.md -------------------------------------------------------------------------------- /public/releases/0.42.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.42.md -------------------------------------------------------------------------------- /public/releases/0.43.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.43.md -------------------------------------------------------------------------------- /public/releases/0.44.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.44.md -------------------------------------------------------------------------------- /public/releases/0.45.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.45.md -------------------------------------------------------------------------------- /public/releases/0.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.5.md -------------------------------------------------------------------------------- /public/releases/0.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.6.md -------------------------------------------------------------------------------- /public/releases/0.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.7.md -------------------------------------------------------------------------------- /public/releases/0.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.8.md -------------------------------------------------------------------------------- /public/releases/0.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/public/releases/0.9.md -------------------------------------------------------------------------------- /src/app/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/app/bootstrap.scss -------------------------------------------------------------------------------- /src/app/faq-markdown/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/app/faq-markdown/route.js -------------------------------------------------------------------------------- /src/app/faq/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/app/faq/page.js -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/app/layout.js -------------------------------------------------------------------------------- /src/app/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/app/layout.scss -------------------------------------------------------------------------------- /src/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/app/page.js -------------------------------------------------------------------------------- /src/app/privacy-policy/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/app/privacy-policy/page.js -------------------------------------------------------------------------------- /src/app/releases/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/app/releases/route.js -------------------------------------------------------------------------------- /src/app/tos/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/app/tos/page.js -------------------------------------------------------------------------------- /src/components/Animated/Analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Animated/Analytics.js -------------------------------------------------------------------------------- /src/components/Animated/Backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Animated/Backup.js -------------------------------------------------------------------------------- /src/components/Animated/Chains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Animated/Chains.js -------------------------------------------------------------------------------- /src/components/Animated/Dexes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Animated/Dexes.js -------------------------------------------------------------------------------- /src/components/Animated/Duress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Animated/Duress.js -------------------------------------------------------------------------------- /src/components/Animated/DuressMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Animated/DuressMode.js -------------------------------------------------------------------------------- /src/components/Animated/GradientImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Animated/GradientImage.js -------------------------------------------------------------------------------- /src/components/Animated/GradientImageBig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Animated/GradientImageBig.js -------------------------------------------------------------------------------- /src/components/Animated/GradientImageBottomRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Animated/GradientImageBottomRight.js -------------------------------------------------------------------------------- /src/components/Animated/GradientImageDuress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Animated/GradientImageDuress.js -------------------------------------------------------------------------------- /src/components/Animated/IconSwitcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Animated/IconSwitcher.js -------------------------------------------------------------------------------- /src/components/Animated/MultiWallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Animated/MultiWallet.js -------------------------------------------------------------------------------- /src/components/Animated/MultiWalletMarket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Animated/MultiWalletMarket.js -------------------------------------------------------------------------------- /src/components/Animated/NonCustodial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Animated/NonCustodial.js -------------------------------------------------------------------------------- /src/components/Animated/OpenSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Animated/OpenSource.js -------------------------------------------------------------------------------- /src/components/Animated/SpamDetect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Animated/SpamDetect.js -------------------------------------------------------------------------------- /src/components/Animated/WalletConnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Animated/WalletConnect.js -------------------------------------------------------------------------------- /src/components/Card/Card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Card/Card.css -------------------------------------------------------------------------------- /src/components/Card/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Card/Card.js -------------------------------------------------------------------------------- /src/components/Card/CardBig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Card/CardBig.js -------------------------------------------------------------------------------- /src/components/Card/CardLearn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Card/CardLearn.js -------------------------------------------------------------------------------- /src/components/Card/CardMedium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Card/CardMedium.js -------------------------------------------------------------------------------- /src/components/Card/CardOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Card/CardOverlay.js -------------------------------------------------------------------------------- /src/components/Card/CardPartner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Card/CardPartner.js -------------------------------------------------------------------------------- /src/components/Donate/Donate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Donate/Donate.js -------------------------------------------------------------------------------- /src/components/Donate/DotateCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Donate/DotateCard.js -------------------------------------------------------------------------------- /src/components/Download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Download.js -------------------------------------------------------------------------------- /src/components/Engineered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Engineered.js -------------------------------------------------------------------------------- /src/components/Faq/Faq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Faq/Faq.js -------------------------------------------------------------------------------- /src/components/Faq/FaqContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Faq/FaqContent.js -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/Form/SubscribeForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Form/SubscribeForm.js -------------------------------------------------------------------------------- /src/components/Header/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Header/Header.css -------------------------------------------------------------------------------- /src/components/Header/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Header/Header.js -------------------------------------------------------------------------------- /src/components/Header/HeaderFixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Header/HeaderFixed.js -------------------------------------------------------------------------------- /src/components/Hero/Hero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Hero/Hero.css -------------------------------------------------------------------------------- /src/components/Hero/Hero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Hero/Hero.js -------------------------------------------------------------------------------- /src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Home.js -------------------------------------------------------------------------------- /src/components/Markdown/Markdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Markdown/Markdown.scss -------------------------------------------------------------------------------- /src/components/Markdown/MarkdownFaq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Markdown/MarkdownFaq.js -------------------------------------------------------------------------------- /src/components/Markdown/MarkdownPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Markdown/MarkdownPreview.js -------------------------------------------------------------------------------- /src/components/Markdown/MarkdownRelease.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Markdown/MarkdownRelease.js -------------------------------------------------------------------------------- /src/components/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Modal.js -------------------------------------------------------------------------------- /src/components/Page/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Page/Page.js -------------------------------------------------------------------------------- /src/components/Page/PageHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Page/PageHeader.js -------------------------------------------------------------------------------- /src/components/Roadmap/Roadmap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Roadmap/Roadmap.css -------------------------------------------------------------------------------- /src/components/Roadmap/Roadmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Roadmap/Roadmap.js -------------------------------------------------------------------------------- /src/components/Roadmap/releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Roadmap/releases.json -------------------------------------------------------------------------------- /src/components/Tickers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Tickers.js -------------------------------------------------------------------------------- /src/components/Video/VideoTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Video/VideoTab.js -------------------------------------------------------------------------------- /src/components/Video/Videos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Video/Videos.js -------------------------------------------------------------------------------- /src/components/Video/YoutubeEmbed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/components/Video/YoutubeEmbed.js -------------------------------------------------------------------------------- /src/faq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq.json -------------------------------------------------------------------------------- /src/faq/de/about/are-there-any-risks-when-using-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/about/are-there-any-risks-when-using-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/de/about/does-it-cost-anything-to-use-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/about/does-it-cost-anything-to-use-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/de/about/how-to-contact-unstoppable-team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/about/how-to-contact-unstoppable-team.md -------------------------------------------------------------------------------- /src/faq/de/about/how-to-update-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/about/how-to-update-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/de/about/how-unstoppable-makes-money.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/about/how-unstoppable-makes-money.md -------------------------------------------------------------------------------- /src/faq/de/about/how-unstoppable-wallet-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/about/how-unstoppable-wallet-works.md -------------------------------------------------------------------------------- /src/faq/de/about/what-can-be-done-with-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/about/what-can-be-done-with-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/de/about/what-happens-if-unstoppable-app-goes-down.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/about/what-happens-if-unstoppable-app-goes-down.md -------------------------------------------------------------------------------- /src/faq/de/about/what-is-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/about/what-is-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/de/about/what-should-someone-do-before-using-unstoppable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/about/what-should-someone-do-before-using-unstoppable.md -------------------------------------------------------------------------------- /src/faq/de/about/where-to-download-unstoppable-wallet-from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/about/where-to-download-unstoppable-wallet-from.md -------------------------------------------------------------------------------- /src/faq/de/about/who-is-building-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/about/who-is-building-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/de/about/why-choose-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/about/why-choose-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/de/balance/how-to-change-base-currency-for-the-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/balance/how-to-change-base-currency-for-the-wallet.md -------------------------------------------------------------------------------- /src/faq/de/balance/how-to-hide-show-wallet-balance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/balance/how-to-hide-show-wallet-balance.md -------------------------------------------------------------------------------- /src/faq/de/balance/what-a-triangle-alert-icon-on-a-coin-means.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/balance/what-a-triangle-alert-icon-on-a-coin-means.md -------------------------------------------------------------------------------- /src/faq/de/balance/what-syncing-status-on-a-coin-means.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/balance/what-syncing-status-on-a-coin-means.md -------------------------------------------------------------------------------- /src/faq/de/balance/what-the-lock-sign-next-to-coin-balance-means.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/balance/what-the-lock-sign-next-to-coin-balance-means.md -------------------------------------------------------------------------------- /src/faq/de/balance/why-balance-appears-dimmed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/balance/why-balance-appears-dimmed.md -------------------------------------------------------------------------------- /src/faq/de/balance/why-send-button-for-the-coin-appears-disabled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/balance/why-send-button-for-the-coin-appears-disabled.md -------------------------------------------------------------------------------- /src/faq/de/balance/why-the-exchange-rate-dor-the-token-not-shown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/balance/why-the-exchange-rate-dor-the-token-not-shown.md -------------------------------------------------------------------------------- /src/faq/de/balance/why-wallet-balance-is-showing-incorrect-amount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/balance/why-wallet-balance-is-showing-incorrect-amount.md -------------------------------------------------------------------------------- /src/faq/de/binance/what-are-bep2-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/binance/what-are-bep2-tokens.md -------------------------------------------------------------------------------- /src/faq/de/binance/what-are-bep20-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/binance/what-are-bep20-tokens.md -------------------------------------------------------------------------------- /src/faq/de/binance/what-is-binance-smart-chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/binance/what-is-binance-smart-chain.md -------------------------------------------------------------------------------- /src/faq/de/bitcoin/how-to-cancel-a-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/bitcoin/how-to-cancel-a-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/de/bitcoin/how-to-resend-a-failed-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/bitcoin/how-to-resend-a-failed-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/de/bitcoin/how-to-send-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/bitcoin/how-to-send-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/de/bitcoin/what-do-bip44-bip49-bip84-mean-in-bitcoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/bitcoin/what-do-bip44-bip49-bip84-mean-in-bitcoin.md -------------------------------------------------------------------------------- /src/faq/de/bitcoin/why-bitcoin-payment-adderess-keeps-changing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/bitcoin/why-bitcoin-payment-adderess-keeps-changing.md -------------------------------------------------------------------------------- /src/faq/de/bitcoin/why-bitcoin-transaction-stays-pending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/bitcoin/why-bitcoin-transaction-stays-pending.md -------------------------------------------------------------------------------- /src/faq/de/dexes-swaps/are-there-any-limitations-to-swap-amounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/dexes-swaps/are-there-any-limitations-to-swap-amounts.md -------------------------------------------------------------------------------- /src/faq/de/dexes-swaps/how-to-swap-cryptocurrency-in-unstoppable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/dexes-swaps/how-to-swap-cryptocurrency-in-unstoppable.md -------------------------------------------------------------------------------- /src/faq/de/dexes-swaps/what-are-cryptocurrency-swaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/dexes-swaps/what-are-cryptocurrency-swaps.md -------------------------------------------------------------------------------- /src/faq/de/dexes-swaps/which-dexes-supported-in-unstoppable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/dexes-swaps/which-dexes-supported-in-unstoppable.md -------------------------------------------------------------------------------- /src/faq/de/dexes-swaps/why-can-not-i-swap-bitcoin-and-other-coins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/dexes-swaps/why-can-not-i-swap-bitcoin-and-other-coins.md -------------------------------------------------------------------------------- /src/faq/de/dexes-swaps/why-swap-fees-on-ethereum-are-so-high.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/dexes-swaps/why-swap-fees-on-ethereum-are-so-high.md -------------------------------------------------------------------------------- /src/faq/de/dexes-swaps/why-unstoppable-supports-only-dexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/dexes-swaps/why-unstoppable-supports-only-dexes.md -------------------------------------------------------------------------------- /src/faq/de/ethereum/how-to-cancel-replace-an-ethereum-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/ethereum/how-to-cancel-replace-an-ethereum-transaction.md -------------------------------------------------------------------------------- /src/faq/de/ethereum/how-to-send-ethereum-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/ethereum/how-to-send-ethereum-transaction.md -------------------------------------------------------------------------------- /src/faq/de/ethereum/what-are-erc20-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/ethereum/what-are-erc20-tokens.md -------------------------------------------------------------------------------- /src/faq/de/ethereum/what-are-gas-gasprice-gaslimit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/ethereum/what-are-gas-gasprice-gaslimit.md -------------------------------------------------------------------------------- /src/faq/de/ethereum/what-is-an-ethereum-smart-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/ethereum/what-is-an-ethereum-smart-contract.md -------------------------------------------------------------------------------- /src/faq/de/ethereum/when-ethereum-transaction-can-fail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/ethereum/when-ethereum-transaction-can-fail.md -------------------------------------------------------------------------------- /src/faq/de/ethereum/why-eth-needed-to-send-erc20-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/ethereum/why-eth-needed-to-send-erc20-token.md -------------------------------------------------------------------------------- /src/faq/de/ethereum/why-ethereum-transaction-stays-pending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/ethereum/why-ethereum-transaction-stays-pending.md -------------------------------------------------------------------------------- /src/faq/de/ethereum/why-ethereum-transactions-are-so-expensive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/ethereum/why-ethereum-transactions-are-so-expensive.md -------------------------------------------------------------------------------- /src/faq/de/management/how-to-backup-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/management/how-to-backup-wallet.md -------------------------------------------------------------------------------- /src/faq/de/management/how-to-create-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/management/how-to-create-wallet.md -------------------------------------------------------------------------------- /src/faq/de/management/how-to-delete-the-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/management/how-to-delete-the-wallet.md -------------------------------------------------------------------------------- /src/faq/de/management/how-to-manage-multiple-wallets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/management/how-to-manage-multiple-wallets.md -------------------------------------------------------------------------------- /src/faq/de/management/how-to-restore-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/management/how-to-restore-wallet.md -------------------------------------------------------------------------------- /src/faq/de/management/migration_recommended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/management/migration_recommended.md -------------------------------------------------------------------------------- /src/faq/de/management/migration_required.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/management/migration_required.md -------------------------------------------------------------------------------- /src/faq/de/privacy/does-unstoppable-collect-or-share-any-user-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/privacy/does-unstoppable-collect-or-share-any-user-data.md -------------------------------------------------------------------------------- /src/faq/de/privacy/how-to-buy-cryptocurrency-anonymously.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/privacy/how-to-buy-cryptocurrency-anonymously.md -------------------------------------------------------------------------------- /src/faq/de/privacy/how-using-tor-and-vpn-enhances-privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/privacy/how-using-tor-and-vpn-enhances-privacy.md -------------------------------------------------------------------------------- /src/faq/de/security/how-unstoppable-keeps-funds-secure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/security/how-unstoppable-keeps-funds-secure.md -------------------------------------------------------------------------------- /src/faq/de/security/what-is-mnemonic-passphrase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/security/what-is-mnemonic-passphrase.md -------------------------------------------------------------------------------- /src/faq/de/security/what-is-mnemonic-phrase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/security/what-is-mnemonic-phrase.md -------------------------------------------------------------------------------- /src/faq/de/security/what-steps-to-take-if-lost-my-phone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/security/what-steps-to-take-if-lost-my-phone.md -------------------------------------------------------------------------------- /src/faq/de/security/why-to-set-an-unlock-code-for-the-wallet-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/security/why-to-set-an-unlock-code-for-the-wallet-app.md -------------------------------------------------------------------------------- /src/faq/de/transactions/can-a-user-send-transaction-to-self.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/transactions/can-a-user-send-transaction-to-self.md -------------------------------------------------------------------------------- /src/faq/de/transactions/what-are-transactions-fee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/de/transactions/what-are-transactions-fee.md -------------------------------------------------------------------------------- /src/faq/en/about/are-there-any-risks-when-using-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/about/are-there-any-risks-when-using-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/en/about/does-it-cost-anything-to-use-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/about/does-it-cost-anything-to-use-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/en/about/how-to-contact-unstoppable-team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/about/how-to-contact-unstoppable-team.md -------------------------------------------------------------------------------- /src/faq/en/about/how-to-update-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/about/how-to-update-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/en/about/how-unstoppable-makes-money.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/about/how-unstoppable-makes-money.md -------------------------------------------------------------------------------- /src/faq/en/about/how-unstoppable-wallet-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/about/how-unstoppable-wallet-works.md -------------------------------------------------------------------------------- /src/faq/en/about/what-can-be-done-with-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/about/what-can-be-done-with-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/en/about/what-happens-if-unstoppable-app-goes-down.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/about/what-happens-if-unstoppable-app-goes-down.md -------------------------------------------------------------------------------- /src/faq/en/about/what-is-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/about/what-is-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/en/about/what-should-someone-do-before-using-unstoppable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/about/what-should-someone-do-before-using-unstoppable.md -------------------------------------------------------------------------------- /src/faq/en/about/where-to-download-unstoppable-wallet-from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/about/where-to-download-unstoppable-wallet-from.md -------------------------------------------------------------------------------- /src/faq/en/about/who-is-building-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/about/who-is-building-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/en/about/why-choose-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/about/why-choose-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/en/balance/how-to-change-base-currency-for-the-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/balance/how-to-change-base-currency-for-the-wallet.md -------------------------------------------------------------------------------- /src/faq/en/balance/how-to-hide-show-wallet-balance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/balance/how-to-hide-show-wallet-balance.md -------------------------------------------------------------------------------- /src/faq/en/balance/what-a-triangle-alert-icon-on-a-coin-means.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/balance/what-a-triangle-alert-icon-on-a-coin-means.md -------------------------------------------------------------------------------- /src/faq/en/balance/what-syncing-status-on-a-coin-means.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/balance/what-syncing-status-on-a-coin-means.md -------------------------------------------------------------------------------- /src/faq/en/balance/what-the-lock-sign-next-to-coin-balance-means.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/balance/what-the-lock-sign-next-to-coin-balance-means.md -------------------------------------------------------------------------------- /src/faq/en/balance/why-balance-appears-dimmed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/balance/why-balance-appears-dimmed.md -------------------------------------------------------------------------------- /src/faq/en/balance/why-send-button-for-the-coin-appears-disabled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/balance/why-send-button-for-the-coin-appears-disabled.md -------------------------------------------------------------------------------- /src/faq/en/balance/why-the-exchange-rate-dor-the-token-not-shown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/balance/why-the-exchange-rate-dor-the-token-not-shown.md -------------------------------------------------------------------------------- /src/faq/en/balance/why-wallet-balance-is-showing-incorrect-amount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/balance/why-wallet-balance-is-showing-incorrect-amount.md -------------------------------------------------------------------------------- /src/faq/en/binance/how-to-add-bep20-bep2-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/binance/how-to-add-bep20-bep2-token.md -------------------------------------------------------------------------------- /src/faq/en/binance/what-are-bep2-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/binance/what-are-bep2-tokens.md -------------------------------------------------------------------------------- /src/faq/en/binance/what-are-bep20-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/binance/what-are-bep20-tokens.md -------------------------------------------------------------------------------- /src/faq/en/binance/what-is-binance-smart-chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/binance/what-is-binance-smart-chain.md -------------------------------------------------------------------------------- /src/faq/en/bitcoin/how-to-cancel-a-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/bitcoin/how-to-cancel-a-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/en/bitcoin/how-to-resend-a-failed-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/bitcoin/how-to-resend-a-failed-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/en/bitcoin/how-to-send-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/bitcoin/how-to-send-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/en/bitcoin/what-do-bip44-bip49-bip84-mean-in-bitcoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/bitcoin/what-do-bip44-bip49-bip84-mean-in-bitcoin.md -------------------------------------------------------------------------------- /src/faq/en/bitcoin/why-bitcoin-payment-adderess-keeps-changing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/bitcoin/why-bitcoin-payment-adderess-keeps-changing.md -------------------------------------------------------------------------------- /src/faq/en/bitcoin/why-bitcoin-transaction-stays-pending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/bitcoin/why-bitcoin-transaction-stays-pending.md -------------------------------------------------------------------------------- /src/faq/en/defi/defi-risks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/defi/defi-risks.md -------------------------------------------------------------------------------- /src/faq/en/defi/defi-transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/defi/defi-transactions.md -------------------------------------------------------------------------------- /src/faq/en/defi/how-to-use-defi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/defi/how-to-use-defi.md -------------------------------------------------------------------------------- /src/faq/en/defi/popular-defi-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/defi/popular-defi-services.md -------------------------------------------------------------------------------- /src/faq/en/defi/what-is-defi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/defi/what-is-defi.md -------------------------------------------------------------------------------- /src/faq/en/dexes-swaps/are-there-any-limitations-to-swap-amounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/dexes-swaps/are-there-any-limitations-to-swap-amounts.md -------------------------------------------------------------------------------- /src/faq/en/dexes-swaps/how-to-swap-cryptocurrency-in-unstoppable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/dexes-swaps/how-to-swap-cryptocurrency-in-unstoppable.md -------------------------------------------------------------------------------- /src/faq/en/dexes-swaps/what-are-cryptocurrency-swaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/dexes-swaps/what-are-cryptocurrency-swaps.md -------------------------------------------------------------------------------- /src/faq/en/dexes-swaps/which-dexes-supported-in-unstoppable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/dexes-swaps/which-dexes-supported-in-unstoppable.md -------------------------------------------------------------------------------- /src/faq/en/dexes-swaps/why-can-not-i-swap-bitcoin-and-other-coins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/dexes-swaps/why-can-not-i-swap-bitcoin-and-other-coins.md -------------------------------------------------------------------------------- /src/faq/en/dexes-swaps/why-swap-fees-on-ethereum-are-so-high.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/dexes-swaps/why-swap-fees-on-ethereum-are-so-high.md -------------------------------------------------------------------------------- /src/faq/en/dexes-swaps/why-unstoppable-supports-only-dexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/dexes-swaps/why-unstoppable-supports-only-dexes.md -------------------------------------------------------------------------------- /src/faq/en/ethereum/how-to-add-erc20-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/ethereum/how-to-add-erc20-token.md -------------------------------------------------------------------------------- /src/faq/en/ethereum/how-to-cancel-replace-an-ethereum-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/ethereum/how-to-cancel-replace-an-ethereum-transaction.md -------------------------------------------------------------------------------- /src/faq/en/ethereum/how-to-send-ethereum-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/ethereum/how-to-send-ethereum-transaction.md -------------------------------------------------------------------------------- /src/faq/en/ethereum/what-are-erc20-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/ethereum/what-are-erc20-tokens.md -------------------------------------------------------------------------------- /src/faq/en/ethereum/what-are-gas-gasprice-gaslimit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/ethereum/what-are-gas-gasprice-gaslimit.md -------------------------------------------------------------------------------- /src/faq/en/ethereum/what-is-an-ethereum-smart-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/ethereum/what-is-an-ethereum-smart-contract.md -------------------------------------------------------------------------------- /src/faq/en/ethereum/when-ethereum-transaction-can-fail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/ethereum/when-ethereum-transaction-can-fail.md -------------------------------------------------------------------------------- /src/faq/en/ethereum/why-eth-needed-to-send-erc20-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/ethereum/why-eth-needed-to-send-erc20-token.md -------------------------------------------------------------------------------- /src/faq/en/ethereum/why-ethereum-transaction-stays-pending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/ethereum/why-ethereum-transaction-stays-pending.md -------------------------------------------------------------------------------- /src/faq/en/ethereum/why-ethereum-transactions-are-so-expensive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/ethereum/why-ethereum-transactions-are-so-expensive.md -------------------------------------------------------------------------------- /src/faq/en/management/how-to-backup-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/management/how-to-backup-wallet.md -------------------------------------------------------------------------------- /src/faq/en/management/how-to-create-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/management/how-to-create-wallet.md -------------------------------------------------------------------------------- /src/faq/en/management/how-to-delete-the-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/management/how-to-delete-the-wallet.md -------------------------------------------------------------------------------- /src/faq/en/management/how-to-manage-multiple-wallets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/management/how-to-manage-multiple-wallets.md -------------------------------------------------------------------------------- /src/faq/en/management/how-to-restore-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/management/how-to-restore-wallet.md -------------------------------------------------------------------------------- /src/faq/en/management/migration_recommended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/management/migration_recommended.md -------------------------------------------------------------------------------- /src/faq/en/management/migration_required.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/management/migration_required.md -------------------------------------------------------------------------------- /src/faq/en/privacy/does-unstoppable-collect-or-share-any-user-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/privacy/does-unstoppable-collect-or-share-any-user-data.md -------------------------------------------------------------------------------- /src/faq/en/privacy/how-to-buy-cryptocurrency-anonymously.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/privacy/how-to-buy-cryptocurrency-anonymously.md -------------------------------------------------------------------------------- /src/faq/en/privacy/how-using-tor-and-vpn-enhances-privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/privacy/how-using-tor-and-vpn-enhances-privacy.md -------------------------------------------------------------------------------- /src/faq/en/security/how-unstoppable-keeps-funds-secure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/security/how-unstoppable-keeps-funds-secure.md -------------------------------------------------------------------------------- /src/faq/en/security/what-is-mnemonic-passphrase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/security/what-is-mnemonic-passphrase.md -------------------------------------------------------------------------------- /src/faq/en/security/what-is-mnemonic-phrase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/security/what-is-mnemonic-phrase.md -------------------------------------------------------------------------------- /src/faq/en/security/what-steps-to-take-if-lost-my-phone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/security/what-steps-to-take-if-lost-my-phone.md -------------------------------------------------------------------------------- /src/faq/en/security/why-to-set-an-unlock-code-for-the-wallet-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/security/why-to-set-an-unlock-code-for-the-wallet-app.md -------------------------------------------------------------------------------- /src/faq/en/transactions/can-a-user-send-transaction-to-self.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/transactions/can-a-user-send-transaction-to-self.md -------------------------------------------------------------------------------- /src/faq/en/transactions/what-are-transactions-fee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/en/transactions/what-are-transactions-fee.md -------------------------------------------------------------------------------- /src/faq/es/about/are-there-any-risks-when-using-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/about/are-there-any-risks-when-using-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/es/about/does-it-cost-anything-to-use-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/about/does-it-cost-anything-to-use-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/es/about/how-to-contact-unstoppable-team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/about/how-to-contact-unstoppable-team.md -------------------------------------------------------------------------------- /src/faq/es/about/how-to-update-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/about/how-to-update-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/es/about/how-unstoppable-makes-money.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/about/how-unstoppable-makes-money.md -------------------------------------------------------------------------------- /src/faq/es/about/how-unstoppable-wallet-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/about/how-unstoppable-wallet-works.md -------------------------------------------------------------------------------- /src/faq/es/about/what-can-be-done-with-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/about/what-can-be-done-with-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/es/about/what-happens-if-unstoppable-app-goes-down.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/about/what-happens-if-unstoppable-app-goes-down.md -------------------------------------------------------------------------------- /src/faq/es/about/what-is-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/about/what-is-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/es/about/what-should-someone-do-before-using-unstoppable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/about/what-should-someone-do-before-using-unstoppable.md -------------------------------------------------------------------------------- /src/faq/es/about/where-to-download-unstoppable-wallet-from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/about/where-to-download-unstoppable-wallet-from.md -------------------------------------------------------------------------------- /src/faq/es/about/who-is-building-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/about/who-is-building-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/es/about/why-choose-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/about/why-choose-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/es/balance/how-to-change-base-currency-for-the-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/balance/how-to-change-base-currency-for-the-wallet.md -------------------------------------------------------------------------------- /src/faq/es/balance/how-to-hide-show-wallet-balance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/balance/how-to-hide-show-wallet-balance.md -------------------------------------------------------------------------------- /src/faq/es/balance/what-a-triangle-alert-icon-on-a-coin-means.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/balance/what-a-triangle-alert-icon-on-a-coin-means.md -------------------------------------------------------------------------------- /src/faq/es/balance/what-syncing-status-on-a-coin-means.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/balance/what-syncing-status-on-a-coin-means.md -------------------------------------------------------------------------------- /src/faq/es/balance/what-the-lock-sign-next-to-coin-balance-means.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/balance/what-the-lock-sign-next-to-coin-balance-means.md -------------------------------------------------------------------------------- /src/faq/es/balance/why-balance-appears-dimmed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/balance/why-balance-appears-dimmed.md -------------------------------------------------------------------------------- /src/faq/es/balance/why-send-button-for-the-coin-appears-disabled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/balance/why-send-button-for-the-coin-appears-disabled.md -------------------------------------------------------------------------------- /src/faq/es/balance/why-the-exchange-rate-dor-the-token-not-shown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/balance/why-the-exchange-rate-dor-the-token-not-shown.md -------------------------------------------------------------------------------- /src/faq/es/balance/why-wallet-balance-is-showing-incorrect-amount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/balance/why-wallet-balance-is-showing-incorrect-amount.md -------------------------------------------------------------------------------- /src/faq/es/binance/what-are-bep2-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/binance/what-are-bep2-tokens.md -------------------------------------------------------------------------------- /src/faq/es/binance/what-are-bep20-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/binance/what-are-bep20-tokens.md -------------------------------------------------------------------------------- /src/faq/es/binance/what-is-binance-smart-chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/binance/what-is-binance-smart-chain.md -------------------------------------------------------------------------------- /src/faq/es/bitcoin/how-to-cancel-a-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/bitcoin/how-to-cancel-a-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/es/bitcoin/how-to-resend-a-failed-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/bitcoin/how-to-resend-a-failed-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/es/bitcoin/how-to-send-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/bitcoin/how-to-send-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/es/bitcoin/what-do-bip44-bip49-bip84-mean-in-bitcoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/bitcoin/what-do-bip44-bip49-bip84-mean-in-bitcoin.md -------------------------------------------------------------------------------- /src/faq/es/bitcoin/why-bitcoin-payment-adderess-keeps-changing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/bitcoin/why-bitcoin-payment-adderess-keeps-changing.md -------------------------------------------------------------------------------- /src/faq/es/bitcoin/why-bitcoin-transaction-stays-pending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/bitcoin/why-bitcoin-transaction-stays-pending.md -------------------------------------------------------------------------------- /src/faq/es/dexes-swaps/are-there-any-limitations-to-swap-amounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/dexes-swaps/are-there-any-limitations-to-swap-amounts.md -------------------------------------------------------------------------------- /src/faq/es/dexes-swaps/how-to-swap-cryptocurrency-in-unstoppable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/dexes-swaps/how-to-swap-cryptocurrency-in-unstoppable.md -------------------------------------------------------------------------------- /src/faq/es/dexes-swaps/what-are-cryptocurrency-swaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/dexes-swaps/what-are-cryptocurrency-swaps.md -------------------------------------------------------------------------------- /src/faq/es/dexes-swaps/which-dexes-supported-in-unstoppable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/dexes-swaps/which-dexes-supported-in-unstoppable.md -------------------------------------------------------------------------------- /src/faq/es/dexes-swaps/why-can-not-i-swap-bitcoin-and-other-coins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/dexes-swaps/why-can-not-i-swap-bitcoin-and-other-coins.md -------------------------------------------------------------------------------- /src/faq/es/dexes-swaps/why-swap-fees-on-ethereum-are-so-high.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/dexes-swaps/why-swap-fees-on-ethereum-are-so-high.md -------------------------------------------------------------------------------- /src/faq/es/dexes-swaps/why-unstoppable-supports-only-dexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/dexes-swaps/why-unstoppable-supports-only-dexes.md -------------------------------------------------------------------------------- /src/faq/es/ethereum/how-to-cancel-replace-an-ethereum-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/ethereum/how-to-cancel-replace-an-ethereum-transaction.md -------------------------------------------------------------------------------- /src/faq/es/ethereum/how-to-send-ethereum-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/ethereum/how-to-send-ethereum-transaction.md -------------------------------------------------------------------------------- /src/faq/es/ethereum/what-are-erc20-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/ethereum/what-are-erc20-tokens.md -------------------------------------------------------------------------------- /src/faq/es/ethereum/what-are-gas-gasprice-gaslimit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/ethereum/what-are-gas-gasprice-gaslimit.md -------------------------------------------------------------------------------- /src/faq/es/ethereum/what-is-an-ethereum-smart-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/ethereum/what-is-an-ethereum-smart-contract.md -------------------------------------------------------------------------------- /src/faq/es/ethereum/when-ethereum-transaction-can-fail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/ethereum/when-ethereum-transaction-can-fail.md -------------------------------------------------------------------------------- /src/faq/es/ethereum/why-eth-needed-to-send-erc20-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/ethereum/why-eth-needed-to-send-erc20-token.md -------------------------------------------------------------------------------- /src/faq/es/ethereum/why-ethereum-transaction-stays-pending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/ethereum/why-ethereum-transaction-stays-pending.md -------------------------------------------------------------------------------- /src/faq/es/ethereum/why-ethereum-transactions-are-so-expensive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/ethereum/why-ethereum-transactions-are-so-expensive.md -------------------------------------------------------------------------------- /src/faq/es/management/how-to-backup-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/management/how-to-backup-wallet.md -------------------------------------------------------------------------------- /src/faq/es/management/how-to-create-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/management/how-to-create-wallet.md -------------------------------------------------------------------------------- /src/faq/es/management/how-to-delete-the-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/management/how-to-delete-the-wallet.md -------------------------------------------------------------------------------- /src/faq/es/management/how-to-manage-multiple-wallets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/management/how-to-manage-multiple-wallets.md -------------------------------------------------------------------------------- /src/faq/es/management/how-to-restore-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/management/how-to-restore-wallet.md -------------------------------------------------------------------------------- /src/faq/es/management/migration_recommended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/management/migration_recommended.md -------------------------------------------------------------------------------- /src/faq/es/management/migration_required.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/management/migration_required.md -------------------------------------------------------------------------------- /src/faq/es/privacy/how-to-buy-cryptocurrency-anonymously.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/privacy/how-to-buy-cryptocurrency-anonymously.md -------------------------------------------------------------------------------- /src/faq/es/privacy/how-using-tor-and-vpn-enhances-privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/privacy/how-using-tor-and-vpn-enhances-privacy.md -------------------------------------------------------------------------------- /src/faq/es/security/how-unstoppable-keeps-funds-secure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/security/how-unstoppable-keeps-funds-secure.md -------------------------------------------------------------------------------- /src/faq/es/security/what-is-mnemonic-passphrase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/security/what-is-mnemonic-passphrase.md -------------------------------------------------------------------------------- /src/faq/es/security/what-is-mnemonic-phrase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/security/what-is-mnemonic-phrase.md -------------------------------------------------------------------------------- /src/faq/es/security/what-steps-to-take-if-lost-my-phone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/security/what-steps-to-take-if-lost-my-phone.md -------------------------------------------------------------------------------- /src/faq/es/transactions/can-a-user-send-transaction-to-self.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/transactions/can-a-user-send-transaction-to-self.md -------------------------------------------------------------------------------- /src/faq/es/transactions/what-are-transactions-fee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/es/transactions/what-are-transactions-fee.md -------------------------------------------------------------------------------- /src/faq/fa/about/how-to-contact-unstoppable-team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/about/how-to-contact-unstoppable-team.md -------------------------------------------------------------------------------- /src/faq/fa/about/how-to-update-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/about/how-to-update-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/fa/about/how-unstoppable-makes-money.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/about/how-unstoppable-makes-money.md -------------------------------------------------------------------------------- /src/faq/fa/about/how-unstoppable-wallet-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/about/how-unstoppable-wallet-works.md -------------------------------------------------------------------------------- /src/faq/fa/about/what-can-be-done-with-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/about/what-can-be-done-with-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/fa/about/what-happens-if-unstoppable-app-goes-down.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/about/what-happens-if-unstoppable-app-goes-down.md -------------------------------------------------------------------------------- /src/faq/fa/about/what-is-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/about/what-is-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/fa/about/where-to-download-unstoppable-wallet-from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/about/where-to-download-unstoppable-wallet-from.md -------------------------------------------------------------------------------- /src/faq/fa/about/who-is-building-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/about/who-is-building-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/fa/about/why-choose-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/about/why-choose-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/fa/balance/how-to-change-base-currency-for-the-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/balance/how-to-change-base-currency-for-the-wallet.md -------------------------------------------------------------------------------- /src/faq/fa/balance/how-to-hide-show-wallet-balance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/balance/how-to-hide-show-wallet-balance.md -------------------------------------------------------------------------------- /src/faq/fa/balance/what-a-triangle-alert-icon-on-a-coin-means.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/balance/what-a-triangle-alert-icon-on-a-coin-means.md -------------------------------------------------------------------------------- /src/faq/fa/balance/what-syncing-status-on-a-coin-means.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/balance/what-syncing-status-on-a-coin-means.md -------------------------------------------------------------------------------- /src/faq/fa/balance/why-balance-appears-dimmed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/balance/why-balance-appears-dimmed.md -------------------------------------------------------------------------------- /src/faq/fa/binance/what-are-bep2-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/binance/what-are-bep2-tokens.md -------------------------------------------------------------------------------- /src/faq/fa/binance/what-are-bep20-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/binance/what-are-bep20-tokens.md -------------------------------------------------------------------------------- /src/faq/fa/binance/what-is-binance-smart-chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/binance/what-is-binance-smart-chain.md -------------------------------------------------------------------------------- /src/faq/fa/bitcoin/how-to-cancel-a-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/bitcoin/how-to-cancel-a-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/fa/bitcoin/how-to-resend-a-failed-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/bitcoin/how-to-resend-a-failed-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/fa/bitcoin/how-to-send-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/bitcoin/how-to-send-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/fa/bitcoin/what-do-bip44-bip49-bip84-mean-in-bitcoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/bitcoin/what-do-bip44-bip49-bip84-mean-in-bitcoin.md -------------------------------------------------------------------------------- /src/faq/fa/bitcoin/why-bitcoin-payment-adderess-keeps-changing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/bitcoin/why-bitcoin-payment-adderess-keeps-changing.md -------------------------------------------------------------------------------- /src/faq/fa/bitcoin/why-bitcoin-transaction-stays-pending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/bitcoin/why-bitcoin-transaction-stays-pending.md -------------------------------------------------------------------------------- /src/faq/fa/dexes-swaps/what-are-cryptocurrency-swaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/dexes-swaps/what-are-cryptocurrency-swaps.md -------------------------------------------------------------------------------- /src/faq/fa/dexes-swaps/which-dexes-supported-in-unstoppable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/dexes-swaps/which-dexes-supported-in-unstoppable.md -------------------------------------------------------------------------------- /src/faq/fa/dexes-swaps/why-swap-fees-on-ethereum-are-so-high.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/dexes-swaps/why-swap-fees-on-ethereum-are-so-high.md -------------------------------------------------------------------------------- /src/faq/fa/dexes-swaps/why-unstoppable-supports-only-dexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/dexes-swaps/why-unstoppable-supports-only-dexes.md -------------------------------------------------------------------------------- /src/faq/fa/ethereum/how-to-send-ethereum-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/ethereum/how-to-send-ethereum-transaction.md -------------------------------------------------------------------------------- /src/faq/fa/ethereum/what-are-erc20-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/ethereum/what-are-erc20-tokens.md -------------------------------------------------------------------------------- /src/faq/fa/ethereum/what-are-gas-gasprice-gaslimit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/ethereum/what-are-gas-gasprice-gaslimit.md -------------------------------------------------------------------------------- /src/faq/fa/ethereum/what-is-an-ethereum-smart-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/ethereum/what-is-an-ethereum-smart-contract.md -------------------------------------------------------------------------------- /src/faq/fa/ethereum/when-ethereum-transaction-can-fail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/ethereum/when-ethereum-transaction-can-fail.md -------------------------------------------------------------------------------- /src/faq/fa/ethereum/why-eth-needed-to-send-erc20-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/ethereum/why-eth-needed-to-send-erc20-token.md -------------------------------------------------------------------------------- /src/faq/fa/ethereum/why-ethereum-transaction-stays-pending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/ethereum/why-ethereum-transaction-stays-pending.md -------------------------------------------------------------------------------- /src/faq/fa/ethereum/why-ethereum-transactions-are-so-expensive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/ethereum/why-ethereum-transactions-are-so-expensive.md -------------------------------------------------------------------------------- /src/faq/fa/management/how-to-backup-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/management/how-to-backup-wallet.md -------------------------------------------------------------------------------- /src/faq/fa/management/how-to-create-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/management/how-to-create-wallet.md -------------------------------------------------------------------------------- /src/faq/fa/management/how-to-delete-the-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/management/how-to-delete-the-wallet.md -------------------------------------------------------------------------------- /src/faq/fa/management/how-to-manage-multiple-wallets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/management/how-to-manage-multiple-wallets.md -------------------------------------------------------------------------------- /src/faq/fa/management/how-to-restore-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/management/how-to-restore-wallet.md -------------------------------------------------------------------------------- /src/faq/fa/management/migration_recommended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/management/migration_recommended.md -------------------------------------------------------------------------------- /src/faq/fa/management/migration_required.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/management/migration_required.md -------------------------------------------------------------------------------- /src/faq/fa/privacy/how-to-buy-cryptocurrency-anonymously.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/privacy/how-to-buy-cryptocurrency-anonymously.md -------------------------------------------------------------------------------- /src/faq/fa/privacy/how-using-tor-and-vpn-enhances-privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/privacy/how-using-tor-and-vpn-enhances-privacy.md -------------------------------------------------------------------------------- /src/faq/fa/security/how-unstoppable-keeps-funds-secure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/security/how-unstoppable-keeps-funds-secure.md -------------------------------------------------------------------------------- /src/faq/fa/security/what-is-mnemonic-passphrase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/security/what-is-mnemonic-passphrase.md -------------------------------------------------------------------------------- /src/faq/fa/security/what-is-mnemonic-phrase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/security/what-is-mnemonic-phrase.md -------------------------------------------------------------------------------- /src/faq/fa/security/what-steps-to-take-if-lost-my-phone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/security/what-steps-to-take-if-lost-my-phone.md -------------------------------------------------------------------------------- /src/faq/fa/transactions/can-a-user-send-transaction-to-self.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/transactions/can-a-user-send-transaction-to-self.md -------------------------------------------------------------------------------- /src/faq/fa/transactions/what-are-transactions-fee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fa/transactions/what-are-transactions-fee.md -------------------------------------------------------------------------------- /src/faq/fr/about/how-to-contact-unstoppable-team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/about/how-to-contact-unstoppable-team.md -------------------------------------------------------------------------------- /src/faq/fr/about/how-to-update-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/about/how-to-update-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/fr/about/how-unstoppable-makes-money.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/about/how-unstoppable-makes-money.md -------------------------------------------------------------------------------- /src/faq/fr/about/how-unstoppable-wallet-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/about/how-unstoppable-wallet-works.md -------------------------------------------------------------------------------- /src/faq/fr/about/what-can-be-done-with-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/about/what-can-be-done-with-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/fr/about/what-happens-if-unstoppable-app-goes-down.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/about/what-happens-if-unstoppable-app-goes-down.md -------------------------------------------------------------------------------- /src/faq/fr/about/what-is-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/about/what-is-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/fr/about/where-to-download-unstoppable-wallet-from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/about/where-to-download-unstoppable-wallet-from.md -------------------------------------------------------------------------------- /src/faq/fr/about/who-is-building-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/about/who-is-building-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/fr/about/why-choose-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/about/why-choose-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/fr/balance/how-to-change-base-currency-for-the-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/balance/how-to-change-base-currency-for-the-wallet.md -------------------------------------------------------------------------------- /src/faq/fr/balance/how-to-hide-show-wallet-balance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/balance/how-to-hide-show-wallet-balance.md -------------------------------------------------------------------------------- /src/faq/fr/balance/what-a-triangle-alert-icon-on-a-coin-means.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/balance/what-a-triangle-alert-icon-on-a-coin-means.md -------------------------------------------------------------------------------- /src/faq/fr/balance/what-syncing-status-on-a-coin-means.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/balance/what-syncing-status-on-a-coin-means.md -------------------------------------------------------------------------------- /src/faq/fr/balance/why-balance-appears-dimmed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/balance/why-balance-appears-dimmed.md -------------------------------------------------------------------------------- /src/faq/fr/binance/what-are-bep2-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/binance/what-are-bep2-tokens.md -------------------------------------------------------------------------------- /src/faq/fr/binance/what-are-bep20-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/binance/what-are-bep20-tokens.md -------------------------------------------------------------------------------- /src/faq/fr/binance/what-is-binance-smart-chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/binance/what-is-binance-smart-chain.md -------------------------------------------------------------------------------- /src/faq/fr/bitcoin/how-to-cancel-a-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/bitcoin/how-to-cancel-a-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/fr/bitcoin/how-to-resend-a-failed-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/bitcoin/how-to-resend-a-failed-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/fr/bitcoin/how-to-send-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/bitcoin/how-to-send-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/fr/bitcoin/what-do-bip44-bip49-bip84-mean-in-bitcoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/bitcoin/what-do-bip44-bip49-bip84-mean-in-bitcoin.md -------------------------------------------------------------------------------- /src/faq/fr/bitcoin/why-bitcoin-payment-adderess-keeps-changing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/bitcoin/why-bitcoin-payment-adderess-keeps-changing.md -------------------------------------------------------------------------------- /src/faq/fr/bitcoin/why-bitcoin-transaction-stays-pending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/bitcoin/why-bitcoin-transaction-stays-pending.md -------------------------------------------------------------------------------- /src/faq/fr/dexes-swaps/what-are-cryptocurrency-swaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/dexes-swaps/what-are-cryptocurrency-swaps.md -------------------------------------------------------------------------------- /src/faq/fr/dexes-swaps/which-dexes-supported-in-unstoppable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/dexes-swaps/which-dexes-supported-in-unstoppable.md -------------------------------------------------------------------------------- /src/faq/fr/dexes-swaps/why-swap-fees-on-ethereum-are-so-high.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/dexes-swaps/why-swap-fees-on-ethereum-are-so-high.md -------------------------------------------------------------------------------- /src/faq/fr/dexes-swaps/why-unstoppable-supports-only-dexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/dexes-swaps/why-unstoppable-supports-only-dexes.md -------------------------------------------------------------------------------- /src/faq/fr/ethereum/how-to-send-ethereum-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/ethereum/how-to-send-ethereum-transaction.md -------------------------------------------------------------------------------- /src/faq/fr/ethereum/what-are-erc20-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/ethereum/what-are-erc20-tokens.md -------------------------------------------------------------------------------- /src/faq/fr/ethereum/what-are-gas-gasprice-gaslimit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/ethereum/what-are-gas-gasprice-gaslimit.md -------------------------------------------------------------------------------- /src/faq/fr/ethereum/what-is-an-ethereum-smart-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/ethereum/what-is-an-ethereum-smart-contract.md -------------------------------------------------------------------------------- /src/faq/fr/ethereum/when-ethereum-transaction-can-fail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/ethereum/when-ethereum-transaction-can-fail.md -------------------------------------------------------------------------------- /src/faq/fr/ethereum/why-eth-needed-to-send-erc20-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/ethereum/why-eth-needed-to-send-erc20-token.md -------------------------------------------------------------------------------- /src/faq/fr/ethereum/why-ethereum-transaction-stays-pending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/ethereum/why-ethereum-transaction-stays-pending.md -------------------------------------------------------------------------------- /src/faq/fr/ethereum/why-ethereum-transactions-are-so-expensive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/ethereum/why-ethereum-transactions-are-so-expensive.md -------------------------------------------------------------------------------- /src/faq/fr/management/how-to-backup-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/management/how-to-backup-wallet.md -------------------------------------------------------------------------------- /src/faq/fr/management/how-to-create-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/management/how-to-create-wallet.md -------------------------------------------------------------------------------- /src/faq/fr/management/how-to-delete-the-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/management/how-to-delete-the-wallet.md -------------------------------------------------------------------------------- /src/faq/fr/management/how-to-manage-multiple-wallets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/management/how-to-manage-multiple-wallets.md -------------------------------------------------------------------------------- /src/faq/fr/management/how-to-restore-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/management/how-to-restore-wallet.md -------------------------------------------------------------------------------- /src/faq/fr/management/migration_recommended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/management/migration_recommended.md -------------------------------------------------------------------------------- /src/faq/fr/management/migration_required.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/management/migration_required.md -------------------------------------------------------------------------------- /src/faq/fr/privacy/how-to-buy-cryptocurrency-anonymously.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/privacy/how-to-buy-cryptocurrency-anonymously.md -------------------------------------------------------------------------------- /src/faq/fr/privacy/how-using-tor-and-vpn-enhances-privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/privacy/how-using-tor-and-vpn-enhances-privacy.md -------------------------------------------------------------------------------- /src/faq/fr/security/how-unstoppable-keeps-funds-secure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/security/how-unstoppable-keeps-funds-secure.md -------------------------------------------------------------------------------- /src/faq/fr/security/what-is-mnemonic-passphrase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/security/what-is-mnemonic-passphrase.md -------------------------------------------------------------------------------- /src/faq/fr/security/what-is-mnemonic-phrase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/security/what-is-mnemonic-phrase.md -------------------------------------------------------------------------------- /src/faq/fr/security/what-steps-to-take-if-lost-my-phone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/security/what-steps-to-take-if-lost-my-phone.md -------------------------------------------------------------------------------- /src/faq/fr/transactions/can-a-user-send-transaction-to-self.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/transactions/can-a-user-send-transaction-to-self.md -------------------------------------------------------------------------------- /src/faq/fr/transactions/what-are-transactions-fee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/fr/transactions/what-are-transactions-fee.md -------------------------------------------------------------------------------- /src/faq/ko/about/how-to-contact-unstoppable-team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/about/how-to-contact-unstoppable-team.md -------------------------------------------------------------------------------- /src/faq/ko/about/how-to-update-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/about/how-to-update-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/ko/about/how-unstoppable-makes-money.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/about/how-unstoppable-makes-money.md -------------------------------------------------------------------------------- /src/faq/ko/about/how-unstoppable-wallet-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/about/how-unstoppable-wallet-works.md -------------------------------------------------------------------------------- /src/faq/ko/about/what-can-be-done-with-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/about/what-can-be-done-with-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/ko/about/what-happens-if-unstoppable-app-goes-down.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/about/what-happens-if-unstoppable-app-goes-down.md -------------------------------------------------------------------------------- /src/faq/ko/about/what-is-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/about/what-is-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/ko/about/where-to-download-unstoppable-wallet-from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/about/where-to-download-unstoppable-wallet-from.md -------------------------------------------------------------------------------- /src/faq/ko/about/who-is-building-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/about/who-is-building-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/ko/about/why-choose-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/about/why-choose-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/ko/balance/how-to-change-base-currency-for-the-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/balance/how-to-change-base-currency-for-the-wallet.md -------------------------------------------------------------------------------- /src/faq/ko/balance/how-to-hide-show-wallet-balance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/balance/how-to-hide-show-wallet-balance.md -------------------------------------------------------------------------------- /src/faq/ko/balance/what-a-triangle-alert-icon-on-a-coin-means.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/balance/what-a-triangle-alert-icon-on-a-coin-means.md -------------------------------------------------------------------------------- /src/faq/ko/balance/what-syncing-status-on-a-coin-means.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/balance/what-syncing-status-on-a-coin-means.md -------------------------------------------------------------------------------- /src/faq/ko/balance/why-balance-appears-dimmed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/balance/why-balance-appears-dimmed.md -------------------------------------------------------------------------------- /src/faq/ko/binance/what-are-bep2-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/binance/what-are-bep2-tokens.md -------------------------------------------------------------------------------- /src/faq/ko/binance/what-are-bep20-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/binance/what-are-bep20-tokens.md -------------------------------------------------------------------------------- /src/faq/ko/binance/what-is-binance-smart-chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/binance/what-is-binance-smart-chain.md -------------------------------------------------------------------------------- /src/faq/ko/bitcoin/how-to-cancel-a-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/bitcoin/how-to-cancel-a-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/ko/bitcoin/how-to-resend-a-failed-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/bitcoin/how-to-resend-a-failed-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/ko/bitcoin/how-to-send-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/bitcoin/how-to-send-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/ko/bitcoin/what-do-bip44-bip49-bip84-mean-in-bitcoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/bitcoin/what-do-bip44-bip49-bip84-mean-in-bitcoin.md -------------------------------------------------------------------------------- /src/faq/ko/bitcoin/why-bitcoin-payment-adderess-keeps-changing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/bitcoin/why-bitcoin-payment-adderess-keeps-changing.md -------------------------------------------------------------------------------- /src/faq/ko/bitcoin/why-bitcoin-transaction-stays-pending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/bitcoin/why-bitcoin-transaction-stays-pending.md -------------------------------------------------------------------------------- /src/faq/ko/dexes-swaps/what-are-cryptocurrency-swaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/dexes-swaps/what-are-cryptocurrency-swaps.md -------------------------------------------------------------------------------- /src/faq/ko/dexes-swaps/which-dexes-supported-in-unstoppable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/dexes-swaps/which-dexes-supported-in-unstoppable.md -------------------------------------------------------------------------------- /src/faq/ko/dexes-swaps/why-swap-fees-on-ethereum-are-so-high.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/dexes-swaps/why-swap-fees-on-ethereum-are-so-high.md -------------------------------------------------------------------------------- /src/faq/ko/dexes-swaps/why-unstoppable-supports-only-dexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/dexes-swaps/why-unstoppable-supports-only-dexes.md -------------------------------------------------------------------------------- /src/faq/ko/ethereum/how-to-send-ethereum-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/ethereum/how-to-send-ethereum-transaction.md -------------------------------------------------------------------------------- /src/faq/ko/ethereum/what-are-erc20-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/ethereum/what-are-erc20-tokens.md -------------------------------------------------------------------------------- /src/faq/ko/ethereum/what-are-gas-gasprice-gaslimit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/ethereum/what-are-gas-gasprice-gaslimit.md -------------------------------------------------------------------------------- /src/faq/ko/ethereum/what-is-an-ethereum-smart-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/ethereum/what-is-an-ethereum-smart-contract.md -------------------------------------------------------------------------------- /src/faq/ko/ethereum/when-ethereum-transaction-can-fail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/ethereum/when-ethereum-transaction-can-fail.md -------------------------------------------------------------------------------- /src/faq/ko/ethereum/why-eth-needed-to-send-erc20-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/ethereum/why-eth-needed-to-send-erc20-token.md -------------------------------------------------------------------------------- /src/faq/ko/ethereum/why-ethereum-transaction-stays-pending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/ethereum/why-ethereum-transaction-stays-pending.md -------------------------------------------------------------------------------- /src/faq/ko/ethereum/why-ethereum-transactions-are-so-expensive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/ethereum/why-ethereum-transactions-are-so-expensive.md -------------------------------------------------------------------------------- /src/faq/ko/management/how-to-backup-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/management/how-to-backup-wallet.md -------------------------------------------------------------------------------- /src/faq/ko/management/how-to-create-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/management/how-to-create-wallet.md -------------------------------------------------------------------------------- /src/faq/ko/management/how-to-delete-the-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/management/how-to-delete-the-wallet.md -------------------------------------------------------------------------------- /src/faq/ko/management/how-to-manage-multiple-wallets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/management/how-to-manage-multiple-wallets.md -------------------------------------------------------------------------------- /src/faq/ko/management/how-to-restore-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/management/how-to-restore-wallet.md -------------------------------------------------------------------------------- /src/faq/ko/management/migration_recommended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/management/migration_recommended.md -------------------------------------------------------------------------------- /src/faq/ko/management/migration_required.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/management/migration_required.md -------------------------------------------------------------------------------- /src/faq/ko/privacy/how-to-buy-cryptocurrency-anonymously.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/privacy/how-to-buy-cryptocurrency-anonymously.md -------------------------------------------------------------------------------- /src/faq/ko/privacy/how-using-tor-and-vpn-enhances-privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/privacy/how-using-tor-and-vpn-enhances-privacy.md -------------------------------------------------------------------------------- /src/faq/ko/security/how-unstoppable-keeps-funds-secure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/security/how-unstoppable-keeps-funds-secure.md -------------------------------------------------------------------------------- /src/faq/ko/security/what-is-mnemonic-passphrase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/security/what-is-mnemonic-passphrase.md -------------------------------------------------------------------------------- /src/faq/ko/security/what-is-mnemonic-phrase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/security/what-is-mnemonic-phrase.md -------------------------------------------------------------------------------- /src/faq/ko/security/what-steps-to-take-if-lost-my-phone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/security/what-steps-to-take-if-lost-my-phone.md -------------------------------------------------------------------------------- /src/faq/ko/transactions/can-a-user-send-transaction-to-self.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/transactions/can-a-user-send-transaction-to-self.md -------------------------------------------------------------------------------- /src/faq/ko/transactions/what-are-transactions-fee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ko/transactions/what-are-transactions-fee.md -------------------------------------------------------------------------------- /src/faq/pt-rBR/migration_recommended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/pt-rBR/migration_recommended.md -------------------------------------------------------------------------------- /src/faq/pt-rBR/migration_required.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/pt-rBR/migration_required.md -------------------------------------------------------------------------------- /src/faq/ru/about/how-to-contact-unstoppable-team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/about/how-to-contact-unstoppable-team.md -------------------------------------------------------------------------------- /src/faq/ru/about/how-to-update-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/about/how-to-update-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/ru/about/how-unstoppable-makes-money.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/about/how-unstoppable-makes-money.md -------------------------------------------------------------------------------- /src/faq/ru/about/how-unstoppable-wallet-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/about/how-unstoppable-wallet-works.md -------------------------------------------------------------------------------- /src/faq/ru/about/what-can-be-done-with-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/about/what-can-be-done-with-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/ru/about/what-happens-if-unstoppable-app-goes-down.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/about/what-happens-if-unstoppable-app-goes-down.md -------------------------------------------------------------------------------- /src/faq/ru/about/what-is-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/about/what-is-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/ru/about/where-to-download-unstoppable-wallet-from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/about/where-to-download-unstoppable-wallet-from.md -------------------------------------------------------------------------------- /src/faq/ru/about/who-is-building-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/about/who-is-building-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/ru/about/why-choose-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/about/why-choose-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/ru/balance/how-to-change-base-currency-for-the-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/balance/how-to-change-base-currency-for-the-wallet.md -------------------------------------------------------------------------------- /src/faq/ru/balance/how-to-hide-show-wallet-balance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/balance/how-to-hide-show-wallet-balance.md -------------------------------------------------------------------------------- /src/faq/ru/balance/what-a-triangle-alert-icon-on-a-coin-means.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/balance/what-a-triangle-alert-icon-on-a-coin-means.md -------------------------------------------------------------------------------- /src/faq/ru/balance/what-syncing-status-on-a-coin-means.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/balance/what-syncing-status-on-a-coin-means.md -------------------------------------------------------------------------------- /src/faq/ru/balance/why-balance-appears-dimmed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/balance/why-balance-appears-dimmed.md -------------------------------------------------------------------------------- /src/faq/ru/binance/what-are-bep2-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/binance/what-are-bep2-tokens.md -------------------------------------------------------------------------------- /src/faq/ru/binance/what-are-bep20-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/binance/what-are-bep20-tokens.md -------------------------------------------------------------------------------- /src/faq/ru/binance/what-is-binance-smart-chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/binance/what-is-binance-smart-chain.md -------------------------------------------------------------------------------- /src/faq/ru/bitcoin/how-to-cancel-a-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/bitcoin/how-to-cancel-a-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/ru/bitcoin/how-to-resend-a-failed-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/bitcoin/how-to-resend-a-failed-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/ru/bitcoin/how-to-send-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/bitcoin/how-to-send-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/ru/bitcoin/what-do-bip44-bip49-bip84-mean-in-bitcoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/bitcoin/what-do-bip44-bip49-bip84-mean-in-bitcoin.md -------------------------------------------------------------------------------- /src/faq/ru/bitcoin/why-bitcoin-payment-adderess-keeps-changing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/bitcoin/why-bitcoin-payment-adderess-keeps-changing.md -------------------------------------------------------------------------------- /src/faq/ru/bitcoin/why-bitcoin-transaction-stays-pending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/bitcoin/why-bitcoin-transaction-stays-pending.md -------------------------------------------------------------------------------- /src/faq/ru/dexes-swaps/what-are-cryptocurrency-swaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/dexes-swaps/what-are-cryptocurrency-swaps.md -------------------------------------------------------------------------------- /src/faq/ru/dexes-swaps/which-dexes-supported-in-unstoppable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/dexes-swaps/which-dexes-supported-in-unstoppable.md -------------------------------------------------------------------------------- /src/faq/ru/dexes-swaps/why-swap-fees-on-ethereum-are-so-high.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/dexes-swaps/why-swap-fees-on-ethereum-are-so-high.md -------------------------------------------------------------------------------- /src/faq/ru/dexes-swaps/why-unstoppable-supports-only-dexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/dexes-swaps/why-unstoppable-supports-only-dexes.md -------------------------------------------------------------------------------- /src/faq/ru/ethereum/how-to-send-ethereum-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/ethereum/how-to-send-ethereum-transaction.md -------------------------------------------------------------------------------- /src/faq/ru/ethereum/what-are-erc20-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/ethereum/what-are-erc20-tokens.md -------------------------------------------------------------------------------- /src/faq/ru/ethereum/what-are-gas-gasprice-gaslimit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/ethereum/what-are-gas-gasprice-gaslimit.md -------------------------------------------------------------------------------- /src/faq/ru/ethereum/what-is-an-ethereum-smart-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/ethereum/what-is-an-ethereum-smart-contract.md -------------------------------------------------------------------------------- /src/faq/ru/ethereum/when-ethereum-transaction-can-fail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/ethereum/when-ethereum-transaction-can-fail.md -------------------------------------------------------------------------------- /src/faq/ru/ethereum/why-eth-needed-to-send-erc20-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/ethereum/why-eth-needed-to-send-erc20-token.md -------------------------------------------------------------------------------- /src/faq/ru/ethereum/why-ethereum-transaction-stays-pending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/ethereum/why-ethereum-transaction-stays-pending.md -------------------------------------------------------------------------------- /src/faq/ru/ethereum/why-ethereum-transactions-are-so-expensive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/ethereum/why-ethereum-transactions-are-so-expensive.md -------------------------------------------------------------------------------- /src/faq/ru/management/how-to-backup-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/management/how-to-backup-wallet.md -------------------------------------------------------------------------------- /src/faq/ru/management/how-to-create-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/management/how-to-create-wallet.md -------------------------------------------------------------------------------- /src/faq/ru/management/how-to-delete-the-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/management/how-to-delete-the-wallet.md -------------------------------------------------------------------------------- /src/faq/ru/management/how-to-manage-multiple-wallets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/management/how-to-manage-multiple-wallets.md -------------------------------------------------------------------------------- /src/faq/ru/management/how-to-restore-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/management/how-to-restore-wallet.md -------------------------------------------------------------------------------- /src/faq/ru/management/migration_recommended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/management/migration_recommended.md -------------------------------------------------------------------------------- /src/faq/ru/management/migration_required.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/management/migration_required.md -------------------------------------------------------------------------------- /src/faq/ru/privacy/how-to-buy-cryptocurrency-anonymously.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/privacy/how-to-buy-cryptocurrency-anonymously.md -------------------------------------------------------------------------------- /src/faq/ru/privacy/how-using-tor-and-vpn-enhances-privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/privacy/how-using-tor-and-vpn-enhances-privacy.md -------------------------------------------------------------------------------- /src/faq/ru/security/how-unstoppable-keeps-funds-secure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/security/how-unstoppable-keeps-funds-secure.md -------------------------------------------------------------------------------- /src/faq/ru/security/what-is-mnemonic-passphrase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/security/what-is-mnemonic-passphrase.md -------------------------------------------------------------------------------- /src/faq/ru/security/what-is-mnemonic-phrase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/security/what-is-mnemonic-phrase.md -------------------------------------------------------------------------------- /src/faq/ru/security/what-steps-to-take-if-lost-my-phone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/security/what-steps-to-take-if-lost-my-phone.md -------------------------------------------------------------------------------- /src/faq/ru/transactions/can-a-user-send-transaction-to-self.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/transactions/can-a-user-send-transaction-to-self.md -------------------------------------------------------------------------------- /src/faq/ru/transactions/what-are-transactions-fee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/ru/transactions/what-are-transactions-fee.md -------------------------------------------------------------------------------- /src/faq/tr/about/how-to-contact-unstoppable-team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/about/how-to-contact-unstoppable-team.md -------------------------------------------------------------------------------- /src/faq/tr/about/how-to-update-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/about/how-to-update-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/tr/about/how-unstoppable-makes-money.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/about/how-unstoppable-makes-money.md -------------------------------------------------------------------------------- /src/faq/tr/about/how-unstoppable-wallet-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/about/how-unstoppable-wallet-works.md -------------------------------------------------------------------------------- /src/faq/tr/about/what-can-be-done-with-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/about/what-can-be-done-with-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/tr/about/what-happens-if-unstoppable-app-goes-down.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/about/what-happens-if-unstoppable-app-goes-down.md -------------------------------------------------------------------------------- /src/faq/tr/about/what-is-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/about/what-is-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/tr/about/where-to-download-unstoppable-wallet-from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/about/where-to-download-unstoppable-wallet-from.md -------------------------------------------------------------------------------- /src/faq/tr/about/who-is-building-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/about/who-is-building-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/tr/about/why-choose-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/about/why-choose-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/tr/balance/how-to-change-base-currency-for-the-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/balance/how-to-change-base-currency-for-the-wallet.md -------------------------------------------------------------------------------- /src/faq/tr/balance/how-to-hide-show-wallet-balance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/balance/how-to-hide-show-wallet-balance.md -------------------------------------------------------------------------------- /src/faq/tr/balance/what-a-triangle-alert-icon-on-a-coin-means.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/balance/what-a-triangle-alert-icon-on-a-coin-means.md -------------------------------------------------------------------------------- /src/faq/tr/balance/what-syncing-status-on-a-coin-means.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/balance/what-syncing-status-on-a-coin-means.md -------------------------------------------------------------------------------- /src/faq/tr/balance/why-balance-appears-dimmed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/balance/why-balance-appears-dimmed.md -------------------------------------------------------------------------------- /src/faq/tr/binance/what-are-bep2-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/binance/what-are-bep2-tokens.md -------------------------------------------------------------------------------- /src/faq/tr/binance/what-are-bep20-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/binance/what-are-bep20-tokens.md -------------------------------------------------------------------------------- /src/faq/tr/binance/what-is-binance-smart-chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/binance/what-is-binance-smart-chain.md -------------------------------------------------------------------------------- /src/faq/tr/bitcoin/how-to-cancel-a-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/bitcoin/how-to-cancel-a-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/tr/bitcoin/how-to-resend-a-failed-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/bitcoin/how-to-resend-a-failed-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/tr/bitcoin/how-to-send-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/bitcoin/how-to-send-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/tr/bitcoin/what-do-bip44-bip49-bip84-mean-in-bitcoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/bitcoin/what-do-bip44-bip49-bip84-mean-in-bitcoin.md -------------------------------------------------------------------------------- /src/faq/tr/bitcoin/why-bitcoin-payment-adderess-keeps-changing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/bitcoin/why-bitcoin-payment-adderess-keeps-changing.md -------------------------------------------------------------------------------- /src/faq/tr/bitcoin/why-bitcoin-transaction-stays-pending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/bitcoin/why-bitcoin-transaction-stays-pending.md -------------------------------------------------------------------------------- /src/faq/tr/dexes-swaps/what-are-cryptocurrency-swaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/dexes-swaps/what-are-cryptocurrency-swaps.md -------------------------------------------------------------------------------- /src/faq/tr/dexes-swaps/which-dexes-supported-in-unstoppable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/dexes-swaps/which-dexes-supported-in-unstoppable.md -------------------------------------------------------------------------------- /src/faq/tr/dexes-swaps/why-swap-fees-on-ethereum-are-so-high.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/dexes-swaps/why-swap-fees-on-ethereum-are-so-high.md -------------------------------------------------------------------------------- /src/faq/tr/dexes-swaps/why-unstoppable-supports-only-dexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/dexes-swaps/why-unstoppable-supports-only-dexes.md -------------------------------------------------------------------------------- /src/faq/tr/ethereum/how-to-send-ethereum-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/ethereum/how-to-send-ethereum-transaction.md -------------------------------------------------------------------------------- /src/faq/tr/ethereum/what-are-erc20-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/ethereum/what-are-erc20-tokens.md -------------------------------------------------------------------------------- /src/faq/tr/ethereum/what-are-gas-gasprice-gaslimit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/ethereum/what-are-gas-gasprice-gaslimit.md -------------------------------------------------------------------------------- /src/faq/tr/ethereum/what-is-an-ethereum-smart-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/ethereum/what-is-an-ethereum-smart-contract.md -------------------------------------------------------------------------------- /src/faq/tr/ethereum/when-ethereum-transaction-can-fail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/ethereum/when-ethereum-transaction-can-fail.md -------------------------------------------------------------------------------- /src/faq/tr/ethereum/why-eth-needed-to-send-erc20-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/ethereum/why-eth-needed-to-send-erc20-token.md -------------------------------------------------------------------------------- /src/faq/tr/ethereum/why-ethereum-transaction-stays-pending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/ethereum/why-ethereum-transaction-stays-pending.md -------------------------------------------------------------------------------- /src/faq/tr/ethereum/why-ethereum-transactions-are-so-expensive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/ethereum/why-ethereum-transactions-are-so-expensive.md -------------------------------------------------------------------------------- /src/faq/tr/management/how-to-backup-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/management/how-to-backup-wallet.md -------------------------------------------------------------------------------- /src/faq/tr/management/how-to-create-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/management/how-to-create-wallet.md -------------------------------------------------------------------------------- /src/faq/tr/management/how-to-delete-the-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/management/how-to-delete-the-wallet.md -------------------------------------------------------------------------------- /src/faq/tr/management/how-to-manage-multiple-wallets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/management/how-to-manage-multiple-wallets.md -------------------------------------------------------------------------------- /src/faq/tr/management/how-to-restore-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/management/how-to-restore-wallet.md -------------------------------------------------------------------------------- /src/faq/tr/management/migration_recommended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/management/migration_recommended.md -------------------------------------------------------------------------------- /src/faq/tr/management/migration_required.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/management/migration_required.md -------------------------------------------------------------------------------- /src/faq/tr/privacy/how-to-buy-cryptocurrency-anonymously.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/privacy/how-to-buy-cryptocurrency-anonymously.md -------------------------------------------------------------------------------- /src/faq/tr/privacy/how-using-tor-and-vpn-enhances-privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/privacy/how-using-tor-and-vpn-enhances-privacy.md -------------------------------------------------------------------------------- /src/faq/tr/security/how-unstoppable-keeps-funds-secure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/security/how-unstoppable-keeps-funds-secure.md -------------------------------------------------------------------------------- /src/faq/tr/security/what-is-mnemonic-passphrase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/security/what-is-mnemonic-passphrase.md -------------------------------------------------------------------------------- /src/faq/tr/security/what-is-mnemonic-phrase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/security/what-is-mnemonic-phrase.md -------------------------------------------------------------------------------- /src/faq/tr/security/what-steps-to-take-if-lost-my-phone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/security/what-steps-to-take-if-lost-my-phone.md -------------------------------------------------------------------------------- /src/faq/tr/transactions/can-a-user-send-transaction-to-self.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/transactions/can-a-user-send-transaction-to-self.md -------------------------------------------------------------------------------- /src/faq/tr/transactions/what-are-transactions-fee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/tr/transactions/what-are-transactions-fee.md -------------------------------------------------------------------------------- /src/faq/zh/about/how-to-contact-unstoppable-team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/about/how-to-contact-unstoppable-team.md -------------------------------------------------------------------------------- /src/faq/zh/about/how-to-update-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/about/how-to-update-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/zh/about/how-unstoppable-makes-money.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/about/how-unstoppable-makes-money.md -------------------------------------------------------------------------------- /src/faq/zh/about/how-unstoppable-wallet-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/about/how-unstoppable-wallet-works.md -------------------------------------------------------------------------------- /src/faq/zh/about/what-can-be-done-with-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/about/what-can-be-done-with-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/zh/about/what-happens-if-unstoppable-app-goes-down.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/about/what-happens-if-unstoppable-app-goes-down.md -------------------------------------------------------------------------------- /src/faq/zh/about/what-is-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/about/what-is-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/zh/about/where-to-download-unstoppable-wallet-from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/about/where-to-download-unstoppable-wallet-from.md -------------------------------------------------------------------------------- /src/faq/zh/about/who-is-building-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/about/who-is-building-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/zh/about/why-choose-unstoppable-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/about/why-choose-unstoppable-wallet.md -------------------------------------------------------------------------------- /src/faq/zh/balance/how-to-change-base-currency-for-the-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/balance/how-to-change-base-currency-for-the-wallet.md -------------------------------------------------------------------------------- /src/faq/zh/balance/how-to-hide-show-wallet-balance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/balance/how-to-hide-show-wallet-balance.md -------------------------------------------------------------------------------- /src/faq/zh/balance/what-a-triangle-alert-icon-on-a-coin-means.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/balance/what-a-triangle-alert-icon-on-a-coin-means.md -------------------------------------------------------------------------------- /src/faq/zh/balance/what-syncing-status-on-a-coin-means.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/balance/what-syncing-status-on-a-coin-means.md -------------------------------------------------------------------------------- /src/faq/zh/balance/why-balance-appears-dimmed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/balance/why-balance-appears-dimmed.md -------------------------------------------------------------------------------- /src/faq/zh/binance/what-are-bep2-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/binance/what-are-bep2-tokens.md -------------------------------------------------------------------------------- /src/faq/zh/binance/what-are-bep20-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/binance/what-are-bep20-tokens.md -------------------------------------------------------------------------------- /src/faq/zh/binance/what-is-binance-smart-chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/binance/what-is-binance-smart-chain.md -------------------------------------------------------------------------------- /src/faq/zh/bitcoin/how-to-cancel-a-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/bitcoin/how-to-cancel-a-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/zh/bitcoin/how-to-resend-a-failed-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/bitcoin/how-to-resend-a-failed-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/zh/bitcoin/how-to-send-bitcoin-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/bitcoin/how-to-send-bitcoin-transaction.md -------------------------------------------------------------------------------- /src/faq/zh/bitcoin/what-do-bip44-bip49-bip84-mean-in-bitcoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/bitcoin/what-do-bip44-bip49-bip84-mean-in-bitcoin.md -------------------------------------------------------------------------------- /src/faq/zh/bitcoin/why-bitcoin-payment-adderess-keeps-changing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/bitcoin/why-bitcoin-payment-adderess-keeps-changing.md -------------------------------------------------------------------------------- /src/faq/zh/bitcoin/why-bitcoin-transaction-stays-pending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/bitcoin/why-bitcoin-transaction-stays-pending.md -------------------------------------------------------------------------------- /src/faq/zh/dexes-swaps/what-are-cryptocurrency-swaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/dexes-swaps/what-are-cryptocurrency-swaps.md -------------------------------------------------------------------------------- /src/faq/zh/dexes-swaps/which-dexes-supported-in-unstoppable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/dexes-swaps/which-dexes-supported-in-unstoppable.md -------------------------------------------------------------------------------- /src/faq/zh/dexes-swaps/why-swap-fees-on-ethereum-are-so-high.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/dexes-swaps/why-swap-fees-on-ethereum-are-so-high.md -------------------------------------------------------------------------------- /src/faq/zh/dexes-swaps/why-unstoppable-supports-only-dexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/dexes-swaps/why-unstoppable-supports-only-dexes.md -------------------------------------------------------------------------------- /src/faq/zh/ethereum/how-to-send-ethereum-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/ethereum/how-to-send-ethereum-transaction.md -------------------------------------------------------------------------------- /src/faq/zh/ethereum/what-are-erc20-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/ethereum/what-are-erc20-tokens.md -------------------------------------------------------------------------------- /src/faq/zh/ethereum/what-are-gas-gasprice-gaslimit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/ethereum/what-are-gas-gasprice-gaslimit.md -------------------------------------------------------------------------------- /src/faq/zh/ethereum/what-is-an-ethereum-smart-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/ethereum/what-is-an-ethereum-smart-contract.md -------------------------------------------------------------------------------- /src/faq/zh/ethereum/when-ethereum-transaction-can-fail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/ethereum/when-ethereum-transaction-can-fail.md -------------------------------------------------------------------------------- /src/faq/zh/ethereum/why-eth-needed-to-send-erc20-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/ethereum/why-eth-needed-to-send-erc20-token.md -------------------------------------------------------------------------------- /src/faq/zh/ethereum/why-ethereum-transaction-stays-pending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/ethereum/why-ethereum-transaction-stays-pending.md -------------------------------------------------------------------------------- /src/faq/zh/ethereum/why-ethereum-transactions-are-so-expensive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/ethereum/why-ethereum-transactions-are-so-expensive.md -------------------------------------------------------------------------------- /src/faq/zh/management/how-to-backup-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/management/how-to-backup-wallet.md -------------------------------------------------------------------------------- /src/faq/zh/management/how-to-create-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/management/how-to-create-wallet.md -------------------------------------------------------------------------------- /src/faq/zh/management/how-to-delete-the-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/management/how-to-delete-the-wallet.md -------------------------------------------------------------------------------- /src/faq/zh/management/how-to-manage-multiple-wallets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/management/how-to-manage-multiple-wallets.md -------------------------------------------------------------------------------- /src/faq/zh/management/how-to-restore-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/management/how-to-restore-wallet.md -------------------------------------------------------------------------------- /src/faq/zh/management/migration_recommended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/management/migration_recommended.md -------------------------------------------------------------------------------- /src/faq/zh/management/migration_required.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/management/migration_required.md -------------------------------------------------------------------------------- /src/faq/zh/privacy/how-to-buy-cryptocurrency-anonymously.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/privacy/how-to-buy-cryptocurrency-anonymously.md -------------------------------------------------------------------------------- /src/faq/zh/privacy/how-using-tor-and-vpn-enhances-privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/privacy/how-using-tor-and-vpn-enhances-privacy.md -------------------------------------------------------------------------------- /src/faq/zh/security/how-unstoppable-keeps-funds-secure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/security/how-unstoppable-keeps-funds-secure.md -------------------------------------------------------------------------------- /src/faq/zh/security/what-is-mnemonic-passphrase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/security/what-is-mnemonic-passphrase.md -------------------------------------------------------------------------------- /src/faq/zh/security/what-is-mnemonic-phrase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/security/what-is-mnemonic-phrase.md -------------------------------------------------------------------------------- /src/faq/zh/security/what-steps-to-take-if-lost-my-phone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/security/what-steps-to-take-if-lost-my-phone.md -------------------------------------------------------------------------------- /src/faq/zh/transactions/can-a-user-send-transaction-to-self.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/transactions/can-a-user-send-transaction-to-self.md -------------------------------------------------------------------------------- /src/faq/zh/transactions/what-are-transactions-fee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/src/faq/zh/transactions/what-are-transactions-fee.md -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horizontalsystems/Unstoppable-Wallet-Website/HEAD/yarn.lock --------------------------------------------------------------------------------