├── .babelrc ├── .buckconfig ├── .eslintrc ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .nvmrc ├── .watchmanconfig ├── Assets ├── 0x.png ├── 0x.svg ├── alice-logo-new.png ├── alice-pic.png ├── alice-square.png ├── alice.png ├── anon-avatar.png ├── aragon.png ├── aragon.svg ├── augur-logo.png ├── avatar-black.png ├── avatar-grey.png ├── back-button.png ├── beer.png ├── bounties-avatar.png ├── bounties-avatar.svg ├── bounties-dashboard.png ├── bounties-dashboard.svg ├── bounties-explorer.png ├── bounties-explorer.svg ├── bounties-leaderboard.png ├── bounties-leaderboard.svg ├── bounties.png ├── camera-emoji.png ├── chat-black.png ├── chat-grey.png ├── clock-circular-outline.png ├── close.png ├── coinmarketcap.png ├── compass.png ├── compound.png ├── croissant.png ├── cryptokitties-cat.png ├── cryptokitties-tag.png ├── cryptokitties.png ├── dai.png ├── dai.svg ├── daostack.png ├── decentraland.png ├── dharma.png ├── district0x.png ├── dna.png ├── dydx.png ├── emoji-hamburger.png ├── enter-arrow.png ├── etheremon.png ├── ethereum.png ├── foam.png ├── fork-logo.png ├── fries.png ├── gitcoin.png ├── giveth.png ├── gnosis-logo.png ├── hamburger.png ├── heart-outline.png ├── home-black.png ├── home-grey.png ├── hotdog.png ├── house.png ├── hummingbot.png ├── instadapp.png ├── local-ethereum.png ├── localethereum-modal.png ├── localethereum.png ├── location.png ├── maps.png ├── money-bag.png ├── mycrypto.png ├── new-chat-logo.png ├── paperclip.png ├── pawprint.png ├── peepeth.png ├── pizza.png ├── plate.png ├── profpic1.png ├── profpic2.png ├── project-alice.png ├── puzzle.png ├── qantas-logo.png ├── radar-black.png ├── radar-chat.png ├── radar-r-white.png ├── red-car.png ├── search.png ├── send-button.png ├── settings.png ├── share.png ├── status-logo.png ├── sushi.png ├── synthetix-dashboard.png ├── synthetix-exchange.png ├── synthetix-mintr.png ├── synthetix-swap.png ├── synthetix.png ├── taco.png ├── trade.png ├── uniswap-down-arrow.png ├── uniswap-dropdown.png ├── uniswap-pool.png ├── uniswap-send.png ├── uniswap-swap.png ├── uniswap.png ├── veil.png └── wyre-1.png ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __tests__ └── App.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Graphik-Black.otf │ │ │ ├── Graphik-BlackItalic.otf │ │ │ ├── Graphik-Bold.otf │ │ │ ├── Graphik-BoldItalic.otf │ │ │ ├── Graphik-Extralight.otf │ │ │ ├── Graphik-ExtralightItalic.otf │ │ │ ├── Graphik-Light.otf │ │ │ ├── Graphik-LightItalic.otf │ │ │ ├── Graphik-Medium.otf │ │ │ ├── Graphik-MediumItalic.otf │ │ │ ├── Graphik-Regular.otf │ │ │ ├── Graphik-RegularItalic.otf │ │ │ ├── Graphik-Semibold.otf │ │ │ ├── Graphik-SemiboldItalic.otf │ │ │ ├── Graphik-Super.otf │ │ │ ├── Graphik-SuperItalic.otf │ │ │ ├── Graphik-Thin.otf │ │ │ ├── Graphik-ThinItalic.otf │ │ │ ├── SF-Pro-Display-Black.otf │ │ │ ├── SF-Pro-Display-BlackItalic.otf │ │ │ ├── SF-Pro-Display-Bold.otf │ │ │ ├── SF-Pro-Display-BoldItalic.otf │ │ │ ├── SF-Pro-Display-Heavy.otf │ │ │ ├── SF-Pro-Display-HeavyItalic.otf │ │ │ ├── SF-Pro-Display-Light.otf │ │ │ ├── SF-Pro-Display-LightItalic.otf │ │ │ ├── SF-Pro-Display-Medium.otf │ │ │ ├── SF-Pro-Display-MediumItalic.otf │ │ │ ├── SF-Pro-Display-Regular.otf │ │ │ ├── SF-Pro-Display-RegularItalic.otf │ │ │ ├── SF-Pro-Display-Semibold.otf │ │ │ ├── SF-Pro-Display-SemiboldItalic.otf │ │ │ ├── SF-Pro-Display-Thin.otf │ │ │ ├── SF-Pro-Display-ThinItalic.otf │ │ │ ├── SF-Pro-Display-Ultralight.otf │ │ │ ├── SF-Pro-Display-UltralightItalic.otf │ │ │ ├── SF-Pro-Text-Bold.otf │ │ │ ├── SF-Pro-Text-BoldItalic.otf │ │ │ ├── SF-Pro-Text-Heavy.otf │ │ │ ├── SF-Pro-Text-HeavyItalic.otf │ │ │ ├── SF-Pro-Text-Light.otf │ │ │ ├── SF-Pro-Text-LightItalic.otf │ │ │ ├── SF-Pro-Text-Medium.otf │ │ │ ├── SF-Pro-Text-MediumItalic.otf │ │ │ ├── SF-Pro-Text-Regular.otf │ │ │ ├── SF-Pro-Text-RegularItalic.otf │ │ │ ├── SF-Pro-Text-Semibold.otf │ │ │ ├── SF-Pro-Text-SemiboldItalic.otf │ │ │ ├── SFMono-Bold.otf │ │ │ ├── SFMono-BoldItalic.otf │ │ │ ├── SFMono-Heavy.otf │ │ │ ├── SFMono-HeavyItalic.otf │ │ │ ├── SFMono-Light.otf │ │ │ ├── SFMono-LightItalic.otf │ │ │ ├── SFMono-Medium.otf │ │ │ ├── SFMono-MediumItalic.otf │ │ │ ├── SFMono-Regular.otf │ │ │ ├── SFMono-RegularItalic.otf │ │ │ ├── SFMono-Semibold.otf │ │ │ └── SFMono-SemiboldItalic.otf │ │ ├── debug │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── java │ │ └── com │ │ │ └── balancewallet │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── staging │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── global.js ├── index.js ├── ios ├── Apps │ ├── Aragon │ │ └── index.js │ ├── Augur │ │ └── index.js │ ├── Bounties │ │ └── index.js │ ├── Compound │ │ └── index.js │ ├── Cryptokitties │ │ ├── Screens │ │ │ ├── KittyScreen.js │ │ │ └── MyKitties.js │ │ └── index.js │ ├── Decentraland │ │ └── index.js │ ├── Dharma │ │ └── index.js │ ├── Foam │ │ └── index.js │ ├── Gitcoin │ │ └── index.js │ ├── LocalEthereum │ │ └── index.js │ ├── MetaMultisig │ │ ├── Screens │ │ │ ├── KittyScreen.js │ │ │ └── MyKitties.js │ │ └── index.js │ ├── Peepeth │ │ └── index.js │ ├── Qantas │ │ └── index.js │ ├── RadarRelay │ │ └── index.js │ ├── Synthetix │ │ └── index.js │ ├── Uniswap │ │ ├── Screens │ │ │ ├── MyKitties.js │ │ │ └── TradeScreen.js │ │ └── index.js │ ├── Wyre │ │ └── index.js │ └── index.js ├── BalanceWallet.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── BalanceWallet-tvOS.xcscheme │ │ └── BalanceWallet.xcscheme ├── BalanceWallet.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── BalanceWallet │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── BalanceWallet.entitlements │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ └── ItunesArtwork@2x.png │ │ ├── Contents.json │ │ ├── Image.imageset │ │ │ ├── Contents.json │ │ │ ├── alice-launch-screen-1.png │ │ │ ├── alice-launch-screen-2.png │ │ │ └── alice-launch-screen.png │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── alice-launch-1125-2436.png │ │ │ ├── alice-launch-screen-1.png │ │ │ ├── alice-launch-screen-10.png │ │ │ ├── alice-launch-screen-2.png │ │ │ ├── alice-launch-screen-3.png │ │ │ ├── alice-launch-screen-4.png │ │ │ ├── alice-launch-screen-5.png │ │ │ ├── alice-launch-screen-6.png │ │ │ ├── alice-launch-screen-7.png │ │ │ ├── alice-launch-screen-8.png │ │ │ ├── alice-launch-screen-9.png │ │ │ └── alice-launch-screen.png │ ├── Info.plist │ └── main.m ├── BalanceWalletTests │ ├── BalanceWalletTests.m │ └── Info.plist ├── Frameworks │ ├── GoogleService-Info.plist │ ├── GoogleToolboxForMac.framework │ │ ├── GoogleToolboxForMac │ │ └── Modules │ │ │ └── module.modulemap │ ├── Protobuf.framework │ │ ├── Modules │ │ │ └── module.modulemap │ │ └── Protobuf │ └── nanopb.framework │ │ ├── Modules │ │ └── module.modulemap │ │ └── nanopb ├── Gemfile ├── Podfile ├── Podfile.lock └── fastlane │ ├── Appfile │ ├── Fastfile │ └── README.md ├── package.json ├── shim.js ├── src ├── App.js ├── AppABIs │ └── wethAbi.json ├── Apps │ ├── AppTemplate │ │ ├── Assets │ │ │ ├── bolt-white.png │ │ │ ├── bolt.png │ │ │ ├── list-white.png │ │ │ ├── list.png │ │ │ ├── radar-black.png │ │ │ ├── radar-r-white.png │ │ │ ├── star-empty.png │ │ │ ├── tune-white.png │ │ │ └── tune.png │ │ ├── Components │ │ │ ├── OrderModal.js │ │ │ └── TokenSelectModal.js │ │ ├── Screens │ │ │ ├── BuyAndSell.js │ │ │ ├── Deals.js │ │ │ ├── OrderBook.js │ │ │ └── TakeAway.js │ │ └── index.js │ ├── Aragon │ │ └── index.js │ ├── Augur │ │ └── index.js │ ├── Bounties │ │ └── index.js │ ├── Compound │ │ └── index.js │ ├── Cryptokitties │ │ ├── Screens │ │ │ ├── KittyScreen.js │ │ │ └── MyKitties.js │ │ └── index.js │ ├── Decentraland │ │ └── index.js │ ├── Dharma │ │ └── index.js │ ├── Foam │ │ ├── App.js │ │ ├── MapboxClient.js │ │ ├── assets │ │ │ ├── example.png │ │ │ ├── giphy.gif │ │ │ ├── grid_pattern.png │ │ │ ├── indoor_3d_map.json │ │ │ ├── nyc_geojson.json │ │ │ ├── radar.png │ │ │ ├── radar1.png │ │ │ ├── radar2.png │ │ │ ├── smiley_face.json │ │ │ └── test_pattern.jpg │ │ ├── components │ │ │ ├── ChoroplethLayerByZoomLevel.js │ │ │ ├── CreateOfflineRegion.js │ │ │ ├── CustomIcon.js │ │ │ ├── CustomVectorSource.js │ │ │ ├── DataDrivenCircleColors.js │ │ │ ├── DriveTheLine.js │ │ │ ├── EarthQuakes.js │ │ │ ├── FitBounds.js │ │ │ ├── FlyTo.js │ │ │ ├── GeoJSONSource.js │ │ │ ├── GetCenter.js │ │ │ ├── GetZoom.js │ │ │ ├── ImageOverlay.js │ │ │ ├── IndoorBuilding.js │ │ │ ├── PointInMapView.js │ │ │ ├── QueryAtPoint.js │ │ │ ├── QueryWithRect.js │ │ │ ├── SetBearing.js │ │ │ ├── SetPitch.js │ │ │ ├── SetUserLocationVerticalAlignment.js │ │ │ ├── SetUserTrackingModes.js │ │ │ ├── ShapeSourceIcon.js │ │ │ ├── ShowClick.js │ │ │ ├── ShowMap.js │ │ │ ├── ShowPointAnnotation.js │ │ │ ├── ShowRegionChange.js │ │ │ ├── TakeSnapshot.js │ │ │ ├── TakeSnapshotWithMap.js │ │ │ ├── TwoByTwo.js │ │ │ ├── UserLocationChange.js │ │ │ ├── WatercolorRasterTiles.js │ │ │ ├── YoYo.js │ │ │ └── common │ │ │ │ ├── BaseExamplePropTypes.js │ │ │ │ ├── Bubble.js │ │ │ │ ├── MapHeader.js │ │ │ │ ├── Page.js │ │ │ │ ├── PulseCircleLayer.js │ │ │ │ └── TabBarPage.js │ │ ├── index.js │ │ ├── styles │ │ │ ├── colors.js │ │ │ └── sheet.js │ │ └── utils │ │ │ ├── RouteSimulator.js │ │ │ └── index.js │ ├── Fork │ │ ├── Assets │ │ │ ├── close.png │ │ │ ├── cryptokitty.png │ │ │ └── eth-new-york.png │ │ ├── Components │ │ │ └── Modal.js │ │ ├── Screens │ │ │ ├── Confirmation.js │ │ │ ├── Deals.js │ │ │ ├── Menu.js │ │ │ ├── Restaurants.js │ │ │ └── TakeAway.js │ │ └── index.js │ ├── Gitcoin │ │ └── index.js │ ├── LocalEthereum │ │ └── index.js │ ├── MetaMultisig │ │ ├── Screens │ │ │ ├── KittyScreen.js │ │ │ └── MyKitties.js │ │ └── index.js │ ├── Peepeth │ │ └── index.js │ ├── Qantas │ │ └── index.js │ ├── RadarRelay │ │ ├── Assets │ │ │ ├── bolt-white.png │ │ │ ├── bolt.png │ │ │ ├── list-white.png │ │ │ ├── list.png │ │ │ ├── radar-black.png │ │ │ ├── radar-r-white.png │ │ │ ├── star-empty.png │ │ │ ├── tune-white.png │ │ │ └── tune.png │ │ ├── Components │ │ │ ├── OrderModal.js │ │ │ └── TokenSelectModal.js │ │ ├── Screens │ │ │ ├── BuyAndSell.js │ │ │ ├── Deals.js │ │ │ ├── OrderBook.js │ │ │ └── TakeAway.js │ │ └── index.js │ ├── Synthetix │ │ └── index.js │ ├── Uniswap │ │ ├── Screens │ │ │ ├── MyKitties.js │ │ │ └── TradeScreen.js │ │ ├── abi │ │ │ ├── erc20.json │ │ │ ├── erc20_symbol_bytes32.json │ │ │ ├── exchange.json │ │ │ └── factory.json │ │ ├── index.js │ │ ├── public │ │ │ ├── CNAME │ │ │ ├── _redirect │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── libraries │ │ │ │ └── qr-scanner │ │ │ │ │ └── qr-scanner-worker.min.js │ │ │ ├── locales │ │ │ │ ├── de.json │ │ │ │ ├── en.json │ │ │ │ ├── es-AR.json │ │ │ │ ├── es-US.json │ │ │ │ ├── ro.json │ │ │ │ ├── ru.json │ │ │ │ ├── zh-CN.json │ │ │ │ └── zh-TW.json │ │ │ ├── manifest.json │ │ │ └── 🦄.png │ │ └── src │ │ │ ├── abi │ │ │ ├── erc20.json │ │ │ ├── erc20_symbol_bytes32.json │ │ │ ├── exchange.json │ │ │ └── factory.json │ │ │ ├── assets │ │ │ └── images │ │ │ │ ├── arrow-down-blue.svg │ │ │ │ ├── arrow-down-grey.svg │ │ │ │ ├── brave-logo.svg │ │ │ │ ├── coinbase-wallet-logo.png │ │ │ │ ├── dropdown-blue.svg │ │ │ │ ├── dropdown.svg │ │ │ │ ├── dropup-blue.svg │ │ │ │ ├── ethereum-logo.svg │ │ │ │ ├── generic-token-logo.png │ │ │ │ ├── logo.png │ │ │ │ ├── magnifying-glass.svg │ │ │ │ ├── metamask-logo.svg │ │ │ │ ├── pending.svg │ │ │ │ ├── plus-blue.svg │ │ │ │ ├── plus-grey.svg │ │ │ │ ├── qr-code.svg │ │ │ │ └── trust-wallet-logo.svg │ │ │ ├── components │ │ │ ├── AddressInputPanel │ │ │ │ ├── address-input-panel.scss │ │ │ │ └── index.js │ │ │ ├── ContextualInfo │ │ │ │ ├── contextual-info.scss │ │ │ │ └── index.js │ │ │ ├── CurrencyInputPanel │ │ │ │ ├── currency-panel.scss │ │ │ │ └── index.js │ │ │ ├── Header │ │ │ │ ├── header.scss │ │ │ │ └── index.js │ │ │ ├── Logo │ │ │ │ ├── index.js │ │ │ │ └── logo.scss │ │ │ ├── Modal │ │ │ │ ├── index.js │ │ │ │ └── modal.scss │ │ │ ├── NavigationTabs │ │ │ │ ├── beta-message.scss │ │ │ │ └── index.js │ │ │ ├── OversizedPanel │ │ │ │ ├── index.js │ │ │ │ └── oversized-panel.scss │ │ │ ├── QrCode │ │ │ │ ├── index.js │ │ │ │ └── qr-code.scss │ │ │ ├── Tab │ │ │ │ ├── index.js │ │ │ │ └── tab.scss │ │ │ ├── TokenLogo │ │ │ │ └── index.js │ │ │ └── Web3Status │ │ │ │ ├── index.js │ │ │ │ └── web3-status.scss │ │ │ ├── constants │ │ │ ├── actionTypes.js │ │ │ └── currencyInputErrorTypes.js │ │ │ ├── ducks │ │ │ ├── addresses.js │ │ │ ├── app.js │ │ │ ├── index.js │ │ │ ├── pending.js │ │ │ └── web3connect.js │ │ │ ├── helpers │ │ │ ├── fuse │ │ │ │ ├── bitap │ │ │ │ │ ├── bitap_matched_indices.js │ │ │ │ │ ├── bitap_pattern_alphabet.js │ │ │ │ │ ├── bitap_regex_search.js │ │ │ │ │ ├── bitap_score.js │ │ │ │ │ ├── bitap_search.js │ │ │ │ │ └── index.js │ │ │ │ ├── helpers │ │ │ │ │ ├── deep_value.js │ │ │ │ │ └── is_array.js │ │ │ │ └── index.js │ │ │ ├── promise-utils.js │ │ │ ├── web3-promisfy.js │ │ │ └── web3-utils.js │ │ │ ├── i18n.js │ │ │ ├── index.js │ │ │ ├── index.scss │ │ │ ├── libraries │ │ │ └── qr-scanner.js │ │ │ ├── pages │ │ │ ├── App.js │ │ │ ├── App.scss │ │ │ ├── App.test.js │ │ │ ├── Pool │ │ │ │ ├── AddLiquidity.js │ │ │ │ ├── CreateExchange.js │ │ │ │ ├── ModeSelector.js │ │ │ │ ├── RemoveLiquidity.js │ │ │ │ ├── index.js │ │ │ │ └── pool.scss │ │ │ ├── Send │ │ │ │ ├── index.js │ │ │ │ └── send.scss │ │ │ └── Swap │ │ │ │ ├── index.js │ │ │ │ └── swap.scss │ │ │ ├── registerServiceWorker.js │ │ │ ├── store │ │ │ ├── index.js │ │ │ ├── initial-state.js │ │ │ ├── store.dev.js │ │ │ └── store.prod.js │ │ │ └── variables.scss │ ├── Veil │ │ ├── Assets │ │ │ ├── bolt-white.png │ │ │ ├── bolt.png │ │ │ ├── checkbox-blank.png │ │ │ ├── eth-currency.png │ │ │ ├── list-white.png │ │ │ ├── list.png │ │ │ ├── radar-black.png │ │ │ ├── radar-r-white.png │ │ │ ├── radio-unchecked.png │ │ │ ├── star-empty.png │ │ │ ├── tune-white.png │ │ │ └── tune.png │ │ ├── Components │ │ │ ├── OrderModal.js │ │ │ └── TokenSelectModal.js │ │ ├── Screens │ │ │ ├── BuyAndSell.js │ │ │ ├── Deals.js │ │ │ ├── Predictions.js │ │ │ └── TakeAway.js │ │ └── index.js │ ├── Wyre │ │ └── index.js │ └── index.js ├── HomePage.js ├── Main │ ├── Screens │ │ ├── AppsScreen.js │ │ ├── Chats │ │ │ ├── Chat.js │ │ │ ├── Chat2.js │ │ │ ├── Chat3.js │ │ │ ├── ChatScreen.js │ │ │ └── index.js │ │ └── PersonalScreen.js │ └── index.js ├── assets │ ├── avatar.png │ ├── backup-icon.png │ ├── balance-manager-avatar.png │ ├── balance-manager-avatar@2x.png │ ├── balance-manager-avatar@3x.png │ ├── balance-manager-logo.png │ ├── balance-manager-logo@2x.png │ ├── balance-manager-logo@3x.png │ ├── balance.png │ ├── camera.png │ ├── caret.png │ ├── confirm-menu-alt.png │ ├── confirm-menu.png │ ├── currency-icon.png │ ├── dai.png │ ├── dropdown-arrow.png │ ├── eth-icon.png │ ├── ethereum.png │ ├── faceid.png │ ├── fonts │ │ ├── Graphik-Black.otf │ │ ├── Graphik-BlackItalic.otf │ │ ├── Graphik-Bold.otf │ │ ├── Graphik-BoldItalic.otf │ │ ├── Graphik-Extralight.otf │ │ ├── Graphik-ExtralightItalic.otf │ │ ├── Graphik-Light.otf │ │ ├── Graphik-LightItalic.otf │ │ ├── Graphik-Medium.otf │ │ ├── Graphik-MediumItalic.otf │ │ ├── Graphik-Regular.otf │ │ ├── Graphik-RegularItalic.otf │ │ ├── Graphik-Semibold.otf │ │ ├── Graphik-SemiboldItalic.otf │ │ ├── Graphik-Super.otf │ │ ├── Graphik-SuperItalic.otf │ │ ├── Graphik-Thin.otf │ │ ├── Graphik-ThinItalic.otf │ │ ├── SF-Pro-Display-Black.otf │ │ ├── SF-Pro-Display-BlackItalic.otf │ │ ├── SF-Pro-Display-Bold.otf │ │ ├── SF-Pro-Display-BoldItalic.otf │ │ ├── SF-Pro-Display-Heavy.otf │ │ ├── SF-Pro-Display-HeavyItalic.otf │ │ ├── SF-Pro-Display-Light.otf │ │ ├── SF-Pro-Display-LightItalic.otf │ │ ├── SF-Pro-Display-Medium.otf │ │ ├── SF-Pro-Display-MediumItalic.otf │ │ ├── SF-Pro-Display-Regular.otf │ │ ├── SF-Pro-Display-RegularItalic.otf │ │ ├── SF-Pro-Display-Semibold.otf │ │ ├── SF-Pro-Display-SemiboldItalic.otf │ │ ├── SF-Pro-Display-Thin.otf │ │ ├── SF-Pro-Display-ThinItalic.otf │ │ ├── SF-Pro-Display-Ultralight.otf │ │ ├── SF-Pro-Display-UltralightItalic.otf │ │ ├── SF-Pro-Text-Bold.otf │ │ ├── SF-Pro-Text-BoldItalic.otf │ │ ├── SF-Pro-Text-Heavy.otf │ │ ├── SF-Pro-Text-HeavyItalic.otf │ │ ├── SF-Pro-Text-Light.otf │ │ ├── SF-Pro-Text-LightItalic.otf │ │ ├── SF-Pro-Text-Medium.otf │ │ ├── SF-Pro-Text-MediumItalic.otf │ │ ├── SF-Pro-Text-Regular.otf │ │ ├── SF-Pro-Text-RegularItalic.otf │ │ ├── SF-Pro-Text-Semibold.otf │ │ ├── SF-Pro-Text-SemiboldItalic.otf │ │ ├── SFMono-Bold.otf │ │ ├── SFMono-Heavy.otf │ │ ├── SFMono-Light.otf │ │ ├── SFMono-Medium.otf │ │ ├── SFMono-Regular.otf │ │ └── SFMono-Semibold.otf │ ├── landing-kitty03.png │ ├── language-icon.png │ ├── opensea.png │ ├── person-icon.png │ ├── scan-icon-alt.png │ ├── scan-icon@2x.png │ ├── scan-icon@3x.png │ ├── security-icon.png │ ├── seed-phrase-icon.png │ ├── seed-phrase-icon@2x.png │ ├── seed-phrase-icon@3x.png │ ├── send-background.png │ ├── send-button.png │ ├── settings-icon@2x.png │ ├── settings-icon@3x.png │ ├── simulator-fake-camera-image.jpg │ ├── transaction-button.png │ ├── wallet-icon@2x.png │ ├── wallet-icon@3x.png │ ├── walletconnect-logo-blue.png │ └── walletconnect-logo.png ├── components │ ├── ActivityIndicator.js │ ├── AddFundsInterstitial.js │ ├── AppVersionStamp.js │ ├── Avatar.js │ ├── BlurOverlay.js │ ├── ContextMenu.js │ ├── CopyTooltip.js │ ├── Divider.js │ ├── IconComponent.js │ ├── ImageWithCachedDimensions.js │ ├── InnerBorder.js │ ├── MessageSigningSection.js │ ├── Modal.js │ ├── OfflineBadge.js │ ├── QRCodeDisplay.js │ ├── SendFeedback.js │ ├── Shimmer.js │ ├── Tag.js │ ├── TouchableBackdrop.js │ ├── TransactionConfirmationSection.js │ ├── activity-list │ │ ├── ActivityList.js │ │ ├── ActivityListHeader.js │ │ ├── RecyclerActivityList.js │ │ └── index.js │ ├── alerts │ │ ├── Alert.js │ │ ├── BaseAlert.js │ │ ├── Prompt.js │ │ └── index.js │ ├── animations │ │ ├── ButtonPressAnimation.js │ │ ├── FadeInAnimation.js │ │ ├── SpinAnimation.js │ │ └── index.js │ ├── asset-list │ │ ├── AssetList.js │ │ ├── AssetListHeader.js │ │ ├── AssetListItem.js │ │ ├── AssetListItemSkeleton.js │ │ ├── AssetListSkeleton.js │ │ └── index.js │ ├── badge │ │ ├── Badge.js │ │ └── index.js │ ├── bubble-sheet │ │ ├── BubbleSheet.js │ │ └── index.js │ ├── buttons │ │ ├── BlockButton.js │ │ ├── Button.js │ │ ├── LongPressButton.js │ │ └── index.js │ ├── coin-icon │ │ ├── CoinIcon.js │ │ ├── RequestCoinIcon.js │ │ ├── RequestVendorLogoIcon.js │ │ └── index.js │ ├── coin-row │ │ ├── BalanceCoinRow.js │ │ ├── BalanceText.js │ │ ├── BottomRowText.js │ │ ├── CoinName.js │ │ ├── CoinRow.js │ │ ├── RequestCoinRow.js │ │ ├── SendCoinRow.js │ │ ├── TransactionCoinRow.js │ │ ├── TransactionStatusBadge.js │ │ └── index.js │ ├── expanded-state │ │ ├── FloatingPanel.js │ │ ├── FloatingPanels.js │ │ ├── TokenExpandedState.js │ │ ├── UniqueTokenExpandedState.js │ │ ├── asset-panel │ │ │ ├── AssetPanel.js │ │ │ ├── AssetPanelAction.js │ │ │ ├── AssetPanelHeader.js │ │ │ ├── AssetPanelInput.js │ │ │ └── index.js │ │ └── index.js │ ├── fab │ │ ├── FabWrapper.js │ │ ├── FloatingActionButton.js │ │ ├── SendFab.js │ │ └── index.js │ ├── fields │ │ ├── AddressField.js │ │ ├── UnderlineField.js │ │ └── index.js │ ├── header │ │ ├── BackButton.js │ │ ├── CameraHeaderButton.js │ │ ├── Header.js │ │ ├── HeaderButton.js │ │ ├── ProfileHeaderButton.js │ │ └── index.js │ ├── html-entities │ │ ├── Nbsp.js │ │ └── index.js │ ├── icons │ │ ├── Icon.js │ │ ├── Svg.js │ │ ├── index.js │ │ └── svg │ │ │ ├── ArrowCircledIcon.js │ │ │ ├── ArrowIcon.js │ │ │ ├── AssetListItemSkeletonIcon.js │ │ │ ├── AvatarIcon.js │ │ │ ├── BalanceLogoIcon.js │ │ │ ├── CameraIcon.js │ │ │ ├── CaretIcon.js │ │ │ ├── CaretThinIcon.js │ │ │ ├── CheckmarkCircledIcon.js │ │ │ ├── CheckmarkIcon.js │ │ │ ├── ClockIcon.js │ │ │ ├── CloseIcon.js │ │ │ ├── CompassIcon.js │ │ │ ├── CopyIcon.js │ │ │ ├── CrosshairIcon.js │ │ │ ├── DotIcon.js │ │ │ ├── FaceIdIcon.js │ │ │ ├── GearIcon.js │ │ │ ├── HandleIcon.js │ │ │ ├── InboxIcon.js │ │ │ ├── OfflineIcon.js │ │ │ ├── ProgressIcon.js │ │ │ ├── SendIcon.js │ │ │ ├── ShareIcon.js │ │ │ ├── SpinnerIcon.js │ │ │ ├── ThreeDotsIcon.js │ │ │ ├── TouchIdIcon.js │ │ │ ├── WalletConnectIcon.js │ │ │ └── WarningIcon.js │ ├── inputs │ │ ├── Input.js │ │ ├── MultiLineInput.js │ │ └── index.js │ ├── labels │ │ ├── PillLabel.js │ │ └── index.js │ ├── layout │ │ ├── Centered.js │ │ ├── Column.js │ │ ├── ColumnWithMargins.js │ │ ├── Flex.js │ │ ├── FlexItem.js │ │ ├── FlyInView.js │ │ ├── LayoutWithMargins.js │ │ ├── Page.js │ │ ├── Row.js │ │ ├── RowWithMargins.js │ │ └── index.js │ ├── list │ │ ├── List.js │ │ ├── ListFooter.js │ │ ├── ListHeader.js │ │ ├── ListItem.js │ │ ├── ListItemArrowGroup.js │ │ ├── ListItemDivider.js │ │ ├── SectionList.js │ │ └── index.js │ ├── modal │ │ ├── LoadingOverlay.js │ │ ├── Modal.js │ │ ├── ModalFooterButton.js │ │ ├── ModalFooterButtonsRow.js │ │ ├── ModalHeader.js │ │ ├── ModalHeaderButton.js │ │ └── index.js │ ├── pager │ │ ├── AnimatedPager.js │ │ ├── AnimatedPagerItem.js │ │ ├── Pager.js │ │ ├── PagerControls.js │ │ ├── PagerItem.js │ │ └── index.js │ ├── profile │ │ ├── ProfileAction.js │ │ ├── ProfileMasthead.js │ │ └── index.js │ ├── qrcode-scanner │ │ ├── QRCodeScanner.js │ │ ├── QRCodeScannerCamera.js │ │ ├── QRCodeScannerCrosshair.js │ │ ├── QRCodeScannerNeedsAuthorization.js │ │ └── index.js │ ├── radio-list │ │ ├── RadioList.js │ │ ├── RadioListItem.js │ │ └── index.js │ ├── settings-menu │ │ ├── BackupSection.js │ │ ├── CurrencySection.js │ │ ├── LanguageSection.js │ │ ├── SettingsSection.js │ │ └── index.js │ ├── shadow-stack │ │ ├── ShadowItem.js │ │ ├── ShadowStack.js │ │ └── index.js │ ├── text │ │ ├── Br.js │ │ ├── Emoji.js │ │ ├── ErrorText.js │ │ ├── H1.js │ │ ├── Monospace.js │ │ ├── Smallcaps.js │ │ ├── Text.js │ │ ├── TruncatedAddress.js │ │ ├── TruncatedText.js │ │ └── index.js │ ├── unique-token │ │ ├── UniqueTokenAttributes.js │ │ ├── UniqueTokenCard.js │ │ ├── UniqueTokenImage.js │ │ ├── UniqueTokenRow.js │ │ └── index.js │ └── walletconnect-list │ │ ├── WalletConnectExplainer.js │ │ ├── WalletConnectExplainerItem.js │ │ ├── WalletConnectLearnMoreButton.js │ │ ├── WalletConnectList.js │ │ ├── WalletConnectListItem.js │ │ └── index.js ├── helpers │ ├── assets.js │ ├── buildWalletSections.js │ ├── transactionStatusTypes.js │ ├── transactions.js │ └── utilities.js ├── hoc │ ├── index.js │ ├── withAccountAddress.js │ ├── withAccountRefresh.js │ ├── withAccountReset.js │ ├── withAccountSettings.js │ ├── withAccountTransactions.js │ ├── withActionSheetManager.js │ ├── withAddWalletConnector.js │ ├── withBlurTransitionProps.js │ ├── withFetchingPrices.js │ ├── withHideSplashScreen.js │ ├── withImageDimensionsCache.js │ ├── withIsWalletEmpty.js │ ├── withMessageSigningScreen.js │ ├── withRequests.js │ ├── withRequestsInit.js │ ├── withRotationForDirection.js │ ├── withSafeAreaViewInsetValues.js │ ├── withStatusBarStyle.js │ ├── withTrackingDate.js │ ├── withTrackingScreen.js │ ├── withTransactionConfirmationScreen.js │ ├── withTransitionProps.js │ └── withWalletConnectConnections.js ├── model │ ├── connections.js │ ├── keychain.js │ ├── localstorage.js │ ├── personalData.js │ ├── wallet.js │ └── walletconnect.js ├── navigation │ ├── index.js │ └── transitions │ │ ├── expanded.js │ │ ├── index.js │ │ └── sheet.js ├── redux │ ├── actionSheetManager.js │ ├── imageDimensionsCache.js │ ├── isWalletEmpty.js │ ├── navigation.js │ ├── nonce.js │ ├── reducers.js │ ├── store.js │ ├── tracking.js │ ├── transactionsToApprove.js │ └── walletconnect.js ├── screens │ ├── Camera.js │ ├── ExpandedAssetScreen.js │ ├── ImportSeedPhraseSheet.js │ ├── ImportSeedPhraseSheetWithData.js │ ├── ProfileScreen.js │ ├── ProfileScreenWithData.js │ ├── QRScannerScreen.js │ ├── QRScannerScreenWithData.js │ ├── ReceiveModal.js │ ├── Routes.js │ ├── SendQRScannerScreenWithData.js │ ├── SendSheet.js │ ├── SendSheetWithData.js │ ├── SettingsModal.js │ ├── TransactionConfirmationScreen.js │ ├── TransactionConfirmationScreenWithData.js │ └── WalletScreen.js ├── styles │ ├── animations.js │ ├── borders.js │ ├── buildLayoutStyles.js │ ├── buildTextStyles.js │ ├── calcDirectionToDegrees.js │ ├── colors.js │ ├── fonts.js │ ├── index.js │ ├── margin.js │ ├── padding.js │ ├── position.js │ └── shadow.js └── utils │ ├── Dapplet.js │ ├── abbreviations.js │ ├── actionsheet.js │ ├── address.js │ ├── deviceUtils.js │ ├── dimensionsPropType.js │ ├── directionPropType.js │ ├── formatters.js │ ├── index.js │ ├── isNewValueForPath.js │ ├── reduceStylesArrayToObject.js │ ├── safeAreaInsetValues.js │ ├── statusBar.js │ └── transactions.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/.babelrc -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v11.1.0 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Assets/0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/0x.png -------------------------------------------------------------------------------- /Assets/0x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/0x.svg -------------------------------------------------------------------------------- /Assets/alice-logo-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/alice-logo-new.png -------------------------------------------------------------------------------- /Assets/alice-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/alice-pic.png -------------------------------------------------------------------------------- /Assets/alice-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/alice-square.png -------------------------------------------------------------------------------- /Assets/alice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/alice.png -------------------------------------------------------------------------------- /Assets/anon-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/anon-avatar.png -------------------------------------------------------------------------------- /Assets/aragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/aragon.png -------------------------------------------------------------------------------- /Assets/aragon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/aragon.svg -------------------------------------------------------------------------------- /Assets/augur-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/augur-logo.png -------------------------------------------------------------------------------- /Assets/avatar-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/avatar-black.png -------------------------------------------------------------------------------- /Assets/avatar-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/avatar-grey.png -------------------------------------------------------------------------------- /Assets/back-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/back-button.png -------------------------------------------------------------------------------- /Assets/beer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/beer.png -------------------------------------------------------------------------------- /Assets/bounties-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/bounties-avatar.png -------------------------------------------------------------------------------- /Assets/bounties-avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/bounties-avatar.svg -------------------------------------------------------------------------------- /Assets/bounties-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/bounties-dashboard.png -------------------------------------------------------------------------------- /Assets/bounties-dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/bounties-dashboard.svg -------------------------------------------------------------------------------- /Assets/bounties-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/bounties-explorer.png -------------------------------------------------------------------------------- /Assets/bounties-explorer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/bounties-explorer.svg -------------------------------------------------------------------------------- /Assets/bounties-leaderboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/bounties-leaderboard.png -------------------------------------------------------------------------------- /Assets/bounties-leaderboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/bounties-leaderboard.svg -------------------------------------------------------------------------------- /Assets/bounties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/bounties.png -------------------------------------------------------------------------------- /Assets/camera-emoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/camera-emoji.png -------------------------------------------------------------------------------- /Assets/chat-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/chat-black.png -------------------------------------------------------------------------------- /Assets/chat-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/chat-grey.png -------------------------------------------------------------------------------- /Assets/clock-circular-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/clock-circular-outline.png -------------------------------------------------------------------------------- /Assets/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/close.png -------------------------------------------------------------------------------- /Assets/coinmarketcap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/coinmarketcap.png -------------------------------------------------------------------------------- /Assets/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/compass.png -------------------------------------------------------------------------------- /Assets/compound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/compound.png -------------------------------------------------------------------------------- /Assets/croissant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/croissant.png -------------------------------------------------------------------------------- /Assets/cryptokitties-cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/cryptokitties-cat.png -------------------------------------------------------------------------------- /Assets/cryptokitties-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/cryptokitties-tag.png -------------------------------------------------------------------------------- /Assets/cryptokitties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/cryptokitties.png -------------------------------------------------------------------------------- /Assets/dai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/dai.png -------------------------------------------------------------------------------- /Assets/dai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/dai.svg -------------------------------------------------------------------------------- /Assets/daostack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/daostack.png -------------------------------------------------------------------------------- /Assets/decentraland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/decentraland.png -------------------------------------------------------------------------------- /Assets/dharma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/dharma.png -------------------------------------------------------------------------------- /Assets/district0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/district0x.png -------------------------------------------------------------------------------- /Assets/dna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/dna.png -------------------------------------------------------------------------------- /Assets/dydx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/dydx.png -------------------------------------------------------------------------------- /Assets/emoji-hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/emoji-hamburger.png -------------------------------------------------------------------------------- /Assets/enter-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/enter-arrow.png -------------------------------------------------------------------------------- /Assets/etheremon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/etheremon.png -------------------------------------------------------------------------------- /Assets/ethereum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/ethereum.png -------------------------------------------------------------------------------- /Assets/foam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/foam.png -------------------------------------------------------------------------------- /Assets/fork-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/fork-logo.png -------------------------------------------------------------------------------- /Assets/fries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/fries.png -------------------------------------------------------------------------------- /Assets/gitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/gitcoin.png -------------------------------------------------------------------------------- /Assets/giveth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/giveth.png -------------------------------------------------------------------------------- /Assets/gnosis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/gnosis-logo.png -------------------------------------------------------------------------------- /Assets/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/hamburger.png -------------------------------------------------------------------------------- /Assets/heart-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/heart-outline.png -------------------------------------------------------------------------------- /Assets/home-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/home-black.png -------------------------------------------------------------------------------- /Assets/home-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/home-grey.png -------------------------------------------------------------------------------- /Assets/hotdog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/hotdog.png -------------------------------------------------------------------------------- /Assets/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/house.png -------------------------------------------------------------------------------- /Assets/hummingbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/hummingbot.png -------------------------------------------------------------------------------- /Assets/instadapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/instadapp.png -------------------------------------------------------------------------------- /Assets/local-ethereum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/local-ethereum.png -------------------------------------------------------------------------------- /Assets/localethereum-modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/localethereum-modal.png -------------------------------------------------------------------------------- /Assets/localethereum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/localethereum.png -------------------------------------------------------------------------------- /Assets/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/location.png -------------------------------------------------------------------------------- /Assets/maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/maps.png -------------------------------------------------------------------------------- /Assets/money-bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/money-bag.png -------------------------------------------------------------------------------- /Assets/mycrypto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/mycrypto.png -------------------------------------------------------------------------------- /Assets/new-chat-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/new-chat-logo.png -------------------------------------------------------------------------------- /Assets/paperclip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/paperclip.png -------------------------------------------------------------------------------- /Assets/pawprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/pawprint.png -------------------------------------------------------------------------------- /Assets/peepeth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/peepeth.png -------------------------------------------------------------------------------- /Assets/pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/pizza.png -------------------------------------------------------------------------------- /Assets/plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/plate.png -------------------------------------------------------------------------------- /Assets/profpic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/profpic1.png -------------------------------------------------------------------------------- /Assets/profpic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/profpic2.png -------------------------------------------------------------------------------- /Assets/project-alice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/project-alice.png -------------------------------------------------------------------------------- /Assets/puzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/puzzle.png -------------------------------------------------------------------------------- /Assets/qantas-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/qantas-logo.png -------------------------------------------------------------------------------- /Assets/radar-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/radar-black.png -------------------------------------------------------------------------------- /Assets/radar-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/radar-chat.png -------------------------------------------------------------------------------- /Assets/radar-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/radar-r-white.png -------------------------------------------------------------------------------- /Assets/red-car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/red-car.png -------------------------------------------------------------------------------- /Assets/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/search.png -------------------------------------------------------------------------------- /Assets/send-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/send-button.png -------------------------------------------------------------------------------- /Assets/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/settings.png -------------------------------------------------------------------------------- /Assets/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/share.png -------------------------------------------------------------------------------- /Assets/status-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/status-logo.png -------------------------------------------------------------------------------- /Assets/sushi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/sushi.png -------------------------------------------------------------------------------- /Assets/synthetix-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/synthetix-dashboard.png -------------------------------------------------------------------------------- /Assets/synthetix-exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/synthetix-exchange.png -------------------------------------------------------------------------------- /Assets/synthetix-mintr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/synthetix-mintr.png -------------------------------------------------------------------------------- /Assets/synthetix-swap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/synthetix-swap.png -------------------------------------------------------------------------------- /Assets/synthetix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/synthetix.png -------------------------------------------------------------------------------- /Assets/taco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/taco.png -------------------------------------------------------------------------------- /Assets/trade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/trade.png -------------------------------------------------------------------------------- /Assets/uniswap-down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/uniswap-down-arrow.png -------------------------------------------------------------------------------- /Assets/uniswap-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/uniswap-dropdown.png -------------------------------------------------------------------------------- /Assets/uniswap-pool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/uniswap-pool.png -------------------------------------------------------------------------------- /Assets/uniswap-send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/uniswap-send.png -------------------------------------------------------------------------------- /Assets/uniswap-swap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/uniswap-swap.png -------------------------------------------------------------------------------- /Assets/uniswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/uniswap.png -------------------------------------------------------------------------------- /Assets/veil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/veil.png -------------------------------------------------------------------------------- /Assets/wyre-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/Assets/wyre-1.png -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/__tests__/App.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Graphik-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/Graphik-Black.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Graphik-BlackItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/Graphik-BlackItalic.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Graphik-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/Graphik-Bold.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Graphik-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/Graphik-BoldItalic.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Graphik-Extralight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/Graphik-Extralight.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Graphik-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/Graphik-Light.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Graphik-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/Graphik-LightItalic.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Graphik-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/Graphik-Medium.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Graphik-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/Graphik-Regular.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Graphik-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/Graphik-Semibold.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Graphik-Super.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/Graphik-Super.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Graphik-SuperItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/Graphik-SuperItalic.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Graphik-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/Graphik-Thin.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Graphik-ThinItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/Graphik-ThinItalic.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SF-Pro-Display-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/SF-Pro-Display-Bold.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SF-Pro-Display-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/SF-Pro-Display-Thin.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SF-Pro-Text-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/SF-Pro-Text-Bold.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SF-Pro-Text-Heavy.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/SF-Pro-Text-Heavy.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SF-Pro-Text-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/SF-Pro-Text-Light.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SF-Pro-Text-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/SF-Pro-Text-Medium.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SF-Pro-Text-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/SF-Pro-Text-Regular.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SFMono-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/SFMono-Bold.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SFMono-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/SFMono-BoldItalic.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SFMono-Heavy.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/SFMono-Heavy.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SFMono-HeavyItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/SFMono-HeavyItalic.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SFMono-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/SFMono-Light.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SFMono-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/SFMono-LightItalic.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SFMono-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/SFMono-Medium.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SFMono-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/SFMono-Regular.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SFMono-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/assets/fonts/SFMono-Semibold.otf -------------------------------------------------------------------------------- /android/app/src/main/debug/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/debug/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/debug/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/debug/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/staging/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/staging/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/staging/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/app/src/main/staging/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/app.json -------------------------------------------------------------------------------- /global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/global.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/index.js -------------------------------------------------------------------------------- /ios/Apps/Aragon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/Aragon/index.js -------------------------------------------------------------------------------- /ios/Apps/Augur/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/Augur/index.js -------------------------------------------------------------------------------- /ios/Apps/Bounties/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/Bounties/index.js -------------------------------------------------------------------------------- /ios/Apps/Compound/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/Compound/index.js -------------------------------------------------------------------------------- /ios/Apps/Cryptokitties/Screens/KittyScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/Cryptokitties/Screens/KittyScreen.js -------------------------------------------------------------------------------- /ios/Apps/Cryptokitties/Screens/MyKitties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/Cryptokitties/Screens/MyKitties.js -------------------------------------------------------------------------------- /ios/Apps/Cryptokitties/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/Cryptokitties/index.js -------------------------------------------------------------------------------- /ios/Apps/Decentraland/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/Decentraland/index.js -------------------------------------------------------------------------------- /ios/Apps/Dharma/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/Dharma/index.js -------------------------------------------------------------------------------- /ios/Apps/Foam/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/Foam/index.js -------------------------------------------------------------------------------- /ios/Apps/Gitcoin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/Gitcoin/index.js -------------------------------------------------------------------------------- /ios/Apps/LocalEthereum/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/LocalEthereum/index.js -------------------------------------------------------------------------------- /ios/Apps/MetaMultisig/Screens/KittyScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/MetaMultisig/Screens/KittyScreen.js -------------------------------------------------------------------------------- /ios/Apps/MetaMultisig/Screens/MyKitties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/MetaMultisig/Screens/MyKitties.js -------------------------------------------------------------------------------- /ios/Apps/MetaMultisig/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/MetaMultisig/index.js -------------------------------------------------------------------------------- /ios/Apps/Peepeth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/Peepeth/index.js -------------------------------------------------------------------------------- /ios/Apps/Qantas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/Qantas/index.js -------------------------------------------------------------------------------- /ios/Apps/RadarRelay/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/RadarRelay/index.js -------------------------------------------------------------------------------- /ios/Apps/Synthetix/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/Synthetix/index.js -------------------------------------------------------------------------------- /ios/Apps/Uniswap/Screens/MyKitties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/Uniswap/Screens/MyKitties.js -------------------------------------------------------------------------------- /ios/Apps/Uniswap/Screens/TradeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/Uniswap/Screens/TradeScreen.js -------------------------------------------------------------------------------- /ios/Apps/Uniswap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/Uniswap/index.js -------------------------------------------------------------------------------- /ios/Apps/Wyre/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/Wyre/index.js -------------------------------------------------------------------------------- /ios/Apps/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Apps/index.js -------------------------------------------------------------------------------- /ios/BalanceWallet.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/BalanceWallet.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/BalanceWallet.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/BalanceWallet.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/BalanceWallet/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/BalanceWallet/AppDelegate.h -------------------------------------------------------------------------------- /ios/BalanceWallet/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/BalanceWallet/AppDelegate.m -------------------------------------------------------------------------------- /ios/BalanceWallet/BalanceWallet.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/BalanceWallet/BalanceWallet.entitlements -------------------------------------------------------------------------------- /ios/BalanceWallet/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/BalanceWallet/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/BalanceWallet/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/BalanceWallet/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/BalanceWallet/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/BalanceWallet/Info.plist -------------------------------------------------------------------------------- /ios/BalanceWallet/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/BalanceWallet/main.m -------------------------------------------------------------------------------- /ios/BalanceWalletTests/BalanceWalletTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/BalanceWalletTests/BalanceWalletTests.m -------------------------------------------------------------------------------- /ios/BalanceWalletTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/BalanceWalletTests/Info.plist -------------------------------------------------------------------------------- /ios/Frameworks/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Frameworks/GoogleService-Info.plist -------------------------------------------------------------------------------- /ios/Frameworks/Protobuf.framework/Protobuf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Frameworks/Protobuf.framework/Protobuf -------------------------------------------------------------------------------- /ios/Frameworks/nanopb.framework/nanopb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Frameworks/nanopb.framework/nanopb -------------------------------------------------------------------------------- /ios/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/fastlane/Appfile -------------------------------------------------------------------------------- /ios/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/fastlane/Fastfile -------------------------------------------------------------------------------- /ios/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/ios/fastlane/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/package.json -------------------------------------------------------------------------------- /shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/shim.js -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/App.js -------------------------------------------------------------------------------- /src/AppABIs/wethAbi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/AppABIs/wethAbi.json -------------------------------------------------------------------------------- /src/Apps/AppTemplate/Assets/bolt-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/AppTemplate/Assets/bolt-white.png -------------------------------------------------------------------------------- /src/Apps/AppTemplate/Assets/bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/AppTemplate/Assets/bolt.png -------------------------------------------------------------------------------- /src/Apps/AppTemplate/Assets/list-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/AppTemplate/Assets/list-white.png -------------------------------------------------------------------------------- /src/Apps/AppTemplate/Assets/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/AppTemplate/Assets/list.png -------------------------------------------------------------------------------- /src/Apps/AppTemplate/Assets/radar-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/AppTemplate/Assets/radar-black.png -------------------------------------------------------------------------------- /src/Apps/AppTemplate/Assets/radar-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/AppTemplate/Assets/radar-r-white.png -------------------------------------------------------------------------------- /src/Apps/AppTemplate/Assets/star-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/AppTemplate/Assets/star-empty.png -------------------------------------------------------------------------------- /src/Apps/AppTemplate/Assets/tune-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/AppTemplate/Assets/tune-white.png -------------------------------------------------------------------------------- /src/Apps/AppTemplate/Assets/tune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/AppTemplate/Assets/tune.png -------------------------------------------------------------------------------- /src/Apps/AppTemplate/Components/OrderModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/AppTemplate/Components/OrderModal.js -------------------------------------------------------------------------------- /src/Apps/AppTemplate/Components/TokenSelectModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/AppTemplate/Components/TokenSelectModal.js -------------------------------------------------------------------------------- /src/Apps/AppTemplate/Screens/BuyAndSell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/AppTemplate/Screens/BuyAndSell.js -------------------------------------------------------------------------------- /src/Apps/AppTemplate/Screens/Deals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/AppTemplate/Screens/Deals.js -------------------------------------------------------------------------------- /src/Apps/AppTemplate/Screens/OrderBook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/AppTemplate/Screens/OrderBook.js -------------------------------------------------------------------------------- /src/Apps/AppTemplate/Screens/TakeAway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/AppTemplate/Screens/TakeAway.js -------------------------------------------------------------------------------- /src/Apps/AppTemplate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/AppTemplate/index.js -------------------------------------------------------------------------------- /src/Apps/Aragon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Aragon/index.js -------------------------------------------------------------------------------- /src/Apps/Augur/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Augur/index.js -------------------------------------------------------------------------------- /src/Apps/Bounties/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Bounties/index.js -------------------------------------------------------------------------------- /src/Apps/Compound/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Compound/index.js -------------------------------------------------------------------------------- /src/Apps/Cryptokitties/Screens/KittyScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Cryptokitties/Screens/KittyScreen.js -------------------------------------------------------------------------------- /src/Apps/Cryptokitties/Screens/MyKitties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Cryptokitties/Screens/MyKitties.js -------------------------------------------------------------------------------- /src/Apps/Cryptokitties/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Cryptokitties/index.js -------------------------------------------------------------------------------- /src/Apps/Decentraland/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Decentraland/index.js -------------------------------------------------------------------------------- /src/Apps/Dharma/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Dharma/index.js -------------------------------------------------------------------------------- /src/Apps/Foam/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/App.js -------------------------------------------------------------------------------- /src/Apps/Foam/MapboxClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/MapboxClient.js -------------------------------------------------------------------------------- /src/Apps/Foam/assets/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/assets/example.png -------------------------------------------------------------------------------- /src/Apps/Foam/assets/giphy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/assets/giphy.gif -------------------------------------------------------------------------------- /src/Apps/Foam/assets/grid_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/assets/grid_pattern.png -------------------------------------------------------------------------------- /src/Apps/Foam/assets/indoor_3d_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/assets/indoor_3d_map.json -------------------------------------------------------------------------------- /src/Apps/Foam/assets/nyc_geojson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/assets/nyc_geojson.json -------------------------------------------------------------------------------- /src/Apps/Foam/assets/radar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/assets/radar.png -------------------------------------------------------------------------------- /src/Apps/Foam/assets/radar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/assets/radar1.png -------------------------------------------------------------------------------- /src/Apps/Foam/assets/radar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/assets/radar2.png -------------------------------------------------------------------------------- /src/Apps/Foam/assets/smiley_face.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/assets/smiley_face.json -------------------------------------------------------------------------------- /src/Apps/Foam/assets/test_pattern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/assets/test_pattern.jpg -------------------------------------------------------------------------------- /src/Apps/Foam/components/ChoroplethLayerByZoomLevel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/ChoroplethLayerByZoomLevel.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/CreateOfflineRegion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/CreateOfflineRegion.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/CustomIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/CustomIcon.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/CustomVectorSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/CustomVectorSource.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/DataDrivenCircleColors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/DataDrivenCircleColors.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/DriveTheLine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/DriveTheLine.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/EarthQuakes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/EarthQuakes.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/FitBounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/FitBounds.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/FlyTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/FlyTo.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/GeoJSONSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/GeoJSONSource.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/GetCenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/GetCenter.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/GetZoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/GetZoom.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/ImageOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/ImageOverlay.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/IndoorBuilding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/IndoorBuilding.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/PointInMapView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/PointInMapView.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/QueryAtPoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/QueryAtPoint.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/QueryWithRect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/QueryWithRect.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/SetBearing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/SetBearing.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/SetPitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/SetPitch.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/SetUserTrackingModes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/SetUserTrackingModes.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/ShapeSourceIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/ShapeSourceIcon.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/ShowClick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/ShowClick.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/ShowMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/ShowMap.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/ShowPointAnnotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/ShowPointAnnotation.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/ShowRegionChange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/ShowRegionChange.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/TakeSnapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/TakeSnapshot.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/TakeSnapshotWithMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/TakeSnapshotWithMap.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/TwoByTwo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/TwoByTwo.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/UserLocationChange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/UserLocationChange.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/WatercolorRasterTiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/WatercolorRasterTiles.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/YoYo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/YoYo.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/common/Bubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/common/Bubble.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/common/MapHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/common/MapHeader.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/common/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/common/Page.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/common/PulseCircleLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/common/PulseCircleLayer.js -------------------------------------------------------------------------------- /src/Apps/Foam/components/common/TabBarPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/components/common/TabBarPage.js -------------------------------------------------------------------------------- /src/Apps/Foam/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/index.js -------------------------------------------------------------------------------- /src/Apps/Foam/styles/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/styles/colors.js -------------------------------------------------------------------------------- /src/Apps/Foam/styles/sheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/styles/sheet.js -------------------------------------------------------------------------------- /src/Apps/Foam/utils/RouteSimulator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/utils/RouteSimulator.js -------------------------------------------------------------------------------- /src/Apps/Foam/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Foam/utils/index.js -------------------------------------------------------------------------------- /src/Apps/Fork/Assets/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Fork/Assets/close.png -------------------------------------------------------------------------------- /src/Apps/Fork/Assets/cryptokitty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Fork/Assets/cryptokitty.png -------------------------------------------------------------------------------- /src/Apps/Fork/Assets/eth-new-york.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Fork/Assets/eth-new-york.png -------------------------------------------------------------------------------- /src/Apps/Fork/Components/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Fork/Components/Modal.js -------------------------------------------------------------------------------- /src/Apps/Fork/Screens/Confirmation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Fork/Screens/Confirmation.js -------------------------------------------------------------------------------- /src/Apps/Fork/Screens/Deals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Fork/Screens/Deals.js -------------------------------------------------------------------------------- /src/Apps/Fork/Screens/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Fork/Screens/Menu.js -------------------------------------------------------------------------------- /src/Apps/Fork/Screens/Restaurants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Fork/Screens/Restaurants.js -------------------------------------------------------------------------------- /src/Apps/Fork/Screens/TakeAway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Fork/Screens/TakeAway.js -------------------------------------------------------------------------------- /src/Apps/Fork/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Fork/index.js -------------------------------------------------------------------------------- /src/Apps/Gitcoin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Gitcoin/index.js -------------------------------------------------------------------------------- /src/Apps/LocalEthereum/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/LocalEthereum/index.js -------------------------------------------------------------------------------- /src/Apps/MetaMultisig/Screens/KittyScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/MetaMultisig/Screens/KittyScreen.js -------------------------------------------------------------------------------- /src/Apps/MetaMultisig/Screens/MyKitties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/MetaMultisig/Screens/MyKitties.js -------------------------------------------------------------------------------- /src/Apps/MetaMultisig/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/MetaMultisig/index.js -------------------------------------------------------------------------------- /src/Apps/Peepeth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Peepeth/index.js -------------------------------------------------------------------------------- /src/Apps/Qantas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Qantas/index.js -------------------------------------------------------------------------------- /src/Apps/RadarRelay/Assets/bolt-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/RadarRelay/Assets/bolt-white.png -------------------------------------------------------------------------------- /src/Apps/RadarRelay/Assets/bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/RadarRelay/Assets/bolt.png -------------------------------------------------------------------------------- /src/Apps/RadarRelay/Assets/list-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/RadarRelay/Assets/list-white.png -------------------------------------------------------------------------------- /src/Apps/RadarRelay/Assets/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/RadarRelay/Assets/list.png -------------------------------------------------------------------------------- /src/Apps/RadarRelay/Assets/radar-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/RadarRelay/Assets/radar-black.png -------------------------------------------------------------------------------- /src/Apps/RadarRelay/Assets/radar-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/RadarRelay/Assets/radar-r-white.png -------------------------------------------------------------------------------- /src/Apps/RadarRelay/Assets/star-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/RadarRelay/Assets/star-empty.png -------------------------------------------------------------------------------- /src/Apps/RadarRelay/Assets/tune-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/RadarRelay/Assets/tune-white.png -------------------------------------------------------------------------------- /src/Apps/RadarRelay/Assets/tune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/RadarRelay/Assets/tune.png -------------------------------------------------------------------------------- /src/Apps/RadarRelay/Components/OrderModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/RadarRelay/Components/OrderModal.js -------------------------------------------------------------------------------- /src/Apps/RadarRelay/Components/TokenSelectModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/RadarRelay/Components/TokenSelectModal.js -------------------------------------------------------------------------------- /src/Apps/RadarRelay/Screens/BuyAndSell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/RadarRelay/Screens/BuyAndSell.js -------------------------------------------------------------------------------- /src/Apps/RadarRelay/Screens/Deals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/RadarRelay/Screens/Deals.js -------------------------------------------------------------------------------- /src/Apps/RadarRelay/Screens/OrderBook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/RadarRelay/Screens/OrderBook.js -------------------------------------------------------------------------------- /src/Apps/RadarRelay/Screens/TakeAway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/RadarRelay/Screens/TakeAway.js -------------------------------------------------------------------------------- /src/Apps/RadarRelay/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/RadarRelay/index.js -------------------------------------------------------------------------------- /src/Apps/Synthetix/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Synthetix/index.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/Screens/MyKitties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/Screens/MyKitties.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/Screens/TradeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/Screens/TradeScreen.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/abi/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/abi/erc20.json -------------------------------------------------------------------------------- /src/Apps/Uniswap/abi/erc20_symbol_bytes32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/abi/erc20_symbol_bytes32.json -------------------------------------------------------------------------------- /src/Apps/Uniswap/abi/exchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/abi/exchange.json -------------------------------------------------------------------------------- /src/Apps/Uniswap/abi/factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/abi/factory.json -------------------------------------------------------------------------------- /src/Apps/Uniswap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/index.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/public/CNAME: -------------------------------------------------------------------------------- 1 | uniswap.exchange 2 | -------------------------------------------------------------------------------- /src/Apps/Uniswap/public/_redirect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/public/_redirect -------------------------------------------------------------------------------- /src/Apps/Uniswap/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/public/favicon.ico -------------------------------------------------------------------------------- /src/Apps/Uniswap/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/public/index.html -------------------------------------------------------------------------------- /src/Apps/Uniswap/public/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/public/locales/de.json -------------------------------------------------------------------------------- /src/Apps/Uniswap/public/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/public/locales/en.json -------------------------------------------------------------------------------- /src/Apps/Uniswap/public/locales/es-AR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/public/locales/es-AR.json -------------------------------------------------------------------------------- /src/Apps/Uniswap/public/locales/es-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/public/locales/es-US.json -------------------------------------------------------------------------------- /src/Apps/Uniswap/public/locales/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/public/locales/ro.json -------------------------------------------------------------------------------- /src/Apps/Uniswap/public/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/public/locales/ru.json -------------------------------------------------------------------------------- /src/Apps/Uniswap/public/locales/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/public/locales/zh-CN.json -------------------------------------------------------------------------------- /src/Apps/Uniswap/public/locales/zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/public/locales/zh-TW.json -------------------------------------------------------------------------------- /src/Apps/Uniswap/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/public/manifest.json -------------------------------------------------------------------------------- /src/Apps/Uniswap/public/🦄.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/public/🦄.png -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/abi/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/abi/erc20.json -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/abi/erc20_symbol_bytes32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/abi/erc20_symbol_bytes32.json -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/abi/exchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/abi/exchange.json -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/abi/factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/abi/factory.json -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/assets/images/arrow-down-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/assets/images/arrow-down-blue.svg -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/assets/images/arrow-down-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/assets/images/arrow-down-grey.svg -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/assets/images/brave-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/assets/images/brave-logo.svg -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/assets/images/dropdown-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/assets/images/dropdown-blue.svg -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/assets/images/dropdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/assets/images/dropdown.svg -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/assets/images/dropup-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/assets/images/dropup-blue.svg -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/assets/images/ethereum-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/assets/images/ethereum-logo.svg -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/assets/images/logo.png -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/assets/images/metamask-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/assets/images/metamask-logo.svg -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/assets/images/pending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/assets/images/pending.svg -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/assets/images/plus-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/assets/images/plus-blue.svg -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/assets/images/plus-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/assets/images/plus-grey.svg -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/assets/images/qr-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/assets/images/qr-code.svg -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/components/Header/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/components/Header/header.scss -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/components/Header/index.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/components/Logo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/components/Logo/index.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/components/Logo/logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/components/Logo/logo.scss -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/components/Modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/components/Modal/index.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/components/Modal/modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/components/Modal/modal.scss -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/components/QrCode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/components/QrCode/index.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/components/QrCode/qr-code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/components/QrCode/qr-code.scss -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/components/Tab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/components/Tab/index.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/components/Tab/tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/components/Tab/tab.scss -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/components/TokenLogo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/components/TokenLogo/index.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/components/Web3Status/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/components/Web3Status/index.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/constants/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/constants/actionTypes.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/constants/currencyInputErrorTypes.js: -------------------------------------------------------------------------------- 1 | export const INSUFFICIENT_BALANCE = 'Insufficient balance'; 2 | -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/ducks/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/ducks/addresses.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/ducks/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/ducks/app.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/ducks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/ducks/index.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/ducks/pending.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/ducks/pending.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/ducks/web3connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/ducks/web3connect.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/helpers/fuse/bitap/bitap_score.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/helpers/fuse/bitap/bitap_score.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/helpers/fuse/bitap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/helpers/fuse/bitap/index.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/helpers/fuse/helpers/is_array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/helpers/fuse/helpers/is_array.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/helpers/fuse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/helpers/fuse/index.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/helpers/promise-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/helpers/promise-utils.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/helpers/web3-promisfy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/helpers/web3-promisfy.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/helpers/web3-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/helpers/web3-utils.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/i18n.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/index.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/index.scss -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/libraries/qr-scanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/libraries/qr-scanner.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/pages/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/pages/App.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/pages/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/pages/App.scss -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/pages/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/pages/App.test.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/pages/Pool/AddLiquidity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/pages/Pool/AddLiquidity.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/pages/Pool/CreateExchange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/pages/Pool/CreateExchange.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/pages/Pool/ModeSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/pages/Pool/ModeSelector.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/pages/Pool/RemoveLiquidity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/pages/Pool/RemoveLiquidity.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/pages/Pool/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/pages/Pool/index.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/pages/Pool/pool.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/pages/Pool/pool.scss -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/pages/Send/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/pages/Send/index.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/pages/Send/send.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/pages/Send/send.scss -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/pages/Swap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/pages/Swap/index.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/pages/Swap/swap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/pages/Swap/swap.scss -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/store/index.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/store/initial-state.js: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/store/store.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/store/store.dev.js -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/store/store.prod.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Apps/Uniswap/src/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Uniswap/src/variables.scss -------------------------------------------------------------------------------- /src/Apps/Veil/Assets/bolt-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Veil/Assets/bolt-white.png -------------------------------------------------------------------------------- /src/Apps/Veil/Assets/bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Veil/Assets/bolt.png -------------------------------------------------------------------------------- /src/Apps/Veil/Assets/checkbox-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Veil/Assets/checkbox-blank.png -------------------------------------------------------------------------------- /src/Apps/Veil/Assets/eth-currency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Veil/Assets/eth-currency.png -------------------------------------------------------------------------------- /src/Apps/Veil/Assets/list-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Veil/Assets/list-white.png -------------------------------------------------------------------------------- /src/Apps/Veil/Assets/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Veil/Assets/list.png -------------------------------------------------------------------------------- /src/Apps/Veil/Assets/radar-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Veil/Assets/radar-black.png -------------------------------------------------------------------------------- /src/Apps/Veil/Assets/radar-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Veil/Assets/radar-r-white.png -------------------------------------------------------------------------------- /src/Apps/Veil/Assets/radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Veil/Assets/radio-unchecked.png -------------------------------------------------------------------------------- /src/Apps/Veil/Assets/star-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Veil/Assets/star-empty.png -------------------------------------------------------------------------------- /src/Apps/Veil/Assets/tune-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Veil/Assets/tune-white.png -------------------------------------------------------------------------------- /src/Apps/Veil/Assets/tune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Veil/Assets/tune.png -------------------------------------------------------------------------------- /src/Apps/Veil/Components/OrderModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Veil/Components/OrderModal.js -------------------------------------------------------------------------------- /src/Apps/Veil/Components/TokenSelectModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Veil/Components/TokenSelectModal.js -------------------------------------------------------------------------------- /src/Apps/Veil/Screens/BuyAndSell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Veil/Screens/BuyAndSell.js -------------------------------------------------------------------------------- /src/Apps/Veil/Screens/Deals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Veil/Screens/Deals.js -------------------------------------------------------------------------------- /src/Apps/Veil/Screens/Predictions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Veil/Screens/Predictions.js -------------------------------------------------------------------------------- /src/Apps/Veil/Screens/TakeAway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Veil/Screens/TakeAway.js -------------------------------------------------------------------------------- /src/Apps/Veil/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Veil/index.js -------------------------------------------------------------------------------- /src/Apps/Wyre/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/Wyre/index.js -------------------------------------------------------------------------------- /src/Apps/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Apps/index.js -------------------------------------------------------------------------------- /src/HomePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/HomePage.js -------------------------------------------------------------------------------- /src/Main/Screens/AppsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Main/Screens/AppsScreen.js -------------------------------------------------------------------------------- /src/Main/Screens/Chats/Chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Main/Screens/Chats/Chat.js -------------------------------------------------------------------------------- /src/Main/Screens/Chats/Chat2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Main/Screens/Chats/Chat2.js -------------------------------------------------------------------------------- /src/Main/Screens/Chats/Chat3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Main/Screens/Chats/Chat3.js -------------------------------------------------------------------------------- /src/Main/Screens/Chats/ChatScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Main/Screens/Chats/ChatScreen.js -------------------------------------------------------------------------------- /src/Main/Screens/Chats/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Main/Screens/Chats/index.js -------------------------------------------------------------------------------- /src/Main/Screens/PersonalScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Main/Screens/PersonalScreen.js -------------------------------------------------------------------------------- /src/Main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/Main/index.js -------------------------------------------------------------------------------- /src/assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/avatar.png -------------------------------------------------------------------------------- /src/assets/backup-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/backup-icon.png -------------------------------------------------------------------------------- /src/assets/balance-manager-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/balance-manager-avatar.png -------------------------------------------------------------------------------- /src/assets/balance-manager-avatar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/balance-manager-avatar@2x.png -------------------------------------------------------------------------------- /src/assets/balance-manager-avatar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/balance-manager-avatar@3x.png -------------------------------------------------------------------------------- /src/assets/balance-manager-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/balance-manager-logo.png -------------------------------------------------------------------------------- /src/assets/balance-manager-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/balance-manager-logo@2x.png -------------------------------------------------------------------------------- /src/assets/balance-manager-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/balance-manager-logo@3x.png -------------------------------------------------------------------------------- /src/assets/balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/balance.png -------------------------------------------------------------------------------- /src/assets/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/camera.png -------------------------------------------------------------------------------- /src/assets/caret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/caret.png -------------------------------------------------------------------------------- /src/assets/confirm-menu-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/confirm-menu-alt.png -------------------------------------------------------------------------------- /src/assets/confirm-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/confirm-menu.png -------------------------------------------------------------------------------- /src/assets/currency-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/currency-icon.png -------------------------------------------------------------------------------- /src/assets/dai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/dai.png -------------------------------------------------------------------------------- /src/assets/dropdown-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/dropdown-arrow.png -------------------------------------------------------------------------------- /src/assets/eth-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/eth-icon.png -------------------------------------------------------------------------------- /src/assets/ethereum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/ethereum.png -------------------------------------------------------------------------------- /src/assets/faceid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/faceid.png -------------------------------------------------------------------------------- /src/assets/fonts/Graphik-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/Graphik-Black.otf -------------------------------------------------------------------------------- /src/assets/fonts/Graphik-BlackItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/Graphik-BlackItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/Graphik-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/Graphik-Bold.otf -------------------------------------------------------------------------------- /src/assets/fonts/Graphik-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/Graphik-BoldItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/Graphik-Extralight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/Graphik-Extralight.otf -------------------------------------------------------------------------------- /src/assets/fonts/Graphik-ExtralightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/Graphik-ExtralightItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/Graphik-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/Graphik-Light.otf -------------------------------------------------------------------------------- /src/assets/fonts/Graphik-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/Graphik-LightItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/Graphik-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/Graphik-Medium.otf -------------------------------------------------------------------------------- /src/assets/fonts/Graphik-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/Graphik-MediumItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/Graphik-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/Graphik-Regular.otf -------------------------------------------------------------------------------- /src/assets/fonts/Graphik-RegularItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/Graphik-RegularItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/Graphik-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/Graphik-Semibold.otf -------------------------------------------------------------------------------- /src/assets/fonts/Graphik-SemiboldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/Graphik-SemiboldItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/Graphik-Super.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/Graphik-Super.otf -------------------------------------------------------------------------------- /src/assets/fonts/Graphik-SuperItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/Graphik-SuperItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/Graphik-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/Graphik-Thin.otf -------------------------------------------------------------------------------- /src/assets/fonts/Graphik-ThinItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/Graphik-ThinItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Display-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Display-Black.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Display-BlackItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Display-BlackItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Display-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Display-Bold.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Display-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Display-BoldItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Display-Heavy.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Display-Heavy.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Display-HeavyItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Display-HeavyItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Display-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Display-Light.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Display-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Display-LightItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Display-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Display-Medium.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Display-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Display-MediumItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Display-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Display-Regular.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Display-RegularItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Display-RegularItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Display-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Display-Semibold.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Display-SemiboldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Display-SemiboldItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Display-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Display-Thin.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Display-ThinItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Display-ThinItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Display-Ultralight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Display-Ultralight.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Display-UltralightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Display-UltralightItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Text-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Text-Bold.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Text-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Text-BoldItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Text-Heavy.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Text-Heavy.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Text-HeavyItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Text-HeavyItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Text-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Text-Light.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Text-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Text-LightItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Text-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Text-Medium.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Text-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Text-MediumItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Text-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Text-Regular.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Text-RegularItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Text-RegularItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Text-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Text-Semibold.otf -------------------------------------------------------------------------------- /src/assets/fonts/SF-Pro-Text-SemiboldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SF-Pro-Text-SemiboldItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/SFMono-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SFMono-Bold.otf -------------------------------------------------------------------------------- /src/assets/fonts/SFMono-Heavy.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SFMono-Heavy.otf -------------------------------------------------------------------------------- /src/assets/fonts/SFMono-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SFMono-Light.otf -------------------------------------------------------------------------------- /src/assets/fonts/SFMono-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SFMono-Medium.otf -------------------------------------------------------------------------------- /src/assets/fonts/SFMono-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SFMono-Regular.otf -------------------------------------------------------------------------------- /src/assets/fonts/SFMono-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/fonts/SFMono-Semibold.otf -------------------------------------------------------------------------------- /src/assets/landing-kitty03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/landing-kitty03.png -------------------------------------------------------------------------------- /src/assets/language-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/language-icon.png -------------------------------------------------------------------------------- /src/assets/opensea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/opensea.png -------------------------------------------------------------------------------- /src/assets/person-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/person-icon.png -------------------------------------------------------------------------------- /src/assets/scan-icon-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/scan-icon-alt.png -------------------------------------------------------------------------------- /src/assets/scan-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/scan-icon@2x.png -------------------------------------------------------------------------------- /src/assets/scan-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/scan-icon@3x.png -------------------------------------------------------------------------------- /src/assets/security-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/security-icon.png -------------------------------------------------------------------------------- /src/assets/seed-phrase-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/seed-phrase-icon.png -------------------------------------------------------------------------------- /src/assets/seed-phrase-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/seed-phrase-icon@2x.png -------------------------------------------------------------------------------- /src/assets/seed-phrase-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/seed-phrase-icon@3x.png -------------------------------------------------------------------------------- /src/assets/send-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/send-background.png -------------------------------------------------------------------------------- /src/assets/send-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/send-button.png -------------------------------------------------------------------------------- /src/assets/settings-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/settings-icon@2x.png -------------------------------------------------------------------------------- /src/assets/settings-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/settings-icon@3x.png -------------------------------------------------------------------------------- /src/assets/simulator-fake-camera-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/simulator-fake-camera-image.jpg -------------------------------------------------------------------------------- /src/assets/transaction-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/transaction-button.png -------------------------------------------------------------------------------- /src/assets/wallet-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/wallet-icon@2x.png -------------------------------------------------------------------------------- /src/assets/wallet-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/wallet-icon@3x.png -------------------------------------------------------------------------------- /src/assets/walletconnect-logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/walletconnect-logo-blue.png -------------------------------------------------------------------------------- /src/assets/walletconnect-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/assets/walletconnect-logo.png -------------------------------------------------------------------------------- /src/components/ActivityIndicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/ActivityIndicator.js -------------------------------------------------------------------------------- /src/components/AddFundsInterstitial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/AddFundsInterstitial.js -------------------------------------------------------------------------------- /src/components/AppVersionStamp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/AppVersionStamp.js -------------------------------------------------------------------------------- /src/components/Avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/Avatar.js -------------------------------------------------------------------------------- /src/components/BlurOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/BlurOverlay.js -------------------------------------------------------------------------------- /src/components/ContextMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/ContextMenu.js -------------------------------------------------------------------------------- /src/components/CopyTooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/CopyTooltip.js -------------------------------------------------------------------------------- /src/components/Divider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/Divider.js -------------------------------------------------------------------------------- /src/components/IconComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/IconComponent.js -------------------------------------------------------------------------------- /src/components/ImageWithCachedDimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/ImageWithCachedDimensions.js -------------------------------------------------------------------------------- /src/components/InnerBorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/InnerBorder.js -------------------------------------------------------------------------------- /src/components/MessageSigningSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/MessageSigningSection.js -------------------------------------------------------------------------------- /src/components/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/Modal.js -------------------------------------------------------------------------------- /src/components/OfflineBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/OfflineBadge.js -------------------------------------------------------------------------------- /src/components/QRCodeDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/QRCodeDisplay.js -------------------------------------------------------------------------------- /src/components/SendFeedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/SendFeedback.js -------------------------------------------------------------------------------- /src/components/Shimmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/Shimmer.js -------------------------------------------------------------------------------- /src/components/Tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/Tag.js -------------------------------------------------------------------------------- /src/components/TouchableBackdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/TouchableBackdrop.js -------------------------------------------------------------------------------- /src/components/TransactionConfirmationSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/TransactionConfirmationSection.js -------------------------------------------------------------------------------- /src/components/activity-list/ActivityList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/activity-list/ActivityList.js -------------------------------------------------------------------------------- /src/components/activity-list/ActivityListHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/activity-list/ActivityListHeader.js -------------------------------------------------------------------------------- /src/components/activity-list/RecyclerActivityList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/activity-list/RecyclerActivityList.js -------------------------------------------------------------------------------- /src/components/activity-list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/activity-list/index.js -------------------------------------------------------------------------------- /src/components/alerts/Alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/alerts/Alert.js -------------------------------------------------------------------------------- /src/components/alerts/BaseAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/alerts/BaseAlert.js -------------------------------------------------------------------------------- /src/components/alerts/Prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/alerts/Prompt.js -------------------------------------------------------------------------------- /src/components/alerts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/alerts/index.js -------------------------------------------------------------------------------- /src/components/animations/ButtonPressAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/animations/ButtonPressAnimation.js -------------------------------------------------------------------------------- /src/components/animations/FadeInAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/animations/FadeInAnimation.js -------------------------------------------------------------------------------- /src/components/animations/SpinAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/animations/SpinAnimation.js -------------------------------------------------------------------------------- /src/components/animations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/animations/index.js -------------------------------------------------------------------------------- /src/components/asset-list/AssetList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/asset-list/AssetList.js -------------------------------------------------------------------------------- /src/components/asset-list/AssetListHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/asset-list/AssetListHeader.js -------------------------------------------------------------------------------- /src/components/asset-list/AssetListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/asset-list/AssetListItem.js -------------------------------------------------------------------------------- /src/components/asset-list/AssetListItemSkeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/asset-list/AssetListItemSkeleton.js -------------------------------------------------------------------------------- /src/components/asset-list/AssetListSkeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/asset-list/AssetListSkeleton.js -------------------------------------------------------------------------------- /src/components/asset-list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/asset-list/index.js -------------------------------------------------------------------------------- /src/components/badge/Badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/badge/Badge.js -------------------------------------------------------------------------------- /src/components/badge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/badge/index.js -------------------------------------------------------------------------------- /src/components/bubble-sheet/BubbleSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/bubble-sheet/BubbleSheet.js -------------------------------------------------------------------------------- /src/components/bubble-sheet/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/bubble-sheet/index.js -------------------------------------------------------------------------------- /src/components/buttons/BlockButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/buttons/BlockButton.js -------------------------------------------------------------------------------- /src/components/buttons/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/buttons/Button.js -------------------------------------------------------------------------------- /src/components/buttons/LongPressButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/buttons/LongPressButton.js -------------------------------------------------------------------------------- /src/components/buttons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/buttons/index.js -------------------------------------------------------------------------------- /src/components/coin-icon/CoinIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/coin-icon/CoinIcon.js -------------------------------------------------------------------------------- /src/components/coin-icon/RequestCoinIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/coin-icon/RequestCoinIcon.js -------------------------------------------------------------------------------- /src/components/coin-icon/RequestVendorLogoIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/coin-icon/RequestVendorLogoIcon.js -------------------------------------------------------------------------------- /src/components/coin-icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/coin-icon/index.js -------------------------------------------------------------------------------- /src/components/coin-row/BalanceCoinRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/coin-row/BalanceCoinRow.js -------------------------------------------------------------------------------- /src/components/coin-row/BalanceText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/coin-row/BalanceText.js -------------------------------------------------------------------------------- /src/components/coin-row/BottomRowText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/coin-row/BottomRowText.js -------------------------------------------------------------------------------- /src/components/coin-row/CoinName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/coin-row/CoinName.js -------------------------------------------------------------------------------- /src/components/coin-row/CoinRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/coin-row/CoinRow.js -------------------------------------------------------------------------------- /src/components/coin-row/RequestCoinRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/coin-row/RequestCoinRow.js -------------------------------------------------------------------------------- /src/components/coin-row/SendCoinRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/coin-row/SendCoinRow.js -------------------------------------------------------------------------------- /src/components/coin-row/TransactionCoinRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/coin-row/TransactionCoinRow.js -------------------------------------------------------------------------------- /src/components/coin-row/TransactionStatusBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/coin-row/TransactionStatusBadge.js -------------------------------------------------------------------------------- /src/components/coin-row/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/coin-row/index.js -------------------------------------------------------------------------------- /src/components/expanded-state/FloatingPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/expanded-state/FloatingPanel.js -------------------------------------------------------------------------------- /src/components/expanded-state/FloatingPanels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/expanded-state/FloatingPanels.js -------------------------------------------------------------------------------- /src/components/expanded-state/TokenExpandedState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/expanded-state/TokenExpandedState.js -------------------------------------------------------------------------------- /src/components/expanded-state/asset-panel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/expanded-state/asset-panel/index.js -------------------------------------------------------------------------------- /src/components/expanded-state/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/expanded-state/index.js -------------------------------------------------------------------------------- /src/components/fab/FabWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/fab/FabWrapper.js -------------------------------------------------------------------------------- /src/components/fab/FloatingActionButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/fab/FloatingActionButton.js -------------------------------------------------------------------------------- /src/components/fab/SendFab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/fab/SendFab.js -------------------------------------------------------------------------------- /src/components/fab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/fab/index.js -------------------------------------------------------------------------------- /src/components/fields/AddressField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/fields/AddressField.js -------------------------------------------------------------------------------- /src/components/fields/UnderlineField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/fields/UnderlineField.js -------------------------------------------------------------------------------- /src/components/fields/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/fields/index.js -------------------------------------------------------------------------------- /src/components/header/BackButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/header/BackButton.js -------------------------------------------------------------------------------- /src/components/header/CameraHeaderButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/header/CameraHeaderButton.js -------------------------------------------------------------------------------- /src/components/header/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/header/Header.js -------------------------------------------------------------------------------- /src/components/header/HeaderButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/header/HeaderButton.js -------------------------------------------------------------------------------- /src/components/header/ProfileHeaderButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/header/ProfileHeaderButton.js -------------------------------------------------------------------------------- /src/components/header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/header/index.js -------------------------------------------------------------------------------- /src/components/html-entities/Nbsp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/html-entities/Nbsp.js -------------------------------------------------------------------------------- /src/components/html-entities/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/html-entities/index.js -------------------------------------------------------------------------------- /src/components/icons/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/Icon.js -------------------------------------------------------------------------------- /src/components/icons/Svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/Svg.js -------------------------------------------------------------------------------- /src/components/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/index.js -------------------------------------------------------------------------------- /src/components/icons/svg/ArrowCircledIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/ArrowCircledIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/ArrowIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/ArrowIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/AssetListItemSkeletonIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/AssetListItemSkeletonIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/AvatarIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/AvatarIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/BalanceLogoIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/BalanceLogoIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/CameraIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/CameraIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/CaretIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/CaretIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/CaretThinIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/CaretThinIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/CheckmarkCircledIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/CheckmarkCircledIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/CheckmarkIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/CheckmarkIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/ClockIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/ClockIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/CloseIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/CloseIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/CompassIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/CompassIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/CopyIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/CopyIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/CrosshairIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/CrosshairIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/DotIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/DotIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/FaceIdIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/FaceIdIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/GearIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/GearIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/HandleIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/HandleIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/InboxIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/InboxIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/OfflineIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/OfflineIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/ProgressIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/ProgressIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/SendIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/SendIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/ShareIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/ShareIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/SpinnerIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/SpinnerIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/ThreeDotsIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/ThreeDotsIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/TouchIdIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/TouchIdIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/WalletConnectIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/WalletConnectIcon.js -------------------------------------------------------------------------------- /src/components/icons/svg/WarningIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/icons/svg/WarningIcon.js -------------------------------------------------------------------------------- /src/components/inputs/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/inputs/Input.js -------------------------------------------------------------------------------- /src/components/inputs/MultiLineInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/inputs/MultiLineInput.js -------------------------------------------------------------------------------- /src/components/inputs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/inputs/index.js -------------------------------------------------------------------------------- /src/components/labels/PillLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/labels/PillLabel.js -------------------------------------------------------------------------------- /src/components/labels/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/labels/index.js -------------------------------------------------------------------------------- /src/components/layout/Centered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/layout/Centered.js -------------------------------------------------------------------------------- /src/components/layout/Column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/layout/Column.js -------------------------------------------------------------------------------- /src/components/layout/ColumnWithMargins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/layout/ColumnWithMargins.js -------------------------------------------------------------------------------- /src/components/layout/Flex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/layout/Flex.js -------------------------------------------------------------------------------- /src/components/layout/FlexItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/layout/FlexItem.js -------------------------------------------------------------------------------- /src/components/layout/FlyInView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/layout/FlyInView.js -------------------------------------------------------------------------------- /src/components/layout/LayoutWithMargins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/layout/LayoutWithMargins.js -------------------------------------------------------------------------------- /src/components/layout/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/layout/Page.js -------------------------------------------------------------------------------- /src/components/layout/Row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/layout/Row.js -------------------------------------------------------------------------------- /src/components/layout/RowWithMargins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/layout/RowWithMargins.js -------------------------------------------------------------------------------- /src/components/layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/layout/index.js -------------------------------------------------------------------------------- /src/components/list/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/list/List.js -------------------------------------------------------------------------------- /src/components/list/ListFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/list/ListFooter.js -------------------------------------------------------------------------------- /src/components/list/ListHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/list/ListHeader.js -------------------------------------------------------------------------------- /src/components/list/ListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/list/ListItem.js -------------------------------------------------------------------------------- /src/components/list/ListItemArrowGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/list/ListItemArrowGroup.js -------------------------------------------------------------------------------- /src/components/list/ListItemDivider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/list/ListItemDivider.js -------------------------------------------------------------------------------- /src/components/list/SectionList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/list/SectionList.js -------------------------------------------------------------------------------- /src/components/list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/list/index.js -------------------------------------------------------------------------------- /src/components/modal/LoadingOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/modal/LoadingOverlay.js -------------------------------------------------------------------------------- /src/components/modal/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/modal/Modal.js -------------------------------------------------------------------------------- /src/components/modal/ModalFooterButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/modal/ModalFooterButton.js -------------------------------------------------------------------------------- /src/components/modal/ModalFooterButtonsRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/modal/ModalFooterButtonsRow.js -------------------------------------------------------------------------------- /src/components/modal/ModalHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/modal/ModalHeader.js -------------------------------------------------------------------------------- /src/components/modal/ModalHeaderButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/modal/ModalHeaderButton.js -------------------------------------------------------------------------------- /src/components/modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/modal/index.js -------------------------------------------------------------------------------- /src/components/pager/AnimatedPager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/pager/AnimatedPager.js -------------------------------------------------------------------------------- /src/components/pager/AnimatedPagerItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/pager/AnimatedPagerItem.js -------------------------------------------------------------------------------- /src/components/pager/Pager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/pager/Pager.js -------------------------------------------------------------------------------- /src/components/pager/PagerControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/pager/PagerControls.js -------------------------------------------------------------------------------- /src/components/pager/PagerItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/pager/PagerItem.js -------------------------------------------------------------------------------- /src/components/pager/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/pager/index.js -------------------------------------------------------------------------------- /src/components/profile/ProfileAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/profile/ProfileAction.js -------------------------------------------------------------------------------- /src/components/profile/ProfileMasthead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/profile/ProfileMasthead.js -------------------------------------------------------------------------------- /src/components/profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/profile/index.js -------------------------------------------------------------------------------- /src/components/qrcode-scanner/QRCodeScanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/qrcode-scanner/QRCodeScanner.js -------------------------------------------------------------------------------- /src/components/qrcode-scanner/QRCodeScannerCamera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/qrcode-scanner/QRCodeScannerCamera.js -------------------------------------------------------------------------------- /src/components/qrcode-scanner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/qrcode-scanner/index.js -------------------------------------------------------------------------------- /src/components/radio-list/RadioList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/radio-list/RadioList.js -------------------------------------------------------------------------------- /src/components/radio-list/RadioListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/radio-list/RadioListItem.js -------------------------------------------------------------------------------- /src/components/radio-list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/radio-list/index.js -------------------------------------------------------------------------------- /src/components/settings-menu/BackupSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/settings-menu/BackupSection.js -------------------------------------------------------------------------------- /src/components/settings-menu/CurrencySection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/settings-menu/CurrencySection.js -------------------------------------------------------------------------------- /src/components/settings-menu/LanguageSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/settings-menu/LanguageSection.js -------------------------------------------------------------------------------- /src/components/settings-menu/SettingsSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/settings-menu/SettingsSection.js -------------------------------------------------------------------------------- /src/components/settings-menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/settings-menu/index.js -------------------------------------------------------------------------------- /src/components/shadow-stack/ShadowItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/shadow-stack/ShadowItem.js -------------------------------------------------------------------------------- /src/components/shadow-stack/ShadowStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/shadow-stack/ShadowStack.js -------------------------------------------------------------------------------- /src/components/shadow-stack/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/shadow-stack/index.js -------------------------------------------------------------------------------- /src/components/text/Br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/text/Br.js -------------------------------------------------------------------------------- /src/components/text/Emoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/text/Emoji.js -------------------------------------------------------------------------------- /src/components/text/ErrorText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/text/ErrorText.js -------------------------------------------------------------------------------- /src/components/text/H1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/text/H1.js -------------------------------------------------------------------------------- /src/components/text/Monospace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/text/Monospace.js -------------------------------------------------------------------------------- /src/components/text/Smallcaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/text/Smallcaps.js -------------------------------------------------------------------------------- /src/components/text/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/text/Text.js -------------------------------------------------------------------------------- /src/components/text/TruncatedAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/text/TruncatedAddress.js -------------------------------------------------------------------------------- /src/components/text/TruncatedText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/text/TruncatedText.js -------------------------------------------------------------------------------- /src/components/text/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/text/index.js -------------------------------------------------------------------------------- /src/components/unique-token/UniqueTokenAttributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/unique-token/UniqueTokenAttributes.js -------------------------------------------------------------------------------- /src/components/unique-token/UniqueTokenCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/unique-token/UniqueTokenCard.js -------------------------------------------------------------------------------- /src/components/unique-token/UniqueTokenImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/unique-token/UniqueTokenImage.js -------------------------------------------------------------------------------- /src/components/unique-token/UniqueTokenRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/unique-token/UniqueTokenRow.js -------------------------------------------------------------------------------- /src/components/unique-token/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/unique-token/index.js -------------------------------------------------------------------------------- /src/components/walletconnect-list/WalletConnectList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/walletconnect-list/WalletConnectList.js -------------------------------------------------------------------------------- /src/components/walletconnect-list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/components/walletconnect-list/index.js -------------------------------------------------------------------------------- /src/helpers/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/helpers/assets.js -------------------------------------------------------------------------------- /src/helpers/buildWalletSections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/helpers/buildWalletSections.js -------------------------------------------------------------------------------- /src/helpers/transactionStatusTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/helpers/transactionStatusTypes.js -------------------------------------------------------------------------------- /src/helpers/transactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/helpers/transactions.js -------------------------------------------------------------------------------- /src/helpers/utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/helpers/utilities.js -------------------------------------------------------------------------------- /src/hoc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/index.js -------------------------------------------------------------------------------- /src/hoc/withAccountAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withAccountAddress.js -------------------------------------------------------------------------------- /src/hoc/withAccountRefresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withAccountRefresh.js -------------------------------------------------------------------------------- /src/hoc/withAccountReset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withAccountReset.js -------------------------------------------------------------------------------- /src/hoc/withAccountSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withAccountSettings.js -------------------------------------------------------------------------------- /src/hoc/withAccountTransactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withAccountTransactions.js -------------------------------------------------------------------------------- /src/hoc/withActionSheetManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withActionSheetManager.js -------------------------------------------------------------------------------- /src/hoc/withAddWalletConnector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withAddWalletConnector.js -------------------------------------------------------------------------------- /src/hoc/withBlurTransitionProps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withBlurTransitionProps.js -------------------------------------------------------------------------------- /src/hoc/withFetchingPrices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withFetchingPrices.js -------------------------------------------------------------------------------- /src/hoc/withHideSplashScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withHideSplashScreen.js -------------------------------------------------------------------------------- /src/hoc/withImageDimensionsCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withImageDimensionsCache.js -------------------------------------------------------------------------------- /src/hoc/withIsWalletEmpty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withIsWalletEmpty.js -------------------------------------------------------------------------------- /src/hoc/withMessageSigningScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withMessageSigningScreen.js -------------------------------------------------------------------------------- /src/hoc/withRequests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withRequests.js -------------------------------------------------------------------------------- /src/hoc/withRequestsInit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withRequestsInit.js -------------------------------------------------------------------------------- /src/hoc/withRotationForDirection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withRotationForDirection.js -------------------------------------------------------------------------------- /src/hoc/withSafeAreaViewInsetValues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withSafeAreaViewInsetValues.js -------------------------------------------------------------------------------- /src/hoc/withStatusBarStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withStatusBarStyle.js -------------------------------------------------------------------------------- /src/hoc/withTrackingDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withTrackingDate.js -------------------------------------------------------------------------------- /src/hoc/withTrackingScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withTrackingScreen.js -------------------------------------------------------------------------------- /src/hoc/withTransactionConfirmationScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withTransactionConfirmationScreen.js -------------------------------------------------------------------------------- /src/hoc/withTransitionProps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withTransitionProps.js -------------------------------------------------------------------------------- /src/hoc/withWalletConnectConnections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/hoc/withWalletConnectConnections.js -------------------------------------------------------------------------------- /src/model/connections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/model/connections.js -------------------------------------------------------------------------------- /src/model/keychain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/model/keychain.js -------------------------------------------------------------------------------- /src/model/localstorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/model/localstorage.js -------------------------------------------------------------------------------- /src/model/personalData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/model/personalData.js -------------------------------------------------------------------------------- /src/model/wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/model/wallet.js -------------------------------------------------------------------------------- /src/model/walletconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/model/walletconnect.js -------------------------------------------------------------------------------- /src/navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/navigation/index.js -------------------------------------------------------------------------------- /src/navigation/transitions/expanded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/navigation/transitions/expanded.js -------------------------------------------------------------------------------- /src/navigation/transitions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/navigation/transitions/index.js -------------------------------------------------------------------------------- /src/navigation/transitions/sheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/navigation/transitions/sheet.js -------------------------------------------------------------------------------- /src/redux/actionSheetManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/redux/actionSheetManager.js -------------------------------------------------------------------------------- /src/redux/imageDimensionsCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/redux/imageDimensionsCache.js -------------------------------------------------------------------------------- /src/redux/isWalletEmpty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/redux/isWalletEmpty.js -------------------------------------------------------------------------------- /src/redux/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/redux/navigation.js -------------------------------------------------------------------------------- /src/redux/nonce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/redux/nonce.js -------------------------------------------------------------------------------- /src/redux/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/redux/reducers.js -------------------------------------------------------------------------------- /src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/redux/store.js -------------------------------------------------------------------------------- /src/redux/tracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/redux/tracking.js -------------------------------------------------------------------------------- /src/redux/transactionsToApprove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/redux/transactionsToApprove.js -------------------------------------------------------------------------------- /src/redux/walletconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/redux/walletconnect.js -------------------------------------------------------------------------------- /src/screens/Camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/screens/Camera.js -------------------------------------------------------------------------------- /src/screens/ExpandedAssetScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/screens/ExpandedAssetScreen.js -------------------------------------------------------------------------------- /src/screens/ImportSeedPhraseSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/screens/ImportSeedPhraseSheet.js -------------------------------------------------------------------------------- /src/screens/ImportSeedPhraseSheetWithData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/screens/ImportSeedPhraseSheetWithData.js -------------------------------------------------------------------------------- /src/screens/ProfileScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/screens/ProfileScreen.js -------------------------------------------------------------------------------- /src/screens/ProfileScreenWithData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/screens/ProfileScreenWithData.js -------------------------------------------------------------------------------- /src/screens/QRScannerScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/screens/QRScannerScreen.js -------------------------------------------------------------------------------- /src/screens/QRScannerScreenWithData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/screens/QRScannerScreenWithData.js -------------------------------------------------------------------------------- /src/screens/ReceiveModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/screens/ReceiveModal.js -------------------------------------------------------------------------------- /src/screens/Routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/screens/Routes.js -------------------------------------------------------------------------------- /src/screens/SendQRScannerScreenWithData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/screens/SendQRScannerScreenWithData.js -------------------------------------------------------------------------------- /src/screens/SendSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/screens/SendSheet.js -------------------------------------------------------------------------------- /src/screens/SendSheetWithData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/screens/SendSheetWithData.js -------------------------------------------------------------------------------- /src/screens/SettingsModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/screens/SettingsModal.js -------------------------------------------------------------------------------- /src/screens/TransactionConfirmationScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/screens/TransactionConfirmationScreen.js -------------------------------------------------------------------------------- /src/screens/TransactionConfirmationScreenWithData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/screens/TransactionConfirmationScreenWithData.js -------------------------------------------------------------------------------- /src/screens/WalletScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/screens/WalletScreen.js -------------------------------------------------------------------------------- /src/styles/animations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/styles/animations.js -------------------------------------------------------------------------------- /src/styles/borders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/styles/borders.js -------------------------------------------------------------------------------- /src/styles/buildLayoutStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/styles/buildLayoutStyles.js -------------------------------------------------------------------------------- /src/styles/buildTextStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/styles/buildTextStyles.js -------------------------------------------------------------------------------- /src/styles/calcDirectionToDegrees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/styles/calcDirectionToDegrees.js -------------------------------------------------------------------------------- /src/styles/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/styles/colors.js -------------------------------------------------------------------------------- /src/styles/fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/styles/fonts.js -------------------------------------------------------------------------------- /src/styles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/styles/index.js -------------------------------------------------------------------------------- /src/styles/margin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/styles/margin.js -------------------------------------------------------------------------------- /src/styles/padding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/styles/padding.js -------------------------------------------------------------------------------- /src/styles/position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/styles/position.js -------------------------------------------------------------------------------- /src/styles/shadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/styles/shadow.js -------------------------------------------------------------------------------- /src/utils/Dapplet.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/abbreviations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/utils/abbreviations.js -------------------------------------------------------------------------------- /src/utils/actionsheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/utils/actionsheet.js -------------------------------------------------------------------------------- /src/utils/address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/utils/address.js -------------------------------------------------------------------------------- /src/utils/deviceUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/utils/deviceUtils.js -------------------------------------------------------------------------------- /src/utils/dimensionsPropType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/utils/dimensionsPropType.js -------------------------------------------------------------------------------- /src/utils/directionPropType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/utils/directionPropType.js -------------------------------------------------------------------------------- /src/utils/formatters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/utils/formatters.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/isNewValueForPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/utils/isNewValueForPath.js -------------------------------------------------------------------------------- /src/utils/reduceStylesArrayToObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/utils/reduceStylesArrayToObject.js -------------------------------------------------------------------------------- /src/utils/safeAreaInsetValues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/utils/safeAreaInsetValues.js -------------------------------------------------------------------------------- /src/utils/statusBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/utils/statusBar.js -------------------------------------------------------------------------------- /src/utils/transactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/src/utils/transactions.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicedapp/alice-react-native/HEAD/yarn.lock --------------------------------------------------------------------------------