gitextract_v8ksmv8r/ ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── LICENSE ├── README.md ├── android/ │ ├── app/ │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ ├── java/ │ │ │ └── com/ │ │ │ └── nabi/ │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res/ │ │ └── values/ │ │ ├── strings.xml │ │ └── styles.xml │ ├── build.gradle │ ├── gradle/ │ │ └── wrapper/ │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradle.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores/ │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── index.android.js ├── index.ios.js ├── ios/ │ ├── Nabi/ │ │ ├── AppDelegate.swift │ │ ├── AppProtocol.swift │ │ ├── Assets.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ └── LaunchScreen.xib │ │ ├── Info.plist │ │ └── Nabi-Bridging-Header.h │ ├── Nabi.xcodeproj/ │ │ ├── project.pbxproj │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── Nabi.xcscheme │ ├── NabiTests/ │ │ ├── Info.plist │ │ └── NabiTests.swift │ ├── NabiUITests/ │ │ ├── Info.plist │ │ └── NabiUITests.swift │ └── vendor/ │ └── WKWebViewWithURLProtocol/ │ ├── NSURLProtocol+WKWebViewSupport.h │ └── NSURLProtocol+WKWebViewSupport.m ├── package.json ├── rn-cli.config.js ├── src/ │ ├── @types/ │ │ ├── react-native-navigation.d.ts │ │ └── react-native-wkwebview-reborn.d.ts │ ├── components/ │ │ ├── BrowserWindow.tsx │ │ ├── LocationBar.tsx │ │ ├── MetaMaskBackground.tsx │ │ └── PageLoadProgress.tsx │ ├── constants.ts │ ├── index.ts │ ├── injections/ │ │ ├── contentScript.ts │ │ ├── metaMaskBackground.ts │ │ ├── metaMaskPopup.ts │ │ └── types.ts │ ├── ipc.ts │ ├── screens/ │ │ ├── MetaMaskScreen.tsx │ │ ├── RootScreen.tsx │ │ └── index.ts │ ├── util.test.ts │ └── util.ts ├── tsconfig.json ├── tslint.json └── web/ ├── metamask/ │ ├── _locales/ │ │ ├── en/ │ │ │ └── messages.json │ │ ├── es/ │ │ │ └── messages.json │ │ ├── es_419/ │ │ │ └── messages.json │ │ ├── ja/ │ │ │ └── messages.json │ │ └── zh_CN/ │ │ └── messages.json │ ├── background.html │ ├── fonts/ │ │ └── Montserrat/ │ │ └── OFL.txt │ ├── manifest.json │ ├── popup.html │ └── scripts/ │ ├── background.js │ ├── contentscript.js │ ├── inpage.js │ └── popup.js └── vendor/ ├── asmcrypto-0.0.11.js └── webcrypto-liner.shim-0.1.22.js