├── .gitignore ├── .release-it.json ├── LICENSE.md ├── README.md ├── package.json ├── package.sh ├── public ├── index.html ├── logo.png └── robots.txt └── src ├── App.css ├── App.js ├── components ├── StepOne │ └── index.js ├── StepThree │ ├── EthereumEscrowInstructions │ │ └── index.js │ ├── ExploreAddresses │ │ ├── AddressRow │ │ │ ├── CopyButton │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── SearchBar │ │ │ └── index.js │ │ └── index.js │ ├── ExploreEscrow │ │ └── index.js │ └── index.js └── StepTwo │ ├── BCH.svg │ ├── BTC.svg │ ├── DASH.svg │ ├── ETH.svg │ ├── LTC.svg │ └── index.js ├── images ├── CheckMark.svg ├── CopyIcon.svg └── UploadIcon.svg ├── index.css └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/.gitignore -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/.release-it.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/package.json -------------------------------------------------------------------------------- /package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/package.sh -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/StepOne/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/src/components/StepOne/index.js -------------------------------------------------------------------------------- /src/components/StepThree/EthereumEscrowInstructions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/src/components/StepThree/EthereumEscrowInstructions/index.js -------------------------------------------------------------------------------- /src/components/StepThree/ExploreAddresses/AddressRow/CopyButton/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/src/components/StepThree/ExploreAddresses/AddressRow/CopyButton/index.js -------------------------------------------------------------------------------- /src/components/StepThree/ExploreAddresses/AddressRow/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/src/components/StepThree/ExploreAddresses/AddressRow/index.js -------------------------------------------------------------------------------- /src/components/StepThree/ExploreAddresses/SearchBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/src/components/StepThree/ExploreAddresses/SearchBar/index.js -------------------------------------------------------------------------------- /src/components/StepThree/ExploreAddresses/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/src/components/StepThree/ExploreAddresses/index.js -------------------------------------------------------------------------------- /src/components/StepThree/ExploreEscrow/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/src/components/StepThree/ExploreEscrow/index.js -------------------------------------------------------------------------------- /src/components/StepThree/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/src/components/StepThree/index.js -------------------------------------------------------------------------------- /src/components/StepTwo/BCH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/src/components/StepTwo/BCH.svg -------------------------------------------------------------------------------- /src/components/StepTwo/BTC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/src/components/StepTwo/BTC.svg -------------------------------------------------------------------------------- /src/components/StepTwo/DASH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/src/components/StepTwo/DASH.svg -------------------------------------------------------------------------------- /src/components/StepTwo/ETH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/src/components/StepTwo/ETH.svg -------------------------------------------------------------------------------- /src/components/StepTwo/LTC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/src/components/StepTwo/LTC.svg -------------------------------------------------------------------------------- /src/components/StepTwo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/src/components/StepTwo/index.js -------------------------------------------------------------------------------- /src/images/CheckMark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/src/images/CheckMark.svg -------------------------------------------------------------------------------- /src/images/CopyIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/src/images/CopyIcon.svg -------------------------------------------------------------------------------- /src/images/UploadIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/src/images/UploadIcon.svg -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalCryptos/LocalCryptosWalletBackupExplorer/HEAD/src/index.js --------------------------------------------------------------------------------